/*
 * Frontend consolidated stylesheet.
 * Section styles will be migrated here progressively.
 */
/* === Local Poppins Font === */
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-100.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-200.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url('src/fonts/poppins-v24-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === Local Moranga Font === */
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Moranga-Light.woff2') format('woff2'),
       url('src/fonts/Latinotype-Moranga-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Light-It.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Bold-It.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Moranga';
  src: url('src/fonts/Latinotype-Moranga-Black-It.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root {
    --color-yellow: #FFD700;
	--color-yellow-card: #FFD700;
    --color-yellow-soft: #f9f8f5;
	--color-white: #ffffff;
	--color-soft-purple: #EEF0FD;
    --color-blue: #5166EC;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-strong: #334155;
    --color-red: #E84C5B;
    --color-red-soft: #FCA5A5;
    --color-gray-light: #D1D5DB;
    --color-gray-lighter: #F3F4F6;
    --color-progress-bar: #e9ecff;
    --color-toogle: #cccccc;
    --color-descuento:#7D978A;
    /*Fonts*/
    --font-poppins: 'Poppins', sans-serif;
    --font-moranga: 'Moranga', serif;
}
/************************
    General
/************************/
figure.wp-block-image.whatsapp_icon {
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: 20px;
}

/**********************
* Layout
***********************/
.ss-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
}
.ss-content{
 width: 100%;
  margin: auto; 
}
.ss-row {
    display: flex;
    flex-direction: row;
    width: 100%;
}
/*Columns*/
.ss-col-4{
    width: 33.33%;
  box-sizing: border-box;
}
.ss-col-6{
    width: 50%;
    display: flex;
    flex-direction: column;
  box-sizing: border-box;
}
.ss-col-8{
    width: 66.66%;
  box-sizing: border-box;
}
.ss-col-12{
    width: 100%;
  box-sizing: border-box;
}
.ss-col-xs-12{
  width: 100% !important;
  box-sizing: border-box;
}

/*Height*/
.h-80 {
  min-height: 80px;
} 
.h-100 {
  min-height: 100px;
} 
.h-150 {
  min-height: 150px;
}   
.h-250 {
  min-height: 250px;
}
.h-480 {
  min-height: 480px;
}
.h-570 {
  min-height: 570px;
}
.mmh-496{
	min-height: 496px;
}
.mh-768{
	max-height: 768px;
}
.h-870{
  min-height: 870px;
}
/*Positions*/
.fixed{
  position: fixed;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
/*Gap*/
.gap-10 {
  gap: 10px !important;
}
.gap-20 {
  gap: 20px !important;
}
/* Background Colors */
.bg-yellow {
  background-color: var(--color-yellow);
}
.bg-blue{
  background-color: var(--color-blue);
}
.bg-white {
  background-color: var(--color-white);
}
.bg-soft-purple {
  background-color: var(--color-soft-purple);
}
.bg-light-gray {
  background-color: var(--color-gray-lighter);
}
.bg-soft-yellow{
  background-color: var(--color-yellow-soft);
}
/*Border Radius*/
.br-8 {
  border-radius: 8px;
}
.br-16 {
  border-radius: 16px;
}
/*Margin*/
.ma{
  margin: auto;
}
.m-20 {
  margin: 20px !important;
}
.book-contact {
  margin-top: 20px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-10{
  margin-left: 10px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mb-0{
  margin-bottom: 0 !important;
}
.mb-5{
  margin-bottom: 5px !important;
}
.mb-5px{
  margin-bottom: 5px !important;
}
.mb-10{
  margin-bottom: 10px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40{
  margin-bottom: 40px !important;
}
.mt-0{
    margin-top: 0 !important;
}
.mt-10{
  margin-top: 10px !important;
}
.mt-20{
  margin-top: 20px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-responsive-0 { 
  margin-top: 0 !important;
}
/*Padding*/
.p-20 {
  padding: 20px !important;
  box-sizing: border-box;
}
.pt-10 {
  padding-top: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
  box-sizing: border-box;
}
.pr-10 {
  padding-right: 10px !important;
}
.pr-20 {
  padding-right: 20px !important;
  box-sizing: border-box;
} 
.p-40 {
  padding: 40px !important;
  box-sizing: border-box;
}
.pt-40 {
  padding-top: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 { 
  padding-left: 40px !important;
  box-sizing: border-box;
} 
.pr-40 {
  padding-right: 40px !important;
  box-sizing: border-box;
}
.pt-90{
  padding-top: 90px !important;
}
/*max width*/
.mw-w-1440,
.max-w-1440 {
  max-width: 1440px;
}
.max-w-1400{
	max-width: 1400px;
}
.max-w-1340 {
  max-width: 1340px;
}

.max-w-1280 {
  max-width: 1280px;
}
.mw-w-1140 {
  max-width: 1140px;
}
.mmw-w-1440{
  min-width: 1440px !important;
}
.max-w-1024{
	max-width: 1024px;
}
.max-w-950{
  max-width: 950px;
}
.mw-w-930{
	min-width: 930px;
}
.max-w-870{
  max-width: 870px;
}
.max-w-830{
  max-width: 830px;
}
.mw-w-700{
  max-width: 700px !important;
}
.mw-w-695{
  max-width: 695px !important;
}
.mw-w-685{
  max-width: 685px !important;
}
.mw-w-610{
  max-width: 610px !important;
}
.max-w-500{
  max-width: 500px;
}
.max-w-450{
  max-width: 450px;
}
.max-w-400{
  max-width: 400px;
}
.mw-w-320 {
  max-width: 320px;
}
.mw-w-316{
  max-width: 316px;
}
.mw-w-48{
  max-width: 48% !important;
}
.mw-w-45{
  max-width: 45% !important;
}
.w-full {
  width: 100%;
}
.mmw-w-684{
	min-width: 684px;
}
/*flex*/
.flex{
    display: flex;
}
.flex-column{
  flex-direction: column;
}
.space-between{
  justify-content: space-between;
}
.flex-center{
  justify-content: center;
}
.justify-flex-end{
  justify-content: flex-end;
}
.jc-start {
  justify-content: flex-start;
}
.ai-center {
  align-items: center;
}
.flex-wrap{
  flex-wrap: wrap;
}
.no-wrap{
  flex-wrap: nowrap!important;
}

/**********************
* Header
***********************/
.ss-site-header{
  width: 100%;
}

.ss-site-header__inner
 {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    flex-wrap: wrap;
    align-items: center;
    height: 80px;
    justify-content: center;
}

a.ss-site-brand {
    max-width: 210px;
    width: 15%;
}

nav.ss-site-nav {
    width: 84%;
    padding: 0 20px;
}

ul#menu-main-menu {
    display: flex;
    justify-content: space-around;
    width: 100%;
    list-style: none;
    padding-left: 2.5rem;
}
ul#menu-main-menu > li{
  position: relative;
  display: flex;
  justify-self: flex-start;
  align-items: center;
  gap: 20px;
  width: fit-content;
}
ul#menu-main-menu > li > a{
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none !important;
    color: var(--color-white) ;
    letter-spacing: 0.5px;
    text-transform: Capitalize;
}

ul.sub-menu {
  background: var(--color-white)  ;
  border-radius: 8px;
  display: none;
  position: absolute;
  top: 100%;
  width: 240px;
  list-style: none;
  padding-left: 0;
}
ul.sub-menu.open {
  display: block !important;
  z-index: 1002;
}

.sub-menu > li {
    padding: 10px 15px;
}
ul.sub-menu > li > a{
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none !important;
    color: var(--colors-black);
    transition: font-weight 0.7s ease;
    width: 100%;
    display: flex;
}
button.ssml-submenu-toggle {
    background: transparent;
    border: none;
}

/* --- Scroll header Sanasana Multilanguage --- */
.ss-site-header.is-scrolled {
  background: var(--color-blue) !important;
}
.ss-site-header.is-scrolled nav a {
  color: var(--color-white) !important;
}
.ss-site-header.is-scrolled .book-contact {
  background: var(--color-yellow) !important;
  color: var(--colors-black) !important;
}
.ss-site-header.is-scrolled nav .sub-menu,
.ss-site-header.is-scrolled nav .wp-block-navigation__submenu-container {
  background: var(--color-white) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}
.ss-site-header.is-scrolled nav .sub-menu a,
.ss-site-header.is-scrolled nav .wp-block-navigation__submenu-container a {
  color: var(--colors-black) !important;
}
.ss-site-header.is-scrolled nav .sub-menu a:focus,
.ss-site-header.is-scrolled nav .wp-block-navigation__submenu-container a:focus {
  background: rgba(255,255,255,0.08) !important;
  color: var(--color-white) !important;
}
.ss-site-header.is-scrolled a.accsess-link {
  background: var(--color-yellow) !important;
  color: var(--colors-black) !important;
}
/************************
    CTA Header
/************************/
a.accsess-link{
  font-size: 16px;
  line-height: 1.2;
  border: none;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background: var(--color-blue);
  border-radius: 8px;
  transition: background .9s;
  width: 180px;
  height: 48px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--color-white);
  max-width: 180px;
}
a.accsess-link-desktop{
  display: flex;  
}

a.accsess-link.accsess-link-desktop:hover {
  background: #FFD700;
  color: #000000 !important;
}
/************************
    Footer
/************************/
footer.ss-site-footer {
    background: var(--color-yellow);
    padding: 40px 20px 20px 20px;
    display: flex;
    justify-content: center;    
    align-items: center;
}

.ss-site-footer__inner {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

nav.ss-footer-nav {
    display: flex;
    flex-wrap: wrap;
}
.menu-item > a{
	text-decoration: none;
	font-family: var(--font-poppins);
	font-size: 16px;
	line-height: 28px;
}
.footer-menu-item{
  display: flex;
  flex-direction: column;
  width: 30%;
}
.footer-menu-item > h3{
  font-family: var(--font-poppins) !important;
  font-weight: 600;
  font-size: 16px;
  color: var(--colors-black);
}
.footer-menu-item> ul{
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.footer-menu-item> ul > li {
  margin: 0 !important;
}
.footer-menu-item> ul > li > a{
  font-weight: 400;
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: var(--colors-black);
}
.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-sanasana-logo {
    max-width: 190px;
}
.footer-tiny-text {
    text-align: left;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 12px;
    line-height: 3;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-content: flex-end !important;
    float: right;
    flex-wrap: wrap;
    color: var(--color-blue);
}
.social-links {
    justify-content: center;
}
ul#menu-footer-copy-right {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    line-height: 1.5;
}
ul#menu-footer-copy-right > li{
  margin: 0 !important;
}
ul#menu-footer-copy-right > li > a{
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  text-decoration: none !important;
  color: var(--color-black);
  text-align: center;
  display: flex;
}
ul#menu-footer-copy-right > li > a::after {
  content: "|";
  margin-left: 10px;
}
ul#menu-footer-copy-right > li:nth-child(4) > a::after {
  content: "";
}
/************************
   Hero section
**************************/
.ss-hero-section{
  height:100vh;
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background-size:cover;
  background-position:top;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}


