
.serena-header {
	--sc-coral: #ff9472;
	--sc-gold: #ffbc02;
	--sc-magenta: #b11972;
	--sc-ink: #4f4f4f;
	--sc-link: #303030;
	--sc-toggle: #9d9d9d;
	
	--sc-nav-pad: 10px;
	
	--sc-title-lh: 25.5px;
	--sc-title-pad-y: 10px;
	
	--sc-bar-h: calc(var(--sc-title-lh) + 2 * var(--sc-title-pad-y) + 2 * var(--sc-nav-pad));
	
	--sc-panel-content-w: 1180px;
}
.serena-header {
	display: inline-flex;
	vertical-align: middle;
	align-items: center;
	position: sticky;
	top: 0;
	width: 100%;
	max-width: 100%;
	height: var(--sc-bar-h);
	margin-bottom: calc(-1 * var(--sc-bar-h));
	z-index: 110;
	box-sizing: border-box;
}
.serena-header__logo {
	margin: 5px 0 5px 20px;
	
	flex: 0 1 auto;
	width: 15.225%;
}
.serena-header__logo a {
	display: inline-block;
}
.serena-header__logo img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
.serena-header__nav {
	flex: 0 1 auto;
	width: 84.653%;
	box-sizing: border-box;
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: var(--sc-nav-pad);
	margin-right: 20px;
}
@media (min-width: 1367px) {
	.serena-header {
		display: flex;
		margin-bottom: 0;
	}
	.serena-header__logo {
		margin-left: 40px;
	}
	.serena-header__nav {
		margin-right: 40px;
	}
}
.serena-header__items {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}
.serena-header__item {
	display: flex;
}
.serena-header__title {
	display: flex;
	align-items: center;
	padding: var(--sc-title-pad-y) 15px;
	margin: 0;
	border: 0;
	background: none;
	-webkit-appearance: none;
	appearance: none;
	font-family: Nunito, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 26px;
	color: var(--sc-ink);
	text-align: start;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}
