/*
Theme Name: sanasana
Theme URI: https://intelindev.com
Author: Intelindev team
Description: Minimal headless theme with Tailwind for fallback rendering.
Version: 1.3
Text Domain: sanasana
*/
/**********************
 * NAV MENU
***********************/
.nav-menu-container{
  max-width: 1440px;
  margin: auto;
}
.sub-menu{
	background: #ffffff;
	border-radius: 8px;
	display: none;
	transition: display 0.3s ease;
	position: absolute;
	top: 100%;
	width: 240px;
}
.sub-menu > li{
	padding: 10px 15px;
}
.sub-menu > li > a{
	color: #000000 !important;
}
ul > li > a,
.sub-menu > li > a{
	font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
	text-decoration: none !important;
}
.sub-menu.open{
  display: block;
}
.menu-item-has-children{
	position: relative;
}
.menu-item-has-children::after:hover{
	cursor: pointer;
}
.menu-item-has-children::after{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat center;
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.menu-item-has-children.expanded::after{
  transform: rotate(180deg);
}
/**********************
 * END NAV MENU
***********************/
/**********************
 * FOOTER MENU
***********************/
ul#menu-footer-menu-en,
ul#menu-footer-menu-es {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 15px;
}
ul#menu-footer-menu-en > li,
ul#menu-footer-menu-es > li {
    padding: 0 10px;
}
ul#menu-footer-menu-en > li::after,
ul#menu-footer-menu-es > li::after {
    content: "|";
    margin-left: 10px;
}
ul#menu-footer-menu-en > li:nth-child(4)::after, 
ul#menu-footer-menu-es > li:nth-child(4)::after {
    content: '';
}
/**********************
 * END FOOTER MENU
***********************/
/* Prevenir scroll horizontal no deseado en mobile */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
    
/* Global custom: legacy container removed. Use .p5-container via Tailwind build. */
.p5m-width-full .entry-content, .p5m-width-full .site-content { max-width:100% !important; width:100% !important; }
.p5m-width-1024 .entry-content, .p5m-width-1024 .site-content { max-width:1024px; margin-left:auto; margin-right:auto; }
.p5m-width-1152 .entry-content, .p5m-width-1152 .site-content { max-width:1152px; margin-left:auto; margin-right:auto; }
.p5m-width-1280 .entry-content, .p5m-width-1280 .site-content { max-width:1280px; margin-left:auto; margin-right:auto; }
.p5m-width-1440 .entry-content, .p5m-width-1440 .site-content { max-width:1440px; margin-left:auto; margin-right:auto; }
.p5m-width-1600 .entry-content, .p5m-width-1600 .site-content { max-width:1600px; margin-left:auto; margin-right:auto; }
.p5m-width-1728 .entry-content, .p5m-width-1728 .site-content { max-width:1728px; margin-left:auto; margin-right:auto; }
.p5m-width-1920 .entry-content, .p5m-width-1920 .site-content { max-width:1920px; margin-left:auto; margin-right:auto; }

/* Espacio para el ícono */
.wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
  position: relative;
  padding-right: 1.25rem; /* 20px */
	
}
.book-contact{
  font-size: 16px;
  line-height: 1.2;
  border: 1px solid #0040ea;
  background: linear-gradient(to bottom, #276aff 0%, #094cf6 100%);
  padding: 12px 24px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background: #5166EC;
  border-radius: 8px;
  /* transition: background .9s; */
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  min-width: 180px;
  min-height: 48px;
  text-decoration: none;
}
/* Chevron con pseudo-elemento */
.wp-block-navigation-item.has-child > .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: currentColor;
  opacity: .7;
  /* máscara con SVG (chevron down) */
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.24a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.24a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
}
.wp-block-navigation-item.has-child:hover > .wp-block-navigation-item__content::after {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.2s ease-in-out;
}
.wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wp-block-gallery {
    display: flex;
    gap: 20px;
}
.wp-block-image > img{
  flex: none !important;
    height: auto !important;
    object-fit: scale-down !important;
}
details.wp-block-details {
    padding: 10px 0;
    border-bottom: solid 1px;
    margin-bottom: 10px;
}
details.wp-block-details > summary {
    display: list-item;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
    margin-bottom: 15px;
}
details.wp-block-details > p{
    padding: 15px;
    background: #f9f9f9;
    line-height: 2;
  font-weight: 300;
}