.ss-hero-overlay{
  background: linear-gradient(180deg, var(--color-black) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ss-hero-content {
    max-width: 1440px !important;
    min-width: 1440px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

h1.ss-hero-title{
  color: var(--color-yellow);
  font-family: var(--font-moranga);
  font-weight: 400 !important;
  font-size: 48px !important;
  line-height: 48px !important;
  text-align: left;
  max-width: 550px;
	margin-bottom: 15px;
}
h2.ss-hero-desc{
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-white);
  margin-top: 0px;
}
.ss-hero-mouse-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*Home Acceso a la mejor salud*/
.pp-wrap *, .pp-wrap *::before, .pp-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
#testimony-video,
.resena-ver-mas{
	cursor: pointer;
}

/**********************
* Text
***********************/
/*Font Family*/
.ff-moranga {
  font-family: var(--font-moranga);
}
.ff-poppins{
  font-family: var(--font-poppins);
}
.fs-italic {
  font-style: italic;
}
/*Font Weight*/
.fw-400 {
  font-weight: 400;
}
.fw-300{
  font-weight: 300;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
} 
.fw-700 {
  font-weight: 700;
} 
/*Font Size*/

.fs-12 {
  font-size: 12px;
}
.fs-14{
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-30{
  font-size: 30px;
}
.fs-36 {
  font-size: 36px;
}
.fs-40 {
  font-size: 40px;
}
.fs-48 {
  font-size: 48px;
}
.fs-72 {
  font-size: 72px;
}
/*Font Color*/
.fc-white {
  color: var(--color-white);
}
.fc-black {
  color: var(--color-black) !important;
}
.fc-gray-strong{
  color: var(--color-gray-strong) !important;
}
.fc-blue {
  color: var(--color-blue) !important;
}
.fc-yellow{
  color: var(--color-yellow) !important;
}
.fc-red-soft {
  color: var(--color-red-soft) !important;
}
/*Line Height*/
.lh-12 {
  line-height: 12px;
} 
.lh-24 {
  line-height: 24px;
}
.lh-28{
	line-height: 28px;
}
.lh-40 {
  line-height: 40px !important;
} 
.lh-48 {
  line-height: 48px !important;
} 
/* text align*/
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*************************
* Buttons
**************************/
ingresa-menu-button {
    width: 180px !important;
    height: 48px !important;
    border-radius: 8px;
    background: #5166EC;	
}
.ingresa-menu-button > .custom-menu-button-link {
    color: #ffffff;
    padding-right: 24px;
    padding-left: 24px;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.ingresa-menu-button > .custom-menu-button-link:hover,
.btn-yellow:hover{
    background: #E3CA3C !important;
    color: #000000 !important;
    border-radius: 8px;
}
.hero-container-button
 {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.hero-container-button > .custom-menu-button{
    width: 180px !important;
    height: 48px !important;
    border-radius: 8px;
}
.hero-ingresa-menu-button > a.custom-menu-button-link{
    width: 100%;
    height: 100%;
    background: #F9DE42;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
    color: #000000 !important;
}
.hero-ingresa-menu-button > a.custom-menu-button-link:hover{
    background: transparent;
    border: solid 2px #F9DE42;
    color: #F9DE42 !important;
}
.hero-programs-menu-button> a.custom-menu-button-link{
    width: 100%;
    height: 100%;
    background: transparent;
    border: solid 2px #F9DE42;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
    color: #F9DE42 !important;
}
.hero-programs-menu-button> a.custom-menu-button-link:hover{
    background: #F9DE42;
    color: #000000 !important;
}
.affiliate-single-redirection-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.affiliate-footer-button-container {
    width: fit-content;
}
.affiliate-button {
    display: flex;
    width: 180px;
    height: 48px;
    padding: 2px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none !important;
}
.price-button{
    display: flex;
    width: 180px;
    height: 48px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-poppins);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: auto;
    text-decoration: none !important;
    margin-bottom: 20px;
}
/* ─────────────────────────────────────────
   CONTENEDOR PRINCIPAL
───────────────────────────────────────── */
.pp-wrap {
  font-family: var(--font-poppins);
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ─────────────────────────────────────────
   TÍTULO + TABS
───────────────────────────────────────── */
.pp-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(1000px, 100%);
  padding: 0 16px;
}

.pp-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pp-h2 {
  font-family: "Moranga", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  color: var(--color-blue);
}

.pp-subtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
}

/* ─── TAB BAR ─── */
.pp-tab-bar {
  display: flex;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  background: var(--color-white);
}

.pp-tab-btn {
  flex: 1;
  height: 60px;
  border: none;
  cursor: pointer;
  font-family: var(--font-moranga);
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  background: var(--color-white);
  color: var(--color-blue);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.pp-tab-btn.active {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* ─────────────────────────────────────────
   DESCRIPCIÓN (cambia con el tab)
───────────────────────────────────────── */
.pp-tab-desc {
  width: min(1010px, calc(100% - 32px));
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: var(--color-blue);
}

.pp-tab-desc strong { font-weight: 700; }

/* ─────────────────────────────────────────
   TOGGLE MENSUAL / ANUAL
───────────────────────────────────────── */
.pp-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-black);
}

.pp-toggle-switch {
  position: relative;
  width: 56px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
}

.pp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pp-toggle-switch input { opacity: 0; width: 0; height: 0; }

.pp-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--color-toogle);
  border-radius: 9999px;
  transition: background 0.3s;
}

.pp-toggle-switch input:checked + .pp-toggle-track { background: var(--color-yellow); }

.pp-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.02), 0px 2px 10px rgba(0,0,0,0.06), 0px 0px 1px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.pp-toggle-switch input:checked ~ .pp-toggle-thumb { transform: translateX(24px); }