.serena-header__title:hover,
.serena-header__title:focus {
	text-decoration: none;
}
.serena-header__title-text {
	display: flex;
	align-items: center;
	position: relative;
	font-family: Nunito, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: var(--sc-title-lh);
	color: var(--sc-ink);
	white-space: nowrap;
	transition: color 0.2s ease;
}
.serena-header__title-text::after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -8px;
	height: 2px;
	background: var(--sc-coral);
	border-radius: 2px;
	transition: left 0.25s ease, right 0.25s ease;
}
.serena-header__item:hover .serena-header__title-text {
	color: var(--sc-coral);
}
.serena-header__item:hover .serena-header__title-text::after {
	left: 0;
	right: 0;
}
.serena-header__panel-toggle::after {
	content: "";
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-left: 5px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%234F4F4F' d='M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z'/%3E%3C/svg%3E");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.25s ease;
}
.serena-header__panel-toggle[aria-expanded="true"]::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%231F2124' d='M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z'/%3E%3C/svg%3E");
}
.serena-header__toggle {
	display: none;
}
.serena-header__panel {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - var(--sc-nav-pad));
	z-index: 2147483620;
	flex-direction: row;
	justify-content: flex-start;
	gap: 0;
	padding: 32px max(0px, (100% - var(--sc-panel-content-w)) / 2) 36px;
	background: #fff;
	box-sizing: border-box;
}
.serena-header__panel.submenu-recursos {
	flex-direction: column;
	gap: 15px;
	align-items: center;
}
.serena-header__item--has-panel:has(> .serena-header__panel-toggle[aria-expanded="true"]) > .serena-header__panel,
.serena-header__item--has-panel.is-open > .serena-header__panel,
.serena-header__panel.is-open {
	display: flex;
}
@media (min-width: 1025px) {
	.serena-header__item--has-panel:has(> .serena-header__panel-toggle[aria-expanded="true"]) > .serena-header__panel,
	.serena-header__item--has-panel.is-open > .serena-header__panel,
	.serena-header__panel.is-open {
		box-shadow: 0 24px 48px -20px rgba(177, 25, 114, 0.22);
		border-top: 3px solid var(--sc-coral);
		border-radius: 0 0 20px 20px;
	}
	
	.serena-header__panel::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		background: #fff;
		border-radius: 0;
	}
	
	.serena-header__panel {
		background: transparent;
	}
}
.serena-header__column {
	flex: 0 0 50%;
	box-sizing: border-box;
}
.serena-header__panel.submenu-areas .serena-header__column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.serena-header__panel.submenu-acceder .serena-header__column {
	padding: 10px;
}
.serena-header__panel a {
	display: inline-block;
	padding: 7px 12px;
}
.serena-header__panel .elementor-image-box-wrapper {
	display: flex;
	align-items: flex-end;
}
.serena-header__panel .elementor-image-box-img {
	flex: 0 1 auto;
	margin: 0;
}
.serena-header__panel .elementor-image-box-img img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}
.serena-header__panel .elementor-image-box-img a {
	width: 100%;
	box-sizing: border-box;
}
.serena-header__panel.submenu-areas .elementor-image-box-img {
	width: 12%;
	flex: 0 1 auto;
}
.serena-header__panel.submenu-acceder .elementor-image-box-img {
	width: auto;
	margin-right: 10px;
}
.serena-header__panel .elementor-image-box-content {
	width: 100%;
}
.serena-header__panel .elementor-image-box-title {
	margin: 0 0 10px;
	font-family: Nunito, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 16.8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sc-coral);
}
.serena-header__panel.submenu-acceder .elementor-image-box-title {
	line-height: 26px;
	margin-bottom: 0;
}
.serena-header__panel.submenu-acceder .elementor-image-box-wrapper {
	align-items: center;
}
.serena-header__panel .elementor-image-box-title a {
	color: inherit;
	text-decoration: none;
	letter-spacing: 1.4px;
}
.serena-header__panel .clean-list a {
	display: inline-block;
	padding: 7px 12px;
	border-radius: 9px;
	font-family: Nunito, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
	color: var(--sc-link);
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.serena-header__panel .clean-list a:hover {
	background: rgba(255, 148, 114, 0.13);
	color: var(--sc-coral);
	transform: translateX(3px);
}
.serena-header__panel .clean-list .h5 {
	font-family: Nunito, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--sc-magenta);
}
.serena-header__resource .elementor-heading-title {
	font-family: Nunito, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	text-transform: uppercase;
	color: var(--sc-magenta);
}
.serena-header__resource .elementor-heading-title a {
	display: inline-block;
	padding: 7px 12px;
	border-radius: 9px;
	color: inherit;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.serena-header__resource .elementor-heading-title a:hover {
	background: rgba(255, 148, 114, 0.13);
	color: var(--sc-coral);
	transform: translateX(3px);
}
.serena-header__cta {
	display: none;
}
@media (max-width: 1024px) {
	.serena-header {
		display: flex;
		position: sticky !important;
		top: 0;
		height: auto;
		margin-bottom: 0;
		padding: 10px 0;
		align-items: center;
		column-gap: 20px;
		background: #fff;
		z-index: 9999;
	}
	
	.serena-header__bar-end {
		display: flex;
		align-items: center;
		box-sizing: border-box;
		width: 75%;
		justify-content: flex-end;
		gap: 40px;
	}
	
	.serena-header__cta {
		order: 2;
	}
	.serena-header__toggle {
		order: 3;
	}
	.serena-header__logo {
		margin: 5px 0 5px 20px;
		width: auto;
	}
	
	.serena-header__logo img {
		width: calc(30vw - 20px);
		max-width: 180px;
		height: auto;
	}
	
	.serena-header__nav {
		display: none;
		position: absolute;
		left: 0;
		top: calc(50% + 26px);
		width: 100vw;
		margin: 0;
		padding: 0;
		flex-direction: column;
		background: #fff;
		box-shadow: rgba(0, 0, 0, 0.2) 0 5px 5px 0;
		z-index: 2147483640;
		overflow: hidden auto;
		max-height: calc(100vh - 100%);
	}
	.serena-header__nav.is-open,
	.serena-header__toggle[aria-expanded="true"] + .serena-header__nav {
		display: flex;
	}
	.serena-header__items {
		flex-direction: column;
		justify-content: flex-start;
	}
	.serena-header__item {
		width: 100%;
		flex-direction: column;
	}
	
	.serena-header__title {
		box-sizing: border-box;
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 15px 24px;
		background: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	}
	.serena-header__title-text {
		font-size: 15px;
		line-height: 18px;
		text-align: left;
	}
	.serena-header__panel-toggle::after {
		width: 15px;
		height: 15px;
	}
	
	.serena-header__panel {
		position: static;
		flex-direction: column;
		gap: 0;
		padding: 0 20px;
		box-shadow: none;
		border: 0;
		border-radius: 0;
	}
	
	.serena-header__toggle {
		display: block;
		flex: 0 0 auto;
		width: 22px;
		height: 22px;
		padding: 0;
		border: 0;
		background-color: transparent;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%239D9D9D' d='M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z'/%3E%3C/svg%3E");
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		-webkit-appearance: none;
		appearance: none;
		cursor: pointer;
		margin-right: 20px;
	}
	
	.serena-header__toggle[aria-expanded="true"] {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%23FF9472' d='M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z'/%3E%3C/svg%3E");
	}
	.serena-header__cta {
		display: block;
	}
	
	.serena-header .serena-header__cta a.elementor-button {
		display: inline-block;
		padding: 8px 10px 7px;
		border: 0;
		border-radius: 40px;
		font-family: Nunito, sans-serif;
		font-size: 15px;
		font-weight: 700;
		line-height: 15px;
		letter-spacing: 0.5px;
		text-transform: uppercase;
		text-align: center;
		text-decoration: none;
		color: #fff;
		background-color: transparent;
		background-image: linear-gradient(-45deg, var(--sc-gold) 0%, var(--sc-coral) 100%);
	}
	.serena-header .serena-header__cta a.elementor-button .elementor-button-content-wrapper {
		display: flex;
		justify-content: center;
	}
}
.serena-header{
  --serena-header-height:7rem;
  --serena-shrink-to:.8;
  --serena-chrome-transition:.45s cubic-bezier(.4,0,.2,1);
  transition:background-color var(--serena-chrome-transition),
             backdrop-filter var(--serena-chrome-transition),
             box-shadow var(--serena-chrome-transition);
}
.serena-header__logo img{ transition:transform var(--serena-chrome-transition); }
.serena-header{ background-color:transparent; }
.serena-header:hover{ background-color:#fff; }
body.single-post .serena-header{ background-color:#fff; }
@media (min-width:320px) and (max-width:767px){
  .serena-header{
    --serena-header-height:6.4rem;
    background-color:#fff;
  }
}
.serena-header.is-stuck{
  background-color:#fff;
  box-shadow:0 4px 33px 1px rgba(0,0,0,.07);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  backdrop-filter:saturate(180%) blur(20px);
  min-height:calc(var(--serena-header-height) * var(--serena-shrink-to));
}
@media (min-width:1025px){
  .serena-header.is-stuck .serena-header__logo img{ transform:scale(.9); }
}
@media (max-width: 1024px) {
	.serena-header__panel {
		justify-content: center;
	}
	.serena-header__panel.submenu-recursos {
		align-items: normal;
	}
	
	.serena-header__column {
		flex: 0 1 auto;
		box-sizing: content-box;
	}
	.serena-header__panel.submenu-acceder .serena-header__column {
		padding: 10px 0;
	}
	
	.serena-header__panel .elementor-image-box-img {
		flex: 0 0 auto;
	}
	.serena-header__panel.submenu-areas .elementor-image-box-img {
		width: 63.22px;
	}
	.serena-header__panel.submenu-acceder .elementor-image-box-img {
		width: 71.92px;
	}
	.serena-header__panel .elementor-image-box-img img {
		width: 100%;
		max-width: none;
		height: auto;
	}
	
	.serena-header__panel .elementor-image-box-title a {
		letter-spacing: inherit;
	}
	.serena-header__panel.submenu-acceder .elementor-image-box-title {
		line-height: 16.8px;
		margin-bottom: 10px;
	}
	.serena-header__panel.submenu-acceder .elementor-image-box-wrapper {
		align-items: flex-end;
	}
	
	.serena-header__panel-toggle[aria-expanded="true"]::after {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%234F4F4F' d='M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z'/%3E%3C/svg%3E");
	}
}
@media (max-width: 767px) {
	.serena-header {
		flex-wrap: wrap;
	}
	.serena-header__bar-end {
		width: 64%;
		justify-content: center;
		gap: 20px;
	}
	.serena-header__toggle {
		margin-right: 10px;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.serena-header {
		padding: 0;
	}
	.serena-header__logo {
		width: 25%;
		box-sizing: border-box;
		padding: 5px 0 5px 20px;
		margin: 0;
	}
	.serena-header__logo img {
		width: auto;
		max-width: 100%;
		height: auto;
	}
	
	.serena-header__toggle {
		width: 20px;
		height: 20px;
	}
	
	.serena-header .serena-header__cta a.elementor-button {
		font-size: 14px;
		padding: 9px 15px 8px;
		line-height: 1;
		border-radius: 7px;
	}
	
	.serena-header__nav {
		top: calc(50% + 10px + 25px);
	}
	
	.serena-header__title-text {
		font-size: 17px;
		line-height: var(--sc-title-lh);
	}
}