.wp-block-separator {
  
    border-top-color: #ccc;
    border-top-style: solid 1px;
    margin-top: 20px !important;
    margin-right: 20px;
    margin-bottom: 20px !important;
    margin-left: 20px;
}
.block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

:where(.wp-block-columns) {
    margin-bottom: 0.1em !important;
    margin-top: .1em !important;
}
.wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 300px !important;
    vertical-align: bottom;
    margin: auto !important;
}
.wp-block-separator {
  border: solid 1px #cccccc;
  margin-top: 20px !important;
  margin-bottom: 50px !important;
}

/*eliminar clear*/
.fl-row .fl-col h3.fl-node-uicvg921yle0, .fl-row .fl-col h3.fl-node-uicvg921yle0 a, h3.fl-node-uicvg921yle0, h3.fl-node-uicvg921yle0 a {
    display: none;
    color: #5166ec;
}
/*button home*/
.button-home{
  width: 100%;
    display: flex;
   justify-content: center;
}
/*Headings*/
.fl-builder-content h1 {
    font-family: "Moranga Light", Verdana, Arial, sans-serif;
    font-weight: 700;
}



/*fondo*/
#page .site-content {
    background-color: #F9F8F5;
    flex-grow: 1;
}

/*pagina nueva ploiticas*/
.beneficios{
  text-align:justify;
}



.nuestro-equipo > .fl-row-content-wrap > .fl-row-content > div[data-node="5f9mtadx7riq"]{
  justify-content: center;
  gap: 40px;
}
.columna-02{
  max-width:773px;

}
.columna-01{
  max-width:547px;
}
/*Programas*/

.program-benefit-block {
  background: #ffffff;
  padding: 20px 20px 30px 20px;
  margin: 20px 20px 20px 20px;
  border-radius: 10px;
}

/*nosotros*/
.row-seccion-alianza > .fl-row-content-wrap > .fl-row-content > div[data-node="isze7h0jrvcl"]{
  justify-content: center;
  gap: 20px;
}
.column-ima{
  max-width: 773px;
}
.column-cima{
  max-width: 547px;

}
.row-seccion-nuestro > .fl-row-content-wrap > .fl-row-content >  div[data-node="jarkgs69cbyp"]{
  justify-content: center;
  gap: 20px;
}
.column-imagen{
  max-width:900px;
}
.column-nuestro{
  max-width:560px;
}
.nosotros-row > .fl-row-content-wrap > .fl-row-content > div[data-node="d4rzj208a79l"]{
  justify-content: center;
  /*gap: 10px;*/
}
.column-icono{
  max-width: 280px;
  height: 272px;
}

.nosotros-row-column > .fl-row-content-wrap > .fl-row-content > div[data-node="d4rzj208a79l"]{
  justify-content: center;
  gap: 10px;
}

.nosotros-three-column {
  max-width: 434px;
}
/*Carrusel*/
.uabb-image-carousel-caption {
  overflow: initial !important;
  white-space: normal !important ;
}
.uabb-image-carousel-content {
  width: 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-left:100px;
}

.play{
  width: 60px; /* Ajusta el tamaño del círculo */
  height: 60px; /* Debe ser igual al ancho para formar un círculo */
  background-color: #D4D4D866;
  border-radius: 50%; /* ¡Esto hace el círculo! */
  display: flex; /* Para centrar el triángulo dentro */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
}


.circulo-1{
  background-color: #ffe23f;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;

}