.pp-descuento-hint {
  color:  var(--color-descuento);
  font-size: 18px;
  font-weight: 400;
}

/* ─────────────────────────────────────────
   CARDS DE PRECIOS
───────────────────────────────────────── */
.pp-cards-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: min(1000px, calc(100% - 32px));
}

.pp-card {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 1px;
  gap: 20px;
  background: var(--color-white);
  box-shadow: 0px 4px 6px -1px rgba(0,0,0,0.1), 0px 2px 4px -2px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding-bottom: 20px;
  padding-top: 20px;
}

.pp-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  width: 100%;
}

.pp-card-name {
  font-family: var(--font-moranga);
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: var(--color-blue);
}

.pp-card-desc {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
  max-width: 280px;
}

.pp-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  width: 100%;
}

.pp-price-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pp-price-currency {
  font-family: var(--font-moranga);
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-black);
  align-self: flex-start;
  padding-top: 18px;
}

.pp-price-value {
  font-family: var(--font-moranga);
  font-weight: 500;
  font-size: 72px;
  line-height: 72px;
  color: var(--color-black);
  transition: all 0.25s;
}

.pp-price-iva {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  padding-top: 18px;
}

.pp-price-iva .pp-incluye {
  font-family: var(--font-moranga);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-black);
}

.pp-price-iva .pp-iva {
  font-family: var(--font-moranga);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-black);
}

.pp-total-anual {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--color-red);
  width: 100%;
  font-weight: 400;
  min-height: 20px;
}

/* ─────────────────────────────────────────
   BOTONES
───────────────────────────────────────── */
.pp-btns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.pp-btn:hover { opacity: 0.85; }

.pp-btn-comparar , .pp-btn-elegir {
  font-size: 16px;
  line-height: 1.2;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  font-family: var(--font-poppins);
  font-weight: 400;
}

.pp-btn-comparar {
  background: var(--color-blue);
  color: var(--color-white);
}
   
.pp-btn-elegir {
  background: var(--color-yellow);
  color: var(--color-black) !important;
}
.btn-outline{
    background: transparent;
    border: solid 2px var(--color-blue);
    color: #5166ec !important;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    min-width: 180px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    border-radius: 5px;
    padding: 0 24px !important;
}

.btn {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border-radius: 10px;
    padding: 2px 24px;
    height: 48px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
/**************************
* Images
***************************/
.bg-image{
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  position: relative;
}
.bg-image::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.30) 100%);
}
.bg-camino-de-salud {
  background-image: url('https://sanasanastoragews.blob.core.windows.net/blobwsdev/2025/05/Sanasana-7-1.webp');

}
/**************************
* Tabs 
**************************/
.tab-container-mobile {
    display: none;
}
/*Horizontal*/
.tab-container-horizontal {
    position: relative;
    max-width: 1120px;
    margin: auto;
    overflow: hidden;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}
.progress-bar-back {
    background: #e9ecff;
    height: 10px;
    width: 100%;
    border-radius: 20px;
}
.progress-bar {
    width: 25%;
    height: 100%;
    background: var(--color-yellow);
    border-radius: 20px;
    transition: width 0.4s ease-in-out;
    height: 20px;
    transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
    position: absolute;
    left: 0;
    top: 15px;
}
.tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    scrollbar-width: none;
}
#scroll-tabs {
    overflow-x: auto;
    white-space: normal;
    scroll-behavior: smooth;
}
ul.nav-tabs-horizontal {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: space-between;
}
.nav-tabs-horizontal > .nav-item {
    flex: 1;
    text-align: center;
}
.nav-tabs-horizontal .nav-link {
    border: none;
    background: none;
    font-weight: bold;
    font-size: 14px;
    color: var(--colors-black);
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    width: 100%;
    box-shadow: none !important;
    max-width: 220px;
}
.tab-title {
    color: var(--colors-black);
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.tab-excerpt {
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: var(--color-blue) !important; 
    display: block;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.tab-content-horizontal {
    text-align: center;
    padding-top: 20px;
}
.tab-content-horizontal .tab-pane {
    display: none;
}
.tab-image, .tab-content-text {
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}
.tab-image img {
    min-width: 100%;
}
.tab-content-text {
    color: #000;
    text-align: left;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.tab-content-horizontal .tab-pane.active {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.tab-container-mobile {
    display: none;
}
/**************************
* Tabs Verticales
***************************/


.tab-container-vertical {
    display: flex;
    align-items: flex-start;
    max-width: 992px;
    margin: auto;
    gap: 20px;
    min-height: 475px;
    flex-wrap: wrap;
}
.tab-container-vertical > .progress-bar-container {
    position: relative;
    width: 8px;
    flex-shrink: 0;
    min-height: 470px;
    padding: 0 20px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}
.tab-container-vertical > .progress-bar-container > .progress-bar-back {
    background: #e9ecff;
    border-radius: 10px;
    overflow: hidden;
    width: 10px;
    min-height: 470px;
    height: 100%;
}
.tab-container-vertical > .progress-bar-container > .progress-bar {
    width: 20px !important;
    height: 114px !important;
    background: var(--color-yellow);
    border-radius: 10px;
    transition: top 0.1s ease-in-out;
    position: absolute;
    top: 0;
    cursor: grab;
    left: 15px;
}
.tab-container-vertical > .tabs-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 475px;
    width: 45%;
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical > .nav-item {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical > .nav-item > .nav-link.active {
    color: var(--color-yellow);
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical > .nav-item > .nav-link {
    border: none;
    background: none;
    font-weight: bold;
    font-size: 16px;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
    padding: 0 0 0 0;
    width: 100%;
    transition: color 0.3s ease;
    box-shadow: none;
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical > .nav-item > .nav-link.nav-link.active > .tab-title {
    color: var(--color-blue);
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical > .nav-item > .nav-link > .tab-title {
    text-align: left;
    color: var(--color-black);
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}
.tab-container-vertical > .tabs-wrapper > .nav-tabs-vertical > .nav-item > .nav-link > .tab-excerpt {
    color: var(--color-gray-strong) !important;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}
.tab-container-vertical > .tab-content-vertical {
    flex-grow: 1;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 460px;
    position: relative;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 1s;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0s;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane > .tab-image {
    min-width: 100%;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane.active > .tab-image > img {
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 1s;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane > .tab-image > img {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0s;
    max-width: 390px;
    min-width: unset;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane > .tab-content-text {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0s;
}
.tab-container-vertical > .tab-content-vertical > .tab-pane {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0s;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.tab-content-text {
    color: var(--color-black);
    text-align: left;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.tab-container-mobile {
    display: none;
}
/**************************
* Reseñas
***************************/
.resena_item{
    padding: 30px;
    background-color: var(--color-yellow);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 0 !important;
    height: 50%;
}
.resena_item > p{
    margin-top: 0 !important;
}
.resena-ver-mas {
    color: var(--color-blue);
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
}
.resena-modal-content_name_card{
    color: var(--color-blue);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-top: 20px;
}
.resena-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.resena-modal-content {
    background-color: var(--color-yellow);
    padding: 30px;
    width: 587px;
    max-width: 600px;
    border-radius: 10px;
    color: var(--color-black);
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: fit-content;
}
.resena-close {
    position: absolute;
    top: 5%;
    right: 5%;
}

/**************************
* FAQ
***************************/
.faq-search-wrapper {
    width: 100%;
    max-width: 660px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 50px;
    background: var(--color-white);
    padding: 0 20px;
    height: 45px;
    align-items: center;
    border: solid 2px #c0bfbc;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}
.faq-tabs-wrapper {
    width: 100%;
    max-width: 100%;
}
input#faq-search {
    left: 0;
    position: absolute;
    width: 95%;
    border-radius: 10px;
    border: none;
}
#faqsearchbtn {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    top: 12px;
}
#faqsearchbtn > img{
    position: absolute;
    right: 10px;
}
input[type=search]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--color-white);
    border-color: var(--color-gray);
    border-width: 1px;
    border-radius: 0;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000;
}
#faq-reset-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 50px;
    padding: 5px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: none;
    margin-left: 10px;
}
.faq-suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
  }
  .faq-suggestion-result {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }
  .faq-suggestion-result:hover {
    background: #f0f0f0;
  }
  .faq-suggestion-question {
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-poppins);
    color: #334155;
  }
  .faq-suggestion-answer {
    font-size: 13px;
    color: #666;
  }
  #faq-reset-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 50px;
    padding: 5px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
  }
#faq-autocomplete-data{
    display: none;
}
ul.faq-tabs-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    min-width: 100%;
    overflow-x: scroll;
}
li.faq-tab-nav-item.active {
    background: var(--color-white);
    border-bottom: solid 5px var(--color-blue);
    color: var(--color-blue);
}
li.faq-tab-nav-item {
    min-width: 278px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F1EFEA;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    /* text-transform: capitalize; */
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-bottom 0.3s ease;
}
img.faq-tab-icon {
    margin-right: 10px;
}
.faq-tabs-content {
    max-width: 900px;
    margin: 50px auto 0 auto;
    padding: 0 20px;
}
.faq-accordion-item {
    margin: 10px 0;
    background: var(--color-white);
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-question {
    position: relative;
    padding: 20px 48px 20px 16px;
    font-weight: 500;
    font-family: var(--font-poppins);
    cursor: pointer;
    font-size: 18px;
    line-height: 28px;
    color: #11181C;
}
.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}
.faq-icon img {
    transition: transform 0.3s ease;
}
.faq-answer {
    display: none;
    padding: 0 16px 20px 16px;
    animation: fadeIn 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: var(--color-black);
}
.faq-answer > p > a {
    text-decoration: underline;
    color: #0d6efd !important;
}
.faq-tab-content{
    display: none;
}
/**************************
* Comparar programas
***************************/
.comparador-wrap {
    font-family: var(--font-poppins);
    background-color: transparent;
    width: 100%;
}
.comparador-header {
    display: grid;
    grid-template-columns: 580px 230px 230px 230px;
    align-items: center;
    background-color: #f9f8f5;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    height: 170px;
    margin-bottom: 20px;
}
.col-planes {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.col-planes h2 {
    font-family: var(--font-moranga);
    font-size: 36px;
    font-weight: 400;
    color: #5166ec;
    line-height: 1.1;
    margin-bottom: 10px;
}
.toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-track {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 50px;
    transition: background 0.3s;
}
.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle-switch input:checked + .toggle-track {
    background: var(--color-yellow);
}
.toggle-switch input:checked ~ .toggle-thumb {
    transform: translateX(22px);
}
.col-ahorro {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    color: var(--color-blue);
    font-family: var(--font-moranga);
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px var(--color-blue);
}
.col-plan {
    text-align: center;
    padding: 0 8px;
    font-family: var(--font-moranga);
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px var(--color-blue);
    flex-direction: column;
}
.plan-name.cima {
  color: #97B24D;
}

.plan-name.sana {
  color: #BF8573;
}

.plan-name {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: var(--font-moranga);
}
.plan-price {
    font-size: 36px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: var(--font-moranga);
}
.price-big {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    transition: all 0.3s;
}
.price-iva {
    font-size: 17px;
    color: #000000;
    max-width: 45px;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: left;
}

.seccion {
  margin-bottom: 8px;
}

.seccion-header {
  display: grid;
  grid-template-columns: 1fr 120px 160px 160px;
  align-items: center;
  background-color: #eef0fd;
  padding: 14px 24px;
  cursor: pointer;
  user-select: none;
  border-radius: 12px;
}

.seccion-header:hover {
  background-color: #ccd1f5;
}

.seccion-titulo {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-blue);
  grid-column: 1 / 4;
  font-family: var(--font-poppins);
}

.chevron {
  grid-column: 4;
  justify-self: end;
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.seccion.abierta .chevron {
  transform: rotate(180deg);
}

.seccion-body {
  display: none;
}

.seccion.abierta .seccion-body {
  display: block;
}
.seccion-header {
    display: grid;
    grid-template-columns: 1fr 120px 160px 160px;
    align-items: center;
    background-color: #eef0fd;
    padding: 14px 24px;
    cursor: pointer;
    user-select: none;
    border-radius: 12px;
}
.seccion-titulo {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-blue);
    grid-column: 1 / 4;
    font-family: var(--font-poppins);
}
.fila {
    display: grid;
    grid-template-columns: 540px 40px 230px 230px 230px;
    align-items: center;
    min-height: 65px;
    padding: 0;
    border-bottom: 1px solid #eef0fd;
}
.seccion-body .fila:nth-child(odd) {
  background-color: #FEFCEC;
}

.seccion-body .fila:nth-child(even) {
  background-color: #FFFFFF;
}
.fila-nombre {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-black);
    padding: 5px 16px 5px 24px;
    line-height: 20px;
    font-family: var(--font-poppins);
}
.fila-info {
    display: flex;
    justify-content: center;
}
.info-icon {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: default;
    flex-shrink: 0;
    position: relative;
}
.info-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}
.fila-ahorro {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px var(--color-blue);
    height: 65px;
    font-family: var(--font-poppins);
}
.fila-check {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px var(--color-blue);
    height: 65px;
    font-family: var(--font-poppins);
}
.check-icon {
    display: block;
    width: 25px;
    height: 25px;
}

@media (max-width: 768px) {
  body.page-template-page-comparar-programas .comparador-wrap {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  body.page-template-page-comparar-programas .comparador-header {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "planes planes"
      "plan1 plan2";
    align-items: stretch;
    gap: 12px;
    height: auto;
    margin-bottom: 16px;
    position: relative;
    top: auto;
    padding: 12px 0 0;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-planes {
    grid-area: planes;
    padding: 0;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-planes h2.ss-inner-title {
    font-size: 52px !important;
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-planes .toggle-row {
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    gap: 10px;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-ahorro {
    display: none;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-plan:nth-of-type(3) {
    grid-area: plan1;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-plan:nth-of-type(4) {
    grid-area: plan2;
  }

  body.page-template-page-comparar-programas .comparador-header > .col-plan {
    border-left: 0;
    border-radius: 10px;
    background-color: #ffffff;
    min-height: 92px;
    height: auto;
    padding: 8px 6px;
    box-sizing: border-box;
  }

  body.page-template-page-comparar-programas .comparador-header .plan-name {
    font-size: 20px;
    margin-bottom: 2px;
    line-height: 1.1;
  }

  body.page-template-page-comparar-programas .comparador-header .plan-price {
    align-items: flex-start;
    gap: 6px;
    line-height: 1;
  }

  body.page-template-page-comparar-programas .comparador-header .price-big {
    font-size: 42px;
    line-height: 0.95;
  }

  body.page-template-page-comparar-programas .comparador-header .price-iva {
    font-size: 17px;
    max-width: 45px;
    line-height: 1;
    text-align: left;
    margin-top: 2px;
  }

  body.page-template-page-comparar-programas .seccion,
  body.page-template-page-comparar-programas .seccion-header,
  body.page-template-page-comparar-programas .seccion-body,
  body.page-template-page-comparar-programas .fila,
  body.page-template-page-comparar-programas .fila-nombre,
  body.page-template-page-comparar-programas .fila-ahorro,
  body.page-template-page-comparar-programas .fila-check {
    box-sizing: border-box;
  }

  body.page-template-page-comparar-programas .seccion-header {
    grid-template-columns: 1fr 36px;
    padding: 14px 12px;
  }

  body.page-template-page-comparar-programas .seccion-titulo {
    grid-column: 1;
    font-size: 20px;
    line-height: 1.2;
  }

  body.page-template-page-comparar-programas .chevron {
    grid-column: 2;
    justify-self: end;
  }

  body.page-template-page-comparar-programas .seccion-body {
    padding-top: 4px;
  }

  body.page-template-page-comparar-programas .fila {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    padding: 10px 0 12px;
    border-bottom: 1px solid #e8ebff;
    row-gap: 8px;
  }

  body.page-template-page-comparar-programas .seccion-body .fila:nth-child(odd) {
    background-color: #FEFCEC !important;
  }

  body.page-template-page-comparar-programas .seccion-body .fila:nth-child(even) {
    background-color: #FFFFFF !important;
  }

  body.page-template-page-comparar-programas .fila-nombre {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 4px;
    font-size: 14px;
    line-height: 1.35;
  }

  body.page-template-page-comparar-programas .fila-info {
    display: none;
  }

  body.page-template-page-comparar-programas .fila-ahorro {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0;
    border-left: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    justify-content: center;
    text-align: center;
  }

  body.page-template-page-comparar-programas .fila > .fila-check {
    width: 100%;
    min-width: 0;
    height: 34px;
    border-left: 0;
    border: 1px solid #f4db74;
    border-radius: 8px;
    background: #fff;
    justify-content: space-between;
    padding: 0 8px;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4e565f;
  }

  body.page-template-page-comparar-programas .fila > .fila-check:nth-child(4)::before {
    content: 'CIMA Prime';
  }

  body.page-template-page-comparar-programas .fila > .fila-check:nth-child(5)::before {
    content: 'Sana Sana';
  }

  body.page-template-page-comparar-programas .fila-check .check-icon {
    width: 18px;
    height: 18px;
  }
	.mmw-w-684{
		min-width: unset;
	}
	
}
/**************************
* Page Sana Sana
***************************/
.cima-price {
    width: 280px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.currency-container {
    display: flex;
    color: #ffffff;
    max-height: 70px;
    align-items: center;
    justify-content: flex-start;
}
.currency-content {
    font-family: var(--font-moranga);
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 0%;
    text-align: center;
    margin-right: 5px;
}
.amount-content {
    font-family: var(--font-moranga);
    font-weight: 500;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: 0%;
    text-align: center;
}
.text-content {
    max-height: 70px;
    margin-left: 5px;
    text-align: left;
}
.text-1, .text-2 {
    font-family: var(--font-moranga);
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
}
.total-amount {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #f298a1;
}
.beneficios-section {
    background-color: #eef0fd;
}
.beneficios-inner {
    width: 100%;
}
.beneficios-inner > .card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 20px 40px 20px 80px;
    margin-bottom: 24px;
	border: solid 1px #0000002d;
}
p{
  font-family: var(--font-poppins);
}
h3.card-title {
    font-family: var(--font-moranga) !important;
    font-size: 36px;
    font-weight: 400;
    color: var(--color-blue);
    line-height: 40px;
    margin-bottom: 20px;
	margin-top: 0;
}
.beneficios-inner > .card > p{
	font-family: var(--font-poppins);
	font-size: 18px;
	font-weight: 400;
    line-height: 28px;
}
ul.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
	padding-left: 0;
}
ul.check-list > li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-black);
    font-family: var(--font-poppins);
}
ul.check-list > li > img {
    width: 25px;
    height: 20px;
    flex-shrink: 0;
}
.ahorros-table {
    width: 100%;
    border-collapse: collapse;
  table-layout: fixed;
    margin-top: 8px;
}
.ahorros-table tr:nth-child(odd) {
    background-color: #fefcec;
}
.ahorros-table tr {
    height: 65px;
}
.ahorros-table td {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-black);
    padding: 0 16px;
    vertical-align: middle;
    font-family: var(--font-poppins);
}
.ahorros-table td.ahorro-valor {
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}
.pf-wrap {
    font-family: "Poppins", sans-serif;
    background: transparent;
    width: 100%;
  box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.pf-titulo {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--color-blue);
}
.pf-cards-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}
.pf-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #f9de42;
}
.pf-card-name {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: var(--color-black);
}
.pf-divider {
    width: 100%;
    height: 1px;
    background: var(--color-blue);
}
.pf-card-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: var(--color-black);
	margin-bottom: 0;
}


/* =============================
   Contact Forms (frontend)
============================= */
.img-contactanos{
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 20px auto;
}
form#contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form_sanasana > #contact-form > input {
  height: 46px;
  border-radius: 12px;
  border: none !important;
  outline: none;
  padding: 0 20px;
  color: #334155;
}

.contact-form_sanasana > #contact-form > input,
.contact-form_sanasana > #contact-form > textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 8px 0 !important;
}