/*Home hero*/
.column-container-mouse-home {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
}

/*parrafo terminos*/
.parrafo-terminos{
  text-align:justify;
}
/*parrafo politicas*/
.parrafo-principal{
  text-align:justify;
}
.parrafo-politica{
  text-align:justify;
}
/*nav menu*/

.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
.yellow-text{
  color: #F9DE42 !important;
}
.white-text{
  color: #ffffff;
}
.strong-text{
  font-weight: 700 !important;
}



/*Buttons on front page hero*/
.buttons-group-hero > .fl-module-content .fl-button-group > .fl-button-group-buttons > .fl-button-group-button > .fl-button-wrap > .fl-button{
  width: 220px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.buttons-group-hero > .fl-module-content .fl-button-group > .fl-button-group-buttons > .fl-button-group-button > .fl-button-wrap > .fl-button > .fl-button-text{
  line-height: 1;
}

.relative-hero{
  position: relative;
}
.relative-hero > .fl-row-content-wrap > .fl-row-content{
  position: unset;
}
.column-mouse-home-hero{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}
a.custom-menu-button-link{
  color: #ffffff !important;
  font-size: 16px;
}

.animate-nav-in > .site-primary-header-wrap > .ast-builder-grid-row  > .site-header-primary-section-right > .header-widget-area > #block-8 > .my-custom-switcher::before{
  top: 15px;
}


/*Contact Form*/
input.field-name,
input.field-emails,
textarea.field-message{
  min-height: 48px !important;
  border-radius: 8px !important;
}
span[data-name="field-message"],
span[data-name="field-emails"],
span[data-name="field-name"]{
  position: relative;
}
span[data-name="field-emails"]::after{
  content: "Correo electrónico";
}
span[data-name="field-name"]::after{
  content: "Nombre y Apellido";
}
span[data-name="field-message"]::after{
  content: "Mensaje";
}

span[data-name="field-message"]::after,
span[data-name="field-emails"]::after,
span[data-name="field-name"]::after{
  position: absolute;
  left: 10px;
  top: 5px;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; 
  color: #5166EC !important;
}

.btn-yellow{
  display: flex;
  width: 220px;
  height: 48px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #F9DE42;
  color: #000000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

figure.wp-block-image.size-full.whatsapp_icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.footer-tiny-text {
    text-align: left;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 2;
    padding-left: 4rem;
}

.footer-row-2 > .footer-block:nth-child(2){
  align-items: center;
  justify-content: center;
  min-width: 100%;
  padding: 0 20px;
}
.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-links {
    display: flex;
    justify-content: flex-end;
}
/*Programas templates*/
.programa-price-page{
  position: relative;
}
/*Variacion Medica*/

h3.uabb-list-icon-text-heading {
    font-family: 'Poppins' important!;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}
h2.fl-module.fl-module-heading.fl-heading.fl-heading-text.fl-node-a6kpl3j4zu7x {
    font-size: 36px;
    font-family: 'Moraga-medium' !important;
    font-weight: 700;
    margin: 20px 0;
}
/*Variacion Medica evaluacion para adolecentes*/
  .evaluation-column-text {
    padding-bottom: 5px;
    overflow-y: scroll;
    max-height: 881px;
  }
/* Scrollbar styling for evaluation columns */
.evaluation-column-text {
  scrollbar-width: thin;
  scrollbar-color: #5166EC #f1f5f9;
}

.evaluation-column-text::-webkit-scrollbar {
  width: 8px;
}

.evaluation-column-text::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 8px;
}

.evaluation-column-text::-webkit-scrollbar-thumb {
  background: #5166EC;
  border-radius: 8px;
}