.contact-form_sanasana > #contact-form > textarea {
  height: 120px;
  border-radius: 12px;
  border: none !important;
  outline: none;
  padding: 14px 20px;
  color: #334155;
}
.contact-form_sanasana > #contact-form > input::placeholder,
.contact-form_sanasana > #contact-form > textarea::placeholder {
  color: var(--color-blue) !important;
  font-weight: 300;
  opacity: 1; /* Importante: Firefox suele bajar la opacidad por defecto */
  font-family: var(--font-poppins);
}

.contact-form_sanasana > #contact-form > input:focus,
.contact-form_sanasana > #contact-form > textarea:focus {
  border: none !important;
  outline: none;
  box-shadow: none;
}

.contact-form_sanasana > #contact-form > input::placeholder,
.contact-form_sanasana > #contact-form > textarea::placeholder,
.contact-form_sanasana > #contact-form > input:focus::placeholder,
.contact-form_sanasana > #contact-form > textarea:focus::placeholder,
.contact-form_sanasana > #contact-form > input::-webkit-input-placeholder,
.contact-form_sanasana > #contact-form > textarea::-webkit-input-placeholder,
.contact-form_sanasana > #contact-form > input::-moz-placeholder,
.contact-form_sanasana > #contact-form > textarea::-moz-placeholder,
.contact-form_sanasana > #contact-form > input:-ms-input-placeholder,
.contact-form_sanasana > #contact-form > textarea:-ms-input-placeholder,
.contact-form_sanasana > #contact-form > input::-ms-input-placeholder,
.contact-form_sanasana > #contact-form > textarea::-ms-input-placeholder {
  color: #5166ec !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: Poppins, sans-serif;
  opacity: 1 !important;
}

input#phone {
  border: none;
  padding-left: 20px;
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form_sanasana #contact-form .iti {
  width: 100%;
  margin: 8px 0 !important;
}

.contact-form_sanasana #contact-form .iti input#phone,
.contact-form_sanasana #contact-form .iti .iti__tel-input {
  width: 100% !important;
  height: 46px !important;
  border: none !important;
  border-radius: 12px !important;
  outline: none;
  box-shadow: none;
  color: #334155;
}

.contact-form_sanasana > #contact-form > button[type="submit"] {
    width: 180px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    background: #f9de42;
    margin-top: 10px;
    border: none;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 300;
}

.learn-more-form-fields {
  background: #eef0fd;
  padding: 20px;
}

.learn-more-text {
  min-height: 46px;
  border-radius: 12px !important;
  border: none !important;
  outline: none;
}

.learn-more-text::placeholder,
.learn-more-text:focus::placeholder,
.learn-more-text::-webkit-input-placeholder,
.learn-more-text::-moz-placeholder,
.learn-more-text:-ms-input-placeholder,
.learn-more-text::-ms-input-placeholder {
  color: #5166ec;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: Poppins, sans-serif;
  opacity: 1;
}

.learn-more-text:focus {
  border: none !important;
  outline: none;
  box-shadow: none;
}

h3.learn-more-sub-title {
  font-size: 18px;
  line-height: 28px;
  font-family: 'Poppins' !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}

h4.learn-more-sub-title {
  font-family: 'Poppins' !important;
  font-size: 14px;
  line-height: 20px;
  color: #b0b0b0;
  margin-bottom: 0;
}

.learn-more-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.learn-more-item > input[type="checkbox"] {
  height: 24px !important;
  width: 24px !important;
  min-width: 24px !important;
  border: solid 2px #b0b0b0 !important;
  background-color: #eef0fd !important;
}

.learn-more-item > label {
  font-size: 14px;
  font-family: 'Poppins' !important;
  margin-left: 10px;
  color: #000000;
}