.evaluation-column-text::-webkit-scrollbar-thumb:hover {
  background: #3f55d6;
}
.yellow-top-bar > .fl-col-content{
  display: flex;
  flex-direction: row;
  justify-content: flex-start !important;
  align-items: center;
}
.yellow-top-bar > .fl-col-content > .fl-module-photo{
  margin: 0 20px;
}
.variacion-h3 {
    font-size: 36px !important;
    font-family: 'Moranga Medium' !important;
    font-weight: 700 !important;
}
.uabb-image-content > img {
    width: 30px !important;
    min-width: 30px;
}
/********************/
.yellow-bar-text {
    font-size: 18px;
    font-family: 'Poppins' !important;
    font-weight: 400;
}
.uabb-list-icon-text > h3.uabb-list-icon-text-heading{
  font-size: 20px;
  line-height: 28px;
}
.uabb-list-icon-wrap > .uabb-callout-outter{
  margin-right: 10px !important;
}
h3[data-node="q1s6girbdey4"]{
  font-size: 36px;
  font-weight: 700;
}
/******************/
/*end Variacion Medica*/




@media (max-width: 1440px){
  .column-icono{
    max-width: 310px;
    height: 272px;
  }
}

@media (max-width: 1092px) {
    .fl-node-4ns9prgod6h3 .uabb-image-carousel-caption, .fl-node-4ns9prgod6h3 .uabb-background-mask .uabb-caption{
        background-color: #F9F8F5;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }
  .uabb-image-carousel-content {
    width: 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin-left:130px;
  }
  .variations-yellow-top {
    display: none !important;
  }
  
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: 13% 70% 18% !important;
    }
}

@media(max-width: 768px){
	/*******************
	* Nav Menu
	*****************/
	div#mobile-nav {
		padding: 20px;
	}
	.menu-item-has-children::after{
	  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat center;
	}
	.sub-menu > li {
		padding: 15px 0;
	}
	div#mobile-nav > ul > li > a,
	.sub-menu > li > a{
		text-decoration: none !important;
	}
	.sub-menu {
		border-radius: 0;
		position: relative;
		width: 100%;
		max-width: 100%;
		background: transparent;
	}		
	.menu-item-has-children::after{
		position: absolute;
		right: 10px;
		top: 0;
	}

	.sub-menu > li::before {
		content: "";
		display: inline-block;
		width: 12px;
		height: 12px;
		margin-right: 8px;
		background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") no-repeat center;
		background-size: contain;
		vertical-align: middle;
		transition: transform 0.3s ease;
		transform: rotate(270deg);
	}

	.sub-menu > li.expanded::before {
		transform: rotate(180deg);
	}
	/*******************
	* End Nav Menu
	*****************/
	/**********************
 * FOOTER MENU
***********************/
ul#menu-footer-menu-en,
ul#menu-footer-menu-es {
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}
ul#menu-footer-menu-en > li,
ul#menu-footer-menu-es > li {
    padding: 0 ;
	display: flex;
}
ul#menu-footer-menu-en > li > a,
ul#menu-footer-menu-es > li > a{
    text-align: center;
	line-height: 1,3;
}
	
ul#menu-footer-menu-en > li::after,
ul#menu-footer-menu-es > li::after {
    content: "";
    margin-left: 10px;
}
	ul#menu-footer-menu-en > li:nth-child(4)::after,
	ul#menu-footer-menu-es > li:nth-child(4)::after {
		content: '';
	}
	.p5-footer > .mx-auto > .grid{
		display: flex !important;
		flex-direction: column;
	}
	.p5-footer > .mx-auto > .items-start > .footer-block{
		width: 100%;
	}

	.p5-footer > .mx-auto > .items-start > .footer-block:nth-child(1){
		order: 3;
	}
	.p5-footer > .mx-auto > .items-start > .footer-block:nth-child(2){
		order: 2;
        display: flex;
        flex-direction: column-reverse;
	}
	.p5-footer > .mx-auto > .items-start > .footer-block:nth-child(3){
		order: 1;
	}
	.social-links {
		display: flex;
        justify-content: space-between;
        padding: 0 20px;
	}
/**********************
 * END FOOTER MENU
***********************/
	.whatasapp-column {
		position: absolute;
		right: 5%;
		bottom: 30px;
		margin: auto;
		width: fit-content;
	}

	figure.wp-block-image.size-full.whatsapp_icon {
		max-height: 70px;
		max-width: 70px;
	}

	.card{
		margin-top:15px;
	}

	/*Nosotros*/
	.nosotros-three-column {
		margin-top:10px;
		min-width:100%;
		max-width: 434px;

	}
	.program-benefit-block {
		background: #ffffff;
		padding: 20px 20px 30px 20px;
		margin: 20px 0px 20px 0px;
		border-radius: 10px;
	}

	.circulo-1{
		background-color: #ffe23f;
		border-radius: 50%;
		width: 85px;
		height: 85px;
		margin: 0 auto 10px;
		display: flex;
		align-items: center;
		justify-content: center;

	}
	.column-imagen{
		max-width:773px;
	}
	.column-nuestro{
		max-width:547px;
	}
	.column-imagen{
		max-width:773px;
	}
	.column-nuestro{
		max-width:547px;
	} 
	.circulo-1 {
		background-color: #ffe23f;
		border-radius: 50%;
		width: 100px;
		height: 100px;
		margin: 0 auto 10px;
		display: flex;
		align-items: center;
		justify-content: center;
	}


	.fl-col-small:not(.fl-col-small-full-width) {
		max-width: 600px; 
	}

	.tab-card-mobile-item .tab-card-mobile-content {
		font-size: 16px ;
		line-height: 20px;
		margin-top: 20px;
		margin-left: 20px;
		margin-right: 20px;
	}
	.uabb-image-carousel-content {
		width: 100px;
		position: relative;
		text-align: center;
		overflow: hidden;
		margin-left:120px;
	}

	/********************/
	.yellow-bar-text {
		font-size: 16px !important;
		font-family: 'Poppins' !important;
		font-weight: 400;
	}
	.uabb-list-icon-text > h3.uabb-list-icon-text-heading{
		font-size: 18px;
		line-height: 24px;
	}
	.evaluation-plus-icon > .fl-photo-content > img.fl-photo-img,
	.variations-content > .fl-row-content-wrap > .fl-row-content > .fl-col-group > .fl-col > .fl-module > .fl-photo-content > img.fl-photo-img{
		width: 15px !important;
		height: 22.5px !important;
		min-width: 15px !important;
		min-height: 22.5px !important;
		max-width: 15px !important;
		max-height: 22.5px !important;
	}
	.variations-content > .fl-row-content-wrap > .fl-row-content > .fl-col-group > .fl-col > .fl-col-content > .fl-col-group > .fl-col  > .fl-col-content{
		margin: 10px 0;
	}
}
@media (max-width: 544px) {
	.ast-header-break-point .ast-below-header-bar {
		display: block !important;
	}
	.ast-mobile-header-content.content-align-flex-start {
		margin-top: -30px;
	}

	.variations-yellow-top {
		display: none;
	}

	.evaluation-column-text {
		padding-bottom: 0px;
		overflow-y: none !important;
		max-height: unset;
	}
	/*Logo*/
	.logo-responsive{
		max-width: 107px;
		height: auto;
	}
	/*Botton book*/
	.book-contact{
		font-size: 12px;
		line-height: 1;
		padding: 0;
		width: 100%;
		height: 32px;
		display: flex;
		justify-content: center;
		align-items: center;
		min-width: 100px;
		min-height: 32px;
	}

}
@media(max-width: 412px){
	.ingresa-menu-button .custom-menu-button-link {
		max-width: 100px;
		max-height: 32px;
		font-size: 12px;
	}
	.uabb-image-carousel-content {
		width: 100px;
		position: relative;
		text-align: center; 
		overflow: hidden;
		margin-left: 126px !important;
	}
	.ast-mobile-header-content.content-align-flex-start {
		margin-top: -30px;
	}
}