.learn-more-submit-container {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.learn-more-submit-container > input[type="submit"] {
  width: 180px !important;
  height: 50px;
  border-radius: 8px;
}

.learn-more-mouse-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.learn-more-mouse-container > img {
  width: 32px;
  height: 48.77px;
}

.learn-more-button-container {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.learn-more-form-container .iti {
  width: 100%;
}

.submit-button-loading-spin {
  width: 180px !important;
  height: 50px !important;
  border-radius: 8px !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
}

.submit-button-loading-spin.loading {
  background: #999 !important;
  color: #333 !important;
  cursor: progress;
}

.submit-button-loading-spin.loading::before {
  content: "";
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}
/*Mas preguntas*/
.padding-mas-preguntas {
    padding: 0 20px;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
/**************************
* Responsive
***************************/
@media(max-width: 1439px){
  .ss-hero-content{
    min-width: 100%;
  } 
}
@media(max-width: 1431px){
    ul.faq-tabs-nav {
    justify-content: flex-start;
  } 
}
@media(max-width: 1092px){
  .mmw-w-1440{
    min-width: 100% !important;
  }
	.mmw-w-684{
		min-width: unset;
	}

}
/* --- Responsive Styles: Desktop (min-width: 1025px) --- */
@media (min-width: 1025px) {
  .ss-header-hamburger {
    display: none !important;
  }
  .ss-mobile-sidebar-nav {
    display: none !important;
  }
  .accsess-link-mobile{
    display: none !important;
  }
}
/* --- Responsive Styles: Mobile (max-width: 1024px) --- */

@media (max-width: 1024px) {
  /* Header & Navigation */
  button.ss-header-hamburger > svg > path { 
    stroke: var(--color-white) !important;
  }
  body.ss-nav-gray-match button.ss-header-hamburger > svg > path {
    stroke: var(--color-black) !important;
  }
  .ss-site-header.is-scrolled button.ss-header-hamburger > svg > path {
    stroke: var(--color-white) !important;
  }
  .ss-site-header {
    width: 100%;
    left: 0;
    right: 0;
  }
  nav.ss-site-nav {
    display: none;
  }
  .ss-header-hamburger { 
    display: block !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .ss-site-header__inner{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  a.custom-logo-link {
      order: 1;
      min-width: 210px;
  }
	.header-buttons-container {
		order: 2;
		display: flex;
		gap: 10px;
		align-items: center;
	}
  button.ss-header-hamburger {
      order: 2;
  }
  a.accsess-link.accsess-link-mobile{
      order: 1;
      background-color: var(--color-blue) !important;
      color: var(--color-white) !important;
      font-size: 14px;
	  width: 100%;
	  max-height: 48px !important;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    min-height: 48px;
    text-decoration: none;
  }

  .ss-mobile-sidebar-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: fit-content;
    background: var(--color-white);
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 10;
    padding:0px;
    overflow-y: auto;
  }
  .ss-mobile-sidebar-nav.open {
    transform: translateX(0);
    top: 70px;
  }
  .ss-mobile-sidebar-nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .ss-nav-list{
    gap: 0 !important;
  }
  .ss-mobile-sidebar-nav li{
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    padding-left: 10;
    position: relative;
    z-index: 11;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0 !important;
  }
	.sub-menu > li > a,
	.ss-mobile-sidebar-nav > li > a{
		padding-left: 20px;
	}
  ul.ss-mobile-sidebar-nav > li > a ,
  .ss-site-header.is-scrolled nav a {
    color: var(--color-black) !important;
    font-size: 20px;
    font-weight: 400;
    display: block;
    text-decoration: none;
    font-size: 14.56px;
  }
	.menu-item > a{
		line-height: 28px;
		padding-left: 20px;
		color: var(--color-black);
	}
	
    header.is-scrolled > .ss-container > nav.ss-site-nav > ul#menu-main-menu > li.current_page_item > a{
        color: #ffffff !important;
      font-weight: 400 !important;
    }
/*
  #ss-mobile-sidebar-nav li.current_page_item > a,
  #ss-mobile-sidebar-nav li.current-menu-item > a {
    color: #045cb4 !important;
  }
	*/

  button.ssml-submenu-toggle {
      position: absolute;
      right: 20px;
      top: 0;
      bottom: 0;
      z-index: 100;
      /* background: blue; */
  }
  body.ss-mobile-nav-open {
    overflow: hidden;
  }

  /* Access Button Mobile */
  .accsess-link-mobile {
    display: flex !important;
    width: 100px !important;
    height: 32px !important;
    font-size: 14px;
  }
  .accsess-link-desktop{
    display: none !important;
  }
  .ss-mobile-sidebar-nav .menu-item-access-portal {
    order: -1;
    display: none !important;
    width: 100%;
    margin-bottom: 24px;
  }
  .ss-mobile-sidebar-nav .menu-item-access-portal a.accsess-link {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    font-weight: 600;
    background: var(--color-yellow);
    color: var(--color-black) !important;
    text-align: center;
    border-radius: 8px;
    padding: 16px 0;
    margin-bottom: 12px;
  }
  a.ss-site-brand {
    max-width: 120px;
    width: fit-content;
  }
  /*FAQ*/
  ul.faq-tabs-nav {
      display: flex;
      flex-direction: row;
      list-style: none;
      padding: 0;
      margin: 0;
      justify-content: flex-start;
      min-width: 100%;
      overflow-x: scroll;
      max-width: 900px;
  }
  .faq-tabs-wrapper {
      max-width: max-content;
      margin: auto;
  }
  footer{
    padding: 40px 20px 20px 20px;
  }
  /* Footer Responsive Adjustments */
  ul#menu-footer-copy-right{
    flex-direction: column;
    gap: 0;
  }
  ul#menu-footer-copy-right > li > a::after {
    content: "";
  }
  ul.sub-menu {
    position: relative !important;
    z-index: 9999 !important;
    width: 100% !important;
    left: 0 !important;
    top: 20px !important;
    background: var(--color-white) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    margin-bottom: 20px !important;
    min-width: 0 !important;
    padding-left: 0 !important;
  }
  ul.sub-menu > li {
    padding: 2px;
    border: none !important;
    margin: 0 !important;
    font-size: 1.08rem;
    /*background: none !important;*/
    display: flex;
    align-items: center;
  }
  ul.sub-menu > li > a {
    padding: 0 !important;
    background: none !important;
    width: 100%;
    text-align: left;
    border-radius: 0;
    display: flex;
    align-items: center;
 
  }
  ul.ss-nav-list > li.expanded > a{
    margin-top: 20px !important;
  }
  ul.sub-menu.open {
    display: block !important;
    padding-left: 0 !important;
  }
  .sub-menu > li > a::before {
      content: "";
      display: inline-block;
      width: 12px;
      height: 12px;
      margin-right: -5px;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='57 35.171 26 16.043'><path fill='black' d='M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z'/></svg>") no-repeat center;
      background-size: 9px;
      vertical-align: middle;
      transition: transform 0.3s ease;
      transform: rotate(270deg);
      margin-left: 20px;
      margin-right: 5px;
  }
	li.current-menu-item{
		background: #f0f5fa !important;
	}
  .current-menu-item > a{
      font-weight: 400 !important;
      text-decoration: none !important;
  }
  .ssml-submenu-toggle > svg {
    stroke: var(--color-black)!important;
  }
  .play-button-container,
  .play-button-container > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
	.mmw-w-684{
		min-width: unset;
	}
}
@media (max-width: 1012px) {
  .padding-mas-preguntas{
    max-width: 90%;
  }
	.mmw-w-684{
		min-width: unset;
	}
	.mw-w-930{
		min-width: 100% !important;
	}
}
/* --- Responsive Styles: Desktop (max-width: 768px) --- */
@media (max-width: 896px) {
  .testimomonios-row {
      flex-direction: column;
      gap: 20px;
  }
  .testimomonios-row > .ss-col-6{
    width: 100%;
    padding-left: 0 !important;
  }
  .testimomonios-row > .ss-col-6 > img{ 
    width: 100%;
    height: auto;
  }
  .tab-container-desktop {
      display: none;
  }
  .tab-container-mobile {
      display: flex;
      flex-direction: column;
      max-width: 100%;
      padding: 0px;
  }
  .tab-container-vertical > .tab-content-vertical {
      flex-grow: 1;
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      min-height: 90vh;
      position: relative;
  }
  .tab-container-mobile .tab-content-vertical {
    text-align: left;
    margin-top: 20px;
    padding: 0 20px;
    height: 70vh;
    position: relative;
    overflow: unset;
    max-width: 90%;
    margin: auto;
  }
  .tab-content-mobile-vertical {
      display: flex;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
  }
  .nav-butons-mobile-vertical {
      position: absolute;
      z-index: 10;
      left: 10px;
      right: 10px;
      bottom: 30%;
      height: fit-content;
      width: 95%;
      display: flex;
      justify-content: space-between;
      margin: auto;
  }
  .tab-container-vertical > .tab-content-vertical > .tab-pane.active {
      visibility: visible;
      opacity: 1;
      transition: visibility 1s, opacity 1s;
      width: 100%;
  }
  .tab-container-mobile .tab-pane.active {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .tab-container-vertical > .tab-content-vertical > .tab-pane {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 0;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0s;
      position: absolute;
      z-index: 1;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
  }
  .nav-item.nav-item-mobile-vertical {
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      min-width: 100%;
      flex-direction: column;
  }
  .tab-title {
      font-size: 16px !important;
      min-width: 220px;
      text-align: center !important;
  }
  div.nav-link.active > .tab-title {
      color: #5166EC;
      font-family: 'Poppins';
      font-size: 16px;
      font-weight: 700;
      padding: 0 20px 10px 20px;
      line-height: 20px;
  }
  .nav-separator {
      min-height: 10px;
      width: 165px;
      background: #F9DE42;
      border-radius: 20px;
  }
  .tab-excerpt {
      color: var(--colors-common-tertiary-500, #5166EC);
      text-align: center;
      font-family: Poppins;
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: 28px;
      color: #5166EC;
      display: block;
      width: 100%;
      white-space: normal;
      word-wrap: break-word;
      overflow-wrap: break-word;
  }
  .tab-container-mobile .tab-pane .tab-excerpt {
      font-size: 16px;
      font-weight: 400;
      color: #000;
      text-align: left;
      margin-bottom: 15px;
      max-width: 100%;
  }
  .tab-container-vertical > .tab-content-vertical > .tab-pane > .tab-image {
      min-width: 100%;
  }
  .tab-container-mobile .tab-pane .tab-image::before {
      content: "";
      position: absolute;
      top: 10%;
      left: 5%;
      width: 90%;
      height: 90%;
      /* background: #FFD700; */
      border-radius: 30px;
      z-index: 1;
  }
  .tab-container-vertical > .tab-content-vertical > .tab-pane.active > .tab-image > img {
      visibility: visible;
      opacity: 1;
      transition: visibility 1s, opacity 1s;
  }
  .tab-container-vertical > .tab-content-vertical > .tab-pane > .tab-image > img {
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0s;
      max-width: 390px;
      min-width: unset;
  }
  .tab-container-mobile .tab-pane .tab-image img {
      display: block;
      width: 100%;
      z-index: 2;
      position: relative;
  }
	.mmw-w-684{
		min-width: unset;
	}
}
@media (max-width: 768px) {
  h1.ss-hero-title{
    font-size: 36px !important;
    margin-bottom: 0;
  }
  h2.ss-hero-desc{
    font-size: 16px !important;
    margin-top: 0;
    font-size: 16px !important;
    font-weight: 300;
  }
  h2.ss-inner-title{
    font-size: 36px !important;
    margin-bottom: 0;
  }
  p{
    font-size: 16px !important;
    font-weight: 300;
  }
   .ss-hero-content{
    gap: 20px;
  }
  .ss-footer-nav {
    flex-direction: column;
  }
  .ss-row {
    flex-direction: column;
  } 
  .ss-col-6, .ss-col-8{
    width: 100%;
  }
  .footer-menu-item {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      margin-bottom: 20px;
  }
  .footer-menu-item> ul {
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .footer-logo-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
  }
    /* === Custom menu styles for visual match === */
    /* Tab activo: fondo azul claro y texto azul */
    .ss-nav-list > .current-menu-item > a,
    .ss-nav-list > .current_page_item > a {
      background: #f0f5fa !important;
      color: var(--color-blue) !important;
      font-weight: 400 !important;
      border-radius: 0 !important;
    }
  
    /* Espaciado entre ítems principales */
    .ss-nav-list > li {
      margin-bottom: 1.5rem;
    }
    .ss-nav-list > li:last-child {
      margin-bottom: 0;
    }

    .ss-mobile-sidebar-nav li.current_page_item,
    .ss-mobile-sidebar-nav li.current-menu-item {
      background: linear-gradient(to bottom, #f0f5fa 0px, #f0f5fa 60px, #ffffff 40px, #ffffff 100%) !important;
    }

    nav#ss-mobile-sidebar-nav ul.ss-nav-list > li.current_page_item > a,
    nav#ss-mobile-sidebar-nav ul.ss-nav-list > li.current-menu-item > a,
    .ss-mobile-sidebar-nav li.current_page_item > a,
    .ss-mobile-sidebar-nav li.current-menu-item > a {
      color: #045cb4 !important;
    }
  
    /* Submenús indentados */
    .menu-item-has-children > .sub-menu {
      padding-left: 2rem !important;
      background: transparent !important;
      box-shadow: none !important;
    }
    .sub-menu > li > a {
      padding-left: 1.5rem !important;
    }
  
    /* Quitar fondo blanco del panel del menú (desktop) */
    nav.ss-site-nav, .ss-mobile-sidebar-nav {
      box-shadow: none !important;
    }
  
    /* Mejorar contraste de los ítems normales */
    .ss-nav-list > li > a {
      color: var(--color-black) !important;
      font-weight: 400;
      background: transparent !important;
      font-family: var(--font-poppins) !important;
      text-decoration: none !important;
    }
  .footer-tiny-text {
      align-content: center !important;
  }
  .social-links{
    justify-content: space-around;
  }
  /*Tab home*/
  .tab-container-mobile {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 20px;
      max-width: 90%;
  }
  .tab-card-mobile-item {
      padding: 20px 0;
      border-bottom: solid 1px var(--color-black);
      margin-top: 20px;
  }
  .tab-card-mobile-item .tab-card-mobile-content {
      font-size: 16px;
      line-height: 20px;
      margin-top: 20px;
      margin-left: 20px;
      margin-right: 20px;
  }
  .tab-image{
    margin: 0 auto;
  }
  .pp-cards-row{
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .learn-more-form-fields {
    padding: 20px;
  }

  .learn-more-form-fields > .row {
    padding: 0;
  }

  .learn-more-text {
    margin: 15px 0;
  }

  .learn-more-button-container {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .faq-search-wrapper {
    max-width: 80%;
  }
  .pp-tab-btn{
    font-size: 24px;
  }
  h3.card-title{
    font-size: 24px;
  }
  .pf-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .pf-card{
    max-width: 360px;
  }
  .pp-btns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
	.mmw-w-684{
		min-width: unset;
	}
	.beneficios-inner > .card {
		background-color: var(--color-white);
		border-radius: 16px;
		padding: 20px 20px 20px 20px;
		margin-bottom: 24px;
		border: solid 1px #0000002d;
	}
}
@media (max-width: 600px) {
  .ss-home-hero{
    background-image: url("https://sanasanastoragews.blob.core.windows.net/blobwsdev/2026/05/home-hero.webp") !important;
    background-size: cover !important;
    background-position: center !important;
  }
	.mmw-w-684{
		min-width: unset;
	}
}
@media (max-width: 544px) {
  a.accsess-link.accsess-link-mobile {
        min-width: 100px;
	  	max-width: 100px;
        min-height: 32px;
        max-height: 32px;
    }
	a.custom-logo-link {
      max-width: 107px !important;
      min-width: 107px !important;
    }
	img.custom-logo{
      max-width: 107px !important;
      min-width: 107px !important;
  }
	.mmw-w-684{
		min-width: unset;
	}
}

