/**
 * Senda Health - Global Refactor Styles
 * Base shared across all pages.
 */

:root {
    /* Shared CSS Variables */
}

/* Common base resets or utilities can go here */

/* ==========================================================================
   Pricing Section Fixes (Shared across Gender & Home pages)
   ========================================================================== */
.card-desglose-precio .card-price, 
.card-desglose-precio .block-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}
.card-desglose-precio .contenedor-price {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}


/* MERGED FROM PORTADA */
/**
 * Senda Health - Portada Refactor & Core Styles
 * 
 * BEM Methodology.
 */

:root {
    --padding-mobile: 24px;
    --padding-desktop: 40px;
    
    --color-primary: #334DCF;
    --color-primary-hover: #263CA8;
    --color-text-dark: #2A2822;
    --color-text-light: #635E54;
    --color-bg-light: #ffffff;
    --color-border: #E2DED4;
    
    --font-primary: 'Saans', sans-serif;
}

/* ==========================================================================
   Base Layout & Containers
   ========================================================================== */
.container-fluid {
    width: 100%;
    padding-left: var(--padding-mobile);
    padding-right: var(--padding-mobile);
    margin: 0 auto;
    max-width: 1200px; /* Optional cap if needed */
}

@media (min-width: 768px) {
    .container-fluid {
        padding-left: var(--padding-desktop);
        padding-right: var(--padding-desktop);
    }
}

/* Base Block style for full-width sections */
.section-block {
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding: 60px var(--padding-mobile);
}

@media (min-width: 768px) {
    .section-block {
        padding: 80px var(--padding-desktop);
    }
}

.section-block--no-border {
    border-bottom: none;
}

.section-block__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons (BEM)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
    text-decoration: none;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
}

.btn__icon {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   KPIs Section (.kpi-section)
   ========================================================================== */
.kpi-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .kpi-section__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.kpi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kpi-item__number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    line-height: 1.1;
}

.kpi-item__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.kpi-item__description {
    font-size: 13.5px;
    color: var(--color-text-light);
    line-height: 1.5;
    max-width: 280px;
}

/* ==========================================================================
   Steps Section (.steps-section)
   ========================================================================== */
.steps-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .steps-section__grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.steps-section__title {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    line-height: 1.25;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-item--highlight {
    background-color: #FAF6F0;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.step-item__icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.step-item__content {
    flex-grow: 1;
}

.step-item__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    font-family: var(--font-primary);
}

.step-item__text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-light);
    margin: 0;
}

/* ==========================================================================
   Gender Programs (.gender-programs-section)
   ========================================================================== */
.gender-programs-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.gender-program-block {
    width: 100%;
    height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 0 8%;
    overflow: hidden;
}

.gender-program-block.block-woman {
    background-color: #cdad87;
    background-position: right bottom;
    background-size: auto 100%;
    justify-content: flex-start;
}

.gender-program-block.block-man {
    background-color: #c9cdd2;
    background-position: left bottom;
    background-size: auto 100%;
    justify-content: flex-end;
}

.gender-program-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 15px 40px rgba(42, 40, 34, 0.08);
    max-width: 520px;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gender-program-card__title {
    font-family: var(--font-primary);
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.2;
}

.gender-program-card__desc {
    font-family: var(--font-primary);
    font-size: 15.5px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Mobile Adjustments for Gender Programs */
.gender-program-mobile-hero {
    display: none;
}

@media (max-width: 1200px) {
    .gender-program-block { height: 500px; }
    .gender-program-card { padding: 36px; max-width: 450px; }
}

@media (max-width: 991px) {
    .gender-program-block { height: 440px; padding: 0 4%; }
    .gender-program-card { padding: 32px; max-width: 400px; }
}

@media (max-width: 768px) {
    .gender-program-block {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
    }
    .gender-program-block.block-woman,
    .gender-program-block.block-man {
        background-image: none !important;
        background-color: #FAF6F0;
    }
    .gender-program-mobile-hero {
        display: block;
        width: 100%;
        height: auto;
    }
    .gender-program-mobile-hero.bg-woman { background-color: #cdad87; }
    .gender-program-mobile-hero.bg-man { background-color: #a5cfdd; }
    
    .gender-program-mobile-hero img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 400px;
        object-fit: contain;
        margin: 0 auto;
    }
    .gender-program-card {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 40px var(--padding-mobile);
        background: #FAF6F0;
        gap: 16px;
    }
}

/* ==========================================================================
   Actualidad Section (.portada2-actualidad-section)
   ========================================================================== */
.actualidad-header {
    text-align: center;
    margin-bottom: 48px;
}
.actualidad-heading {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin: 0 0 16px 0;
}
.actualidad-subheading {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}
.actualidad-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 992px) {
    .actualidad-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.actualidad-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.actualidad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(14, 14, 144, 0.05);
    border-color: #C5CDEE;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.card-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
}
.badge-blog {
    background-color: var(--color-border);
    color: var(--color-text-dark);
}
.card-date {
    font-size: 12px;
    color: #A09B8E;
}
.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.card-title a {
    color: inherit;
    text-decoration: none;
}
.card-excerpt {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--color-border);
    padding-top: 20px;
    margin-top: auto;
}
.card-category {
    font-size: 13px;
    font-weight: 600;
    color: #A09B8E;
}
.card-action-link {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-action-link:hover {
    color: var(--color-text-dark);
}

/* ==========================================================================
   Mobile Overrides & Carousels
   ========================================================================== */
@media (max-width: 768px) {
    /* "Tu senda hacia..." - NO scroll snap, just stack vertically */
    .senda-cards-scroll-viewport {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 var(--padding-mobile);
        box-sizing: border-box;
    }
    
    .senda-card-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Equipo Carousel */
    .inner-destacado-equipo .equipo {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        padding-left: 7.5vw;
        padding-right: 7.5vw;
        margin: 0 -16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .inner-destacado-equipo .equipo::-webkit-scrollbar {
        display: none;
    }
    
    .inner-destacado-equipo .equipo .persona {
        flex: 0 0 85vw;
        width: 85vw;
        scroll-snap-align: center;
    }

    /* Testimonios Carousel */
    .testimonios-grid.active {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        padding-left: 7.5vw;
        padding-right: 7.5vw;
        margin: 0 -16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .testimonios-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonios-grid.active .testimonio-card-large {
        flex: 0 0 85vw;
        width: 85vw;
        scroll-snap-align: center;
    }
    
    .testimonios-grid:not(.active) + .custom-mobile-nav {
        display: none;
    }
}




/* EXTRACTIONS (Restored) */

/* EXTRACTED FROM page-senda-para-mujeres.php */
.extracted-style-1 {
    grid-column: 1 / -1 !important;
     width: 100% !important;
     margin: 0;
     padding: 0;
     overflow-x: hidden;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
    
}

.extracted-style-2 {
    display: flex;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
    
}

.extracted-style-3 {
    white-space: nowrap;
    
}

.extracted-style-4 {
    margin-left: 6px;
     display: inline-block;
     vertical-align: middle;
    
}

.extracted-style-5 {
    display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     white-space: nowrap;
    
}

.extracted-style-6 {
    margin-top: 4px;
    
}

.extracted-style-7 {
    background-color: #FFFDF9;
     border-top: none !important;
     border-bottom: 1px solid #E2DED4;
     padding: 24px 0;
     margin-top: 0;
     margin-bottom: 0;
    
}

.extracted-style-8 {
    margin-bottom: 12px;
     font-size: 11px;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: #8a8a93;
     font-weight: 700;
    
}

.extracted-style-9 {
    background-color: #979082;
    
}

.extracted-style-10 {
    background-color: #6EA3C0;
    
}

.extracted-style-11 {
    background-color: #CDA674;
    
}

.extracted-style-12 {
    background-color: #ffffff;
     padding: 60px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-13 {
    max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     text-align: center;
    
}

.extracted-style-14 {
    display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
    
}

.extracted-style-15 {
    font-size: 48px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-16 {
    font-size: 16px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-17 {
    font-size: 13.5px;
     color: #635E54;
     line-height: 1.5;
     max-width: 280px;
    
}

.extracted-style-18 {
    background-color: #FAF6F0;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    color: #2A2822;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     font-size: 13px;
    
}

.extracted-style-22 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Saans', sans-serif;
     margin-bottom: 12px;
    
}

.extracted-style-23 {
    font-size: 16px;
     color: #635E54;
     max-width: 800px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-24 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 32px;
    
}

.extracted-style-25 {
    background: #ffffff;
     border: 1px solid #E2DED4;
     border-radius: 16px;
     padding: 32px;
     box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    
}

.extracted-style-26 {
    display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #FFF0F0;
     color: #D32F2F;
     font-weight: 700;
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     padding: 6px 12px;
     border-radius: 20px;
     margin-bottom: 24px;
    
}

.extracted-style-27 {
    margin-bottom: 24px;
    
}

.extracted-style-28 {
    font-size: 18px;
     font-weight: 700;
     color: #2A2822;
     margin-bottom: 8px;
    
}

.extracted-style-29 {
    font-size: 14.5px;
     color: #635E54;
     line-height: 1.6;
    
}

.extracted-style-30 {
    background: #334DCF;
     border-radius: 16px;
     padding: 32px;
     color: #ffffff;
     box-shadow: 0 10px 25px rgba(51, 77, 207, 0.2);
    
}

.extracted-style-31 {
    display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(255,255,255,0.2);
     color: #ffffff;
     font-weight: 700;
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     padding: 6px 12px;
     border-radius: 20px;
     margin-bottom: 24px;
    
}

.extracted-style-32 {
    font-size: 18px;
     font-weight: 700;
     color: #ffffff;
     margin-bottom: 8px;
    
}

.extracted-style-33 {
    font-size: 14.5px;
     color: #DBE1F5;
     line-height: 1.6;
    
}

.extracted-style-34 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-35 {
    display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 48px;
    
}

.extracted-style-36 {
    color: #635E54;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     font-size: 13px;
    
}

.extracted-style-37 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
     line-height: 1.25;
    
}

.extracted-style-38 {
    position: relative;
    
}

.extracted-style-39 {
    display: flex;
     flex-direction: column;
     gap: 32px;
    
}

.extracted-style-40 {
    display: flex;
     gap: 20px;
    
}

.extracted-style-41 {
    font-size: 17px;
     font-weight: 800;
     color: #2A2822;
     margin-bottom: 6px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-42 {
    font-size: 14px;
     line-height: 1.55;
     color: #635E54;
    
}

.extracted-style-43 {
    display: flex;
     gap: 20px;
     background-color: #FAF6F0;
     padding: 16px 20px;
     border-radius: 12px;
     border-left: 3px solid #334DCF;
    
}

.extracted-style-44 {
    color: #334DCF;
    
}

.extracted-style-45 {
    font-size: 16px;
     font-weight: 800;
     color: #2A2822;
     margin-bottom: 4px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-46 {
    font-size: 14px;
     line-height: 1.55;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-47 {
    background: #334DCF !important;
     background-color: #334DCF !important;
     padding: 100px 24px;
     text-align: center;
     color: #ffffff;
     border-top: none;
     border-bottom: none;
    
}

.extracted-style-48 {
    max-width: 1000px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 24px;
    
}

.extracted-style-49 {
    width: 48px;
     height: auto;
     filter: brightness(0) invert(1);
     margin-bottom: 8px;
    
}

.extracted-style-50 {
    font-family: 'Outfit', sans-serif;
     font-size: clamp(28px, 4vw, 40px) !important;
     font-weight: 700;
     line-height: 1.3;
     color: #ffffff;
     margin: 0;
     max-width: 900px;
     letter-spacing: -0.02em;
    
}

.extracted-style-51 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-52 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-53 {
    max-width: 900px;
     margin: 0 auto;
     border: 1px solid #E2DED4;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    
}

.extracted-style-54 {
    display: flex;
     flex-wrap: wrap;
     background-color: #FAF6F0;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-55 {
    flex: 1;
     min-width: 150px;
     padding: 16px;
     background: none;
     border: none;
     border-bottom: 3px solid #334DCF;
     font-family: 'Saans', sans-serif;
     font-weight: 700;
     font-size: 15px;
     color: #334DCF;
     cursor: pointer;
     transition: all 0.2s;
    
}

.extracted-style-56 {
    flex: 1;
     min-width: 150px;
     padding: 16px;
     background: none;
     border: none;
     border-bottom: 3px solid transparent;
     font-family: 'Saans', sans-serif;
     font-weight: 600;
     font-size: 15px;
     color: #635E54;
     cursor: pointer;
     transition: all 0.2s;
    
}

.extracted-style-57 {
    padding: 40px 32px;
     background-color: #ffffff;
    
}

.extracted-style-58 {
    display: block;
     animation: fadeIn 0.3s ease-in-out;
    
}

.extracted-style-59 {
    font-size: 22px;
     font-weight: 700;
     color: #2A2822;
     margin-bottom: 16px;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-60 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 24px;
    
}

.extracted-style-61 {
    font-size: 14px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 8px;
    
}

.extracted-style-62 {
    display: none;
     animation: fadeIn 0.3s ease-in-out;
    
}

.extracted-style-63 {
    padding: 80px 24px;
     background-color: #FAF6F0;
    
}

.extracted-style-64 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-65 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 32px;
    
}

.extracted-style-66 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: center;
    
}

.extracted-style-67 {
    width: 100%;
     max-width: 100%;
    
}

.extracted-style-68 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0,0,0,0.05);
     border: 1px solid #E2DED4;
     width: 100%;
    
}

.extracted-style-69 {
    width: 100% !important;
     height: auto !important;
     display: block;
    
}

.extracted-style-70 {
    font-size: 28px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
     margin-bottom: 16px;
     line-height: 1.25;
    
}

.extracted-style-71 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 20px;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px;
     margin-top: 24px;
    
}

.extracted-style-73 {
    border-left: 3px solid #334DCF;
     padding-left: 12px;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
    
}

.extracted-style-74 {
    margin: 0;
     font-size: 14.5px;
     line-height: 1.4;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-75 {
    margin: 4px 0 0 0;
     font-size: 13.5px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-76 {
    background-color: #FAF6F0;
     padding: 0;
     text-align: center;
     line-height: 0;
    
}

.extracted-style-77 {
    max-width: 100%;
     width: 100%;
     margin: 0;
     padding: 0;
     position: relative;
    
}

.extracted-style-78 {
    width: 100%;
     height: auto;
     aspect-ratio: 16/9;
     object-fit: cover;
     object-position: center 35%;
     border-radius: 0;
     box-shadow: none;
     display: block;
    
}

.extracted-style-79 {
    position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     padding: 24px;
     box-sizing: border-box;
    
}

.extracted-style-80 {
    background: rgba(255, 255, 255, 0.95);
     padding: 32px;
     border-radius: 16px;
     max-width: 400px;
     text-align: left;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     margin-right: 5%;
    
}

.extracted-style-81 {
    font-family: 'Outfit', sans-serif;
     font-size: 20px;
     font-weight: 700;
     color: #2A2822;
     margin: 0 0 12px 0;
     line-height: 1.35;
    
}

.extracted-style-82 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-83 {
    font-size: 32px;
     font-weight: 400;
     color: #2A2822;
     font-family: 'Saans', sans-serif;
     margin-bottom: 12px;
    
}

.extracted-style-84 {
    font-size: 20px;
     font-weight: 700;
     color: #2A2822;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-85 {
    margin-top: 12px;
     margin-bottom: 20px;
    
}

.extracted-style-86 {
    font-size: 15px;
     font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-87 {
    font-size: 13px;
     color: #635E54;
     display: block;
     line-height: 1.5;
    
}

.extracted-style-88 {
    color: #334DCF;
     font-size: 36px;
     font-weight: 700;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-89 {
    font-size: 15px;
     font-weight: normal;
     color: #9ca3af
}

.extracted-style-90 {
    position: relative;
     border-color: #334DCF;
     overflow: visible !important
}

.extracted-style-91 {
    background: #334DCF;
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     padding: 6px 14px;
     border-radius: 20px;
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     letter-spacing: 0.05em;
     z-index: 10;
     white-space: nowrap
}

.extracted-style-92 {
    text-align: center;
     margin-top: 32px;
     font-size: 14px;
     color: #8a8a93;
     font-weight: 300
}

.extracted-style-93 {
    background-color: #FAF6F0;
     padding: 80px 24px;
     border-top: none;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-94 {
    max-width: 1100px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 40px;
    
}

.extracted-style-95 {
    text-align: center;
     padding: 0 40px;
    
}

.extracted-style-96 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
     margin-bottom: 12px;
     margin-top: 12px;
    
}

.extracted-style-97 {
    display: inline-block;
     background-color: #F8D7DA;
     color: #721C24;
     font-size: 13px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 4px;
     margin-bottom: 8px;
    
}

.extracted-style-98 {
    padding: 80px 24px;
    
}

.extracted-style-99 {
    max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 64px;
     align-items: center;
    
}

.extracted-style-100 {
    width: 100%;
     height: auto;
     border-radius: 20px;
    
}

.extracted-style-101 {
    color: #ffffff;
    
}

.extracted-style-102 {
    font-size: 28px;
     font-weight: 800;
     font-family: 'Outfit', sans-serif;
     margin-bottom: 12px;
     color: #ffffff;
    
}

.extracted-style-103 {
    font-size: 15px;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 28px;
    
}

.extracted-style-104 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-105 {
    display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
    
}

.extracted-style-106 {
    display: block;
     font-size: 13px;
     font-weight: 600;
     color: #ffffff;
     margin-bottom: 8px;
    
}

.extracted-style-107 {
    width: 100%;
     padding: 12px 16px;
     border-radius: 12px;
     border: 1.5px solid rgba(255,255,255,0.2);
     background: rgba(255,255,255,0.08);
     color: #ffffff;
     font-family: inherit;
     font-size: 14px;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.85);
     cursor: pointer;
    
}

.extracted-style-109 {
    accent-color: #334DCF;
    
}

.extracted-style-110 {
    color: #ffffff;
     text-decoration: underline;
     font-weight: 600;
    
}

.extracted-style-111 {
    display: none;
     background-color: rgba(255,0,0,0.1);
     border-left: 4px solid #ff4d4d;
     color: #ff9999;
     padding: 12px;
     border-radius: 8px;
     font-size: 13px;
    
}

.extracted-style-112 {
    display: none;
     background-color: rgba(0,255,0,0.1);
     border-left: 4px solid #2ecc71;
     color: #a3e4d7;
     padding: 12px;
     border-radius: 8px;
     font-size: 13px;
    
}

.extracted-style-113 {
    border: none;
     padding: 15px;
     border-radius: 100px;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     text-align: center;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
    
}

.extracted-style-114 {
    display: inline-block;
     vertical-align: middle;
    
}

.extracted-style-115 {
    padding: 80px 24px;
     background-color: #ffffff;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-116 {
    margin-top: 24px;
     display: flex;
     justify-content: center;
    
}

.extracted-style-117 {
    display: inline-flex;
     background: #FAF6F0;
     padding: 4px;
     border-radius: 100px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-118 {
    border: none;
     padding: 8px 20px;
     font-size: 14px;
     font-weight: 700;
     border-radius: 100px;
     cursor: pointer;
     transition: all 0.2s ease;
    
}

.extracted-style-119 {
    display: none
}

.extracted-style-120 {
    background-color: #FAF6F0;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-121 {
    max-width: 800px;
     margin: 0 auto;
    
}

.extracted-style-122 {
    font-size: 30px;
     font-weight: 800;
     color: #2A2822;
     text-align: center;
     margin-bottom: 40px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-123 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-124 {
    margin: 0;
     font-family: 'Outfit', sans-serif;
     font-weight: 750;
     color: #2A2822;
    
}

.extracted-style-125 {
    background-color: #334DCF;
     padding: 100px 24px;
     margin-top: 0;
     margin-bottom: 0;
     color: #ffffff;
     text-align: center;
    
}

.extracted-style-126 {
    max-width: 900px;
     margin: 0 auto;
    
}

.extracted-style-127 {
    font-family: 'Outfit', sans-serif;
     font-size: 36px;
     font-weight: 800;
     margin: 0 0 16px 0;
     color: #ffffff;
     line-height: 1.25;
    
}

.extracted-style-128 {
    font-size: 18px;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.85);
     max-width: 600px;
     margin: 0 auto 40px auto;
     font-weight: 400;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-129 {
    display: flex;
     gap: 16px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
    
}

.extracted-style-130 {
    background-color: #ffffff !important;
     color: #334DCF !important;
     padding: 16px 32px;
     font-size: 16px;
     font-weight: 700;
     border-radius: 12px;
     text-decoration: none;
     display: inline-block;
     border: none;
    
}

.extracted-style-131 {
    background-color: rgba(255,255,255,0.1) !important;
     color: #ffffff !important;
     border: 1px solid rgba(255,255,255,0.3) !important;
     padding: 15px 32px;
     font-size: 16px;
     font-weight: 700;
     border-radius: 12px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
    
}

/* Extracted from <style> block */

@keyframes fadeIn {
                from { opacity: 0; transform: translateY(10px); }
                to { opacity: 1; transform: translateY(0); }
            }
            @media (max-width: 600px) {
                .etapas-tabs {
                    flex-direction: column;
                }
                .etapa-tab {
                    border-bottom: 1px solid #E2DED4 !important;
                    border-left: 3px solid transparent;
                    text-align: left;
                }
                .etapa-tab.active {
                    border-left: 3px solid #334DCF !important;
                    border-bottom: 1px solid #E2DED4 !important;
                }
            }

/* Extracted from <style> block */

.card-desglose-precio .card-price, 
                .card-desglose-precio .block-price {
                    display: flex !important;
                    flex-direction: column !important;
                    align-items: flex-start !important;
                }
                .card-desglose-precio .contenedor-price {
                    display: block !important;
                    width: 100% !important;
                    text-align: left !important;
                }
/* EXTRACTED FROM page-senda-para-hombres.php */
.extracted-style-1 {
    grid-column: 1 / -1 !important;
     width: 100% !important;
     margin: 0;
     padding: 0;
     overflow-x: hidden;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
    
}

.extracted-style-2 {
    display: flex;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
    
}

.extracted-style-3 {
    margin-left: 6px;
     display: inline-block;
     vertical-align: middle;
    
}

.extracted-style-4 {
    display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
    
}

.extracted-style-5 {
    margin-top: 4px;
    
}

.extracted-style-6 {
    background-color: #FFFDF9;
     border-top: none !important;
     border-bottom: 1px solid #E2DED4;
     padding: 24px 0;
     margin-top: 0;
     margin-bottom: 0;
    
}

.extracted-style-7 {
    margin-bottom: 12px;
     font-size: 11px;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: #8a8a93;
     font-weight: 700;
    
}

.extracted-style-8 {
    background-color: #979082;
    
}

.extracted-style-9 {
    background-color: #6EA3C0;
    
}

.extracted-style-10 {
    background-color: #CDA674;
    
}

.extracted-style-11 {
    background-color: #ffffff;
     padding: 60px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-12 {
    max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     text-align: center;
    
}

.extracted-style-13 {
    display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
    
}

.extracted-style-14 {
    font-size: 48px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-15 {
    font-size: 16px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-16 {
    font-size: 13.5px;
     color: #635E54;
     line-height: 1.5;
     max-width: 280px;
    
}

.extracted-style-17 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-18 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-19 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-20 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-21 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-22 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-23 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-24 {
    font-size: 18px;
     font-weight: 750;
     color: #2A2822;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-25 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-26 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-27 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-28 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-29 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-30 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-31 {
    background: #FFC043;
     color: #2A2822;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-32 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-33 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-34 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-35 {
    font-size: 28px;
     font-weight: 800;
     color: #2A2822;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-36 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-37 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-38 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-39 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
     transition: all 0.3s ease;
    
}

.extracted-style-40 {
    margin-bottom: 16px;
    
}

.extracted-style-41 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #2A2822;
    
}

.extracted-style-42 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-43 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #000000;
     font-style: italic;
    
}

.extracted-style-44 {
    max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-45 {
    display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 48px;
    
}

.extracted-style-46 {
    color: #334DCF;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     font-size: 13px;
    
}

.extracted-style-47 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
     line-height: 1.25;
    
}

.extracted-style-48 {
    position: relative;
    
}

.extracted-style-49 {
    display: flex;
     flex-direction: column;
     gap: 32px;
    
}

.extracted-style-50 {
    display: flex;
     gap: 20px;
    
}

.extracted-style-51 {
    font-size: 17px;
     font-weight: 800;
     color: #2A2822;
     margin-bottom: 6px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-52 {
    font-size: 14px;
     line-height: 1.55;
     color: #635E54;
    
}

.extracted-style-53 {
    display: flex;
     gap: 20px;
     background-color: #FAF6F0;
     padding: 16px 20px;
     border-radius: 12px;
     border-left: 3px solid #334DCF;
    
}

.extracted-style-54 {
    color: #334DCF;
    
}

.extracted-style-55 {
    font-size: 16px;
     font-weight: 800;
     color: #2A2822;
     margin-bottom: 4px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-56 {
    font-size: 14px;
     line-height: 1.55;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-57 {
    background: #334DCF !important;
     background-color: #334DCF !important;
     padding: 100px 24px;
     text-align: center;
     color: #ffffff;
     border-top: none;
     border-bottom: none;
    
}

.extracted-style-58 {
    max-width: 1000px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 24px;
    
}

.extracted-style-59 {
    width: 48px;
     height: auto;
     filter: brightness(0) invert(1);
     margin-bottom: 8px;
    
}

.extracted-style-60 {
    font-family: 'Outfit', sans-serif;
     font-size: clamp(28px, 4vw, 40px) !important;
     font-weight: 700;
     line-height: 1.3;
     color: #ffffff;
     margin: 0;
     max-width: 900px;
     letter-spacing: -0.02em;
    
}

.extracted-style-61 {
    padding: 80px 24px;
     background-color: #FAF6F0;
    
}

.extracted-style-62 {
    color: #2A2822;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     font-size: 13px;
    
}

.extracted-style-63 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-64 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 32px;
    
}

.extracted-style-65 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: center;
    
}

.extracted-style-66 {
    width: 100%;
     max-width: 100%;
    
}

.extracted-style-67 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0,0,0,0.05);
     border: 1px solid #E2DED4;
     width: 100%;
    
}

.extracted-style-68 {
    width: 100% !important;
     height: auto !important;
     display: block;
    
}

.extracted-style-69 {
    font-size: 28px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
     margin-bottom: 16px;
     line-height: 1.25;
    
}

.extracted-style-70 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 20px;
    
}

.extracted-style-71 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px;
     margin-top: 24px;
    
}

.extracted-style-72 {
    border-left: 3px solid #334DCF;
     padding-left: 12px;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
    
}

.extracted-style-73 {
    margin: 0;
     font-size: 14.5px;
     line-height: 1.4;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-74 {
    margin: 4px 0 0 0;
     font-size: 13.5px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-75 {
    background-color: #FAF6F0;
     padding: 0;
     text-align: center;
     line-height: 0;
    
}

.extracted-style-76 {
    max-width: 100%;
     width: 100%;
     margin: 0;
     padding: 0;
     position: relative;
    
}

.extracted-style-77 {
    width: 100%;
     height: auto;
     aspect-ratio: 16/9;
     object-fit: cover;
     object-position: center 30%;
     border-radius: 0;
     box-shadow: none;
     display: block;
    
}

.extracted-style-78 {
    position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     padding: 24px;
     box-sizing: border-box;
    
}

.extracted-style-79 {
    background: rgba(255, 255, 255, 0.95);
     padding: 32px;
     border-radius: 16px;
     max-width: 400px;
     text-align: left;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     margin-right: 5%;
    
}

.extracted-style-80 {
    font-family: 'Outfit', sans-serif;
     font-size: 20px;
     font-weight: 700;
     color: #2A2822;
     margin: 0 0 12px 0;
     line-height: 1.35;
    
}

.extracted-style-81 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-82 {
    font-size: 32px;
     font-weight: 400;
     color: #2A2822;
     font-family: 'Saans', sans-serif;
     margin-bottom: 12px;
    
}

.extracted-style-83 {
    font-size: 20px;
     font-weight: 700;
     color: #2A2822;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-84 {
    margin-top: 12px;
     margin-bottom: 20px;
    
}

.extracted-style-85 {
    font-size: 15px;
     font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-86 {
    font-size: 13px;
     color: #635E54;
     display: block;
     line-height: 1.5;
    
}

.extracted-style-87 {
    color: #334DCF;
     font-size: 36px;
     font-weight: 700;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-88 {
    font-size: 15px;
     font-weight: normal;
     color: #9ca3af
}

.extracted-style-89 {
    position: relative;
     border-color: #334DCF;
     overflow: visible !important
}

.extracted-style-90 {
    background: #334DCF;
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     padding: 6px 14px;
     border-radius: 20px;
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     letter-spacing: 0.05em;
     z-index: 10;
     white-space: nowrap
}

.extracted-style-91 {
    text-align: center;
     margin-top: 32px;
     font-size: 14px;
     color: #8a8a93;
     font-weight: 300
}

.extracted-style-92 {
    background-color: #FAF6F0;
     padding: 80px 24px;
     border-top: none;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-93 {
    max-width: 1100px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 40px;
    
}

.extracted-style-94 {
    text-align: center;
     padding: 0 40px;
    
}

.extracted-style-95 {
    font-size: 32px;
     font-weight: 800;
     color: #2A2822;
     font-family: 'Outfit', sans-serif;
     margin-bottom: 12px;
     margin-top: 12px;
    
}

.extracted-style-96 {
    display: inline-block;
     background-color: #F8D7DA;
     color: #721C24;
     font-size: 13px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 4px;
     margin-bottom: 8px;
    
}

.extracted-style-97 {
    padding: 80px 24px;
    
}

.extracted-style-98 {
    max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 64px;
     align-items: center;
    
}

.extracted-style-99 {
    width: 100%;
     height: auto;
     border-radius: 20px;
    
}

.extracted-style-100 {
    color: #ffffff;
    
}

.extracted-style-101 {
    font-size: 28px;
     font-weight: 800;
     font-family: 'Outfit', sans-serif;
     margin-bottom: 12px;
     color: #ffffff;
    
}

.extracted-style-102 {
    font-size: 15px;
     color: rgba(255, 255, 255, 0.85);
     margin-bottom: 28px;
    
}

.extracted-style-103 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-104 {
    display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
    
}

.extracted-style-105 {
    display: block;
     font-size: 13px;
     font-weight: 600;
     color: #ffffff;
     margin-bottom: 8px;
    
}

.extracted-style-106 {
    width: 100%;
     padding: 12px 16px;
     border-radius: 12px;
     border: 1.5px solid rgba(255,255,255,0.2);
     background: rgba(255,255,255,0.08);
     color: #ffffff;
     font-family: inherit;
     font-size: 14px;
     box-sizing: border-box;
    
}

.extracted-style-107 {
    display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.85);
     cursor: pointer;
    
}

.extracted-style-108 {
    accent-color: #334DCF;
    
}

.extracted-style-109 {
    color: #ffffff;
     text-decoration: underline;
     font-weight: 600;
    
}

.extracted-style-110 {
    display: none;
     background-color: rgba(255,0,0,0.1);
     border-left: 4px solid #ff4d4d;
     color: #ff9999;
     padding: 12px;
     border-radius: 8px;
     font-size: 13px;
    
}

.extracted-style-111 {
    display: none;
     background-color: rgba(0,255,0,0.1);
     border-left: 4px solid #2ecc71;
     color: #a3e4d7;
     padding: 12px;
     border-radius: 8px;
     font-size: 13px;
    
}

.extracted-style-112 {
    border: none;
     padding: 15px;
     border-radius: 100px;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     text-align: center;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
    
}

.extracted-style-113 {
    display: inline-block;
     vertical-align: middle;
    
}

.extracted-style-114 {
    padding: 80px 24px;
     background-color: #ffffff;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-115 {
    margin-top: 24px;
     display: flex;
     justify-content: center;
    
}

.extracted-style-116 {
    display: inline-flex;
     background: #FAF6F0;
     padding: 4px;
     border-radius: 100px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-117 {
    border: none;
     padding: 8px 20px;
     font-size: 14px;
     font-weight: 700;
     border-radius: 100px;
     cursor: pointer;
     transition: all 0.2s ease;
    
}

.extracted-style-118 {
    display: none
}

.extracted-style-119 {
    background-color: #FAF6F0;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-120 {
    max-width: 800px;
     margin: 0 auto;
    
}

.extracted-style-121 {
    font-size: 30px;
     font-weight: 800;
     color: #2A2822;
     text-align: center;
     margin-bottom: 40px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-123 {
    margin: 0;
     font-family: 'Outfit', sans-serif;
     font-weight: 750;
     color: #2A2822;
    
}

.extracted-style-124 {
    background-color: #334DCF;
     padding: 100px 24px;
     margin-top: 0;
     margin-bottom: 0;
     color: #ffffff;
     text-align: center;
    
}

.extracted-style-125 {
    max-width: 900px;
     margin: 0 auto;
    
}

.extracted-style-126 {
    font-family: 'Outfit', sans-serif;
     font-size: 36px;
     font-weight: 800;
     margin: 0 0 16px 0;
     color: #ffffff;
     line-height: 1.25;
    
}

.extracted-style-127 {
    font-size: 18px;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.85);
     max-width: 600px;
     margin: 0 auto 40px auto;
     font-weight: 400;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-128 {
    display: flex;
     gap: 16px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
    
}

.extracted-style-129 {
    background-color: #ffffff !important;
     color: #334DCF !important;
     padding: 16px 32px;
     font-size: 16px;
     font-weight: 700;
     border-radius: 12px;
     text-decoration: none;
     display: inline-block;
     border: none;
    
}

.extracted-style-130 {
    background-color: rgba(255,255,255,0.1) !important;
     color: #ffffff !important;
     border: 1px solid rgba(255,255,255,0.3) !important;
     padding: 15px 32px;
     font-size: 16px;
     font-weight: 700;
     border-radius: 12px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
    
}

/* Extracted from <style> block */

.card-desglose-precio .card-price, 
                .card-desglose-precio .block-price {
                    display: flex !important;
                    flex-direction: column !important;
                    align-items: flex-start !important;
                }
                .card-desglose-precio .contenedor-price {
                    display: block !important;
                    width: 100% !important;
                    text-align: left !important;
                }
/* EXTRACTED FROM page-contacto.php */
.extracted-style-1 {
    margin-top: 32px;
    
}

.extracted-style-2 {
    text-decoration: none;
    
}

.extracted-style-3 {
    resize: vertical;
    
}

.extracted-style-4 {
    text-align: left;
     margin-bottom: 16px;
    
}

.extracted-style-5 {
    display: flex;
     align-items: flex-start;
     gap: 8px;
     cursor: pointer;
    
}

.extracted-style-6 {
    margin-top: 4px;
     accent-color: #334DCF;
    
}

.extracted-style-7 {
    display: flex;
     align-items: flex-start;
     gap: 8px;
     cursor: pointer;
     margin-top: 10px;
    
}

.extracted-style-8 {
    width:100%;
     padding: 15px;
     font-size:16px;
     justify-content:center;
     display:flex;
     margin-top: 16px;
    
}

.extracted-style-9 {
    justify-content: center;
     gap: 24px;
    
}

/* Extracted from <style> block */

html body {
            background-color: #FAF6F0 !important;
            font-family: "Saans", "Saans", sans-serif;
            color: #2A2822;
        }



        .main-clean {
            grid-column: 1 / -1;
            flex-grow: 1;
            padding: 120px 24px 60px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #FAF6F0;
        }

        .clean-container {
            max-width: 1100px;
            width: 100%;
            box-sizing: border-box;
        }

        /* Responsive Columns Grid */
        .te-llamamos-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 48px;
            align-items: start;
        }

        @media (max-width: 900px) {
            .te-llamamos-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }

        /* Info Column */
        .info-program-card {
            padding: 12px 0;
        }

        .info-badge {
            font-size: 15px;
            font-weight: 500;
            color: #334DCF;
            text-transform: none;
            letter-spacing: normal;
            margin-bottom: 8px;
            display: block;
        }

        .info-program-card h2 {
            font-size: 32px;
            font-weight: 800;
            color: #2A2822;
            margin: 0 0 16px 0;
            font-family: 'Saans', sans-serif;
            line-height: 1.25;
        }

        .info-description {
            font-size: 16px;
            line-height: 1.6;
            color: #635E54;
            margin: 0 0 32px 0;
        }

        .puntos-fuertes {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .punto-item {
            display: flex;
            gap: 16px;
            align-items: start;
        }

        .punto-icon {
            font-size: 24px;
            background: #ffffff;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(42, 40, 34, 0.03);
            border: 1px solid #E2DED4;
            flex-shrink: 0;
        }

        .punto-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: #2A2822;
            margin: 0 0 4px 0;
            line-height: 1.3;
        }

        .punto-text p {
            font-size: 14px;
            line-height: 1.5;
            color: #635E54;
            margin: 0;
        }

        /* Form Card */
        .call-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px 32px;
            box-shadow: 0 10px 30px rgba(42, 40, 34, 0.04);
            border: 1px solid #E2DED4;
        }

        .call-card h3.form-title {
            font-size: 24px;
            font-weight: 800;
            color: #2A2822;
            margin: 0 0 8px 0;
            font-family: 'Saans', sans-serif;
            line-height: 1.2;
        }

        .call-card p.form-subtitle {
            font-size: 14px;
            line-height: 1.5;
            color: #635E54;
            margin: 0 0 24px 0;
        }

        .form-error {
            background-color: #FBD0D0;
            border-left: 4px solid #E61E1E;
            color: #A81C1C;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #2A2822;
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            font-size: 15px;
            border-radius: 12px;
            border: 1.5px solid #E2DED4;
            background-color: #ffffff;
            font-family: inherit;
            color: #2A2822;
            box-sizing: border-box;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-control:focus {
            border-color: #334DCF;
            outline: none;
            box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.12);
        }

        .form-control::placeholder {
            color: #B8B5AE;
        }

        .optional-badge {
            font-size: 11px;
            color: #938F88;
            font-weight: 400;
            margin-left: 4px;
        }

        /* Choice options */
        .option-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }

        .option-box {
            position: relative;
        }

        .option-box input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .option-label {
            display: block;
            padding: 14px 12px;
            border: 1.5px solid #E2DED4;
            border-radius: 12px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #635E54;
            cursor: pointer;
            transition: all 0.2s ease;
            background-color: #ffffff;
            user-select: none;
        }

        .option-box input[type="radio"]:checked + .option-label {
            border-color: #334DCF;
            color: #334DCF;
            background-color: rgba(51, 77, 207, 0.04);
            box-shadow: 0 2px 8px rgba(51, 77, 207, 0.08);
        }

        .option-label:hover {
            background-color: #F5F3EF;
        }

        /* Schedule Details */
        .schedule-details {
            background-color: #F5F3EF;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            display: none;
            border: 1px solid #E2DED4;
            animation: slideDown 0.25s ease-out;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 12px;
        }

        

        

        .consent-text {
            font-size: 12px;
            line-height: 1.4;
            color: #7F786C;
            margin-top: 16px;
            text-align: center;
        }

        .consent-text a {
            color: #334DCF;
            text-decoration: none;
        }

        .trust-badges {
            display: flex;
            justify-content: space-between;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #FAF6F0;
        }

        .trust-badge-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #7F786C;
            font-weight: 500;
        }

        .trust-badge-item span.icon {
            color: #334DCF;
            font-size: 14px;
        }

        /* Direct Checkout Option */
        .direct-start-block {
            margin-top: 28px;
            text-align: center;
            border-top: 1px solid #f0ede6;
            padding-top: 20px;
        }

        .direct-start-block p {
            font-size: 13px;
            color: #7F786C;
            margin: 0 0 6px 0;
            font-weight: 500;
        }

        .btn-direct-start {
            font-size: 14px;
            font-weight: 700;
            color: #334DCF;
            text-decoration: none;
            transition: color 0.2s ease;
            display: inline-block;
        }

        .btn-direct-start:hover {
            color: #0E0E90;
            text-decoration: underline;
        }



        .form-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .phone-group {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 8px;
        }

        @media (max-width: 768px) {
            .option-selector {
                grid-template-columns: 1fr;
            }
            .schedule-grid {
                grid-template-columns: 1fr;
            }
            .form-grid-2 {
                grid-template-columns: 1fr;
            }
        }
/* EXTRACTED FROM page-preguntas-frecuentes.php */
.extracted-style-1 {
    padding-bottom: 80px;
     background-color: #FAF6F0;
     min-height: 80vh;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-2 {
    max-width: 800px;
     margin: 0 auto 48px auto;
     text-align: center;
     padding: 0 24px;
    
}

.extracted-style-3 {
    color: #1D1B16 !important;
     font-family: 'Outfit', sans-serif;
     font-size: clamp(34px, 4vw, 48px);
     font-weight: 800;
     line-height: 1.15;
     margin-bottom: 24px;
     margin-top: 0;
    
}

.extracted-style-4 {
    font-size: 16px;
     line-height: 1.6;
     color: var(--wp--preset--color--neutral-700);
     max-width: 600px;
     margin: 0 auto 36px auto;
    
}

.extracted-style-5 {
    max-width: 600px;
     margin: 0 auto;
     position: relative;
    
}

.extracted-style-6 {
    width: 100%;
     padding: 16px 20px 16px 48px;
     border-radius: 100px;
     border: 1px solid var(--wp--preset--color--neutral-300);
     background-color: #ffffff;
     font-size: 16px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.02);
     transition: all 0.2s ease;
     margin-top: 0;
     box-sizing: border-box;
    
}

.extracted-style-7 {
    position: absolute;
     left: 18px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--wp--preset--color--neutral-500);
     pointer-events: none;
    
}

.extracted-style-8 {
    max-width: 1150px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 40px;
     padding: 0 24px;
     box-sizing: border-box;
    
}

.extracted-style-9 {
    position: sticky;
     top: 120px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-10 {
    display: none;
     text-align: center;
     padding: 48px;
     background: #ffffff;
     border-radius: 16px;
     color: var(--wp--preset--color--neutral-600);
     font-weight: 500;
     border: 1px solid var(--wp--preset--color--neutral-200);
    
}

.extracted-style-11 {
    display: flex;
     flex-direction: column;
     gap: 12px;
    
}

/* Extracted from <style> block */

/* FAQ Custom Styles */
.main-faq {
    margin-top: 184px;
}
@media (max-width: 920px) {
    .main-faq {
        margin-top: 124px;
    }
}
body.page-template-page-preguntas-frecuentes {
    background-color: #FAF6F0 !important;
}
.faq-category-btn {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--wp--preset--color--neutral-600);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}
.faq-category-btn:hover {
    background-color: rgba(51, 77, 207, 0.04);
    color: var(--wp--preset--color--primary-100);
}
.faq-category-btn.active {
    background-color: rgba(51, 77, 207, 0.08);
    color: var(--wp--preset--color--primary-100);
    padding-left: 22px;
    position: relative;
}
.faq-category-btn.active::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: var(--wp--preset--color--primary-100);
    border-radius: 2px;
}
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-group-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--wp--preset--color--neutral-900);
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    border-bottom: 2px solid var(--wp--preset--color--neutral-200);
    padding-bottom: 8px;
}
.faq-group:first-child .faq-group-title {
    margin-top: 0;
}
.faq-search-wrapper input:focus {
    outline: none;
    border-color: var(--wp--preset--color--primary-100) !important;
    box-shadow: 0 8px 30px rgba(51, 77, 207, 0.06) !important;
}
@media (max-width: 820px) {
    .faq-layout-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .faq-sidebar {
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .faq-categories-list {
        position: static !important;
        flex-direction: row !important;
        white-space: nowrap;
        gap: 8px !important;
    }
    .faq-category-btn {
        width: auto !important;
        padding: 10px 16px !important;
        font-size: 14px !important;
    }
    .faq-category-btn.active::before {
        display: none;
    }
    .faq-category-btn.active {
        background-color: var(--wp--preset--color--primary-100) !important;
        color: #ffffff !important;
        padding-left: 16px !important;
    }
}
/* EXTRACTED FROM single.php */
.extracted-style-1 {
    margin-top: 0;
    
}

.extracted-style-2 {
    margin-bottom: 32px;
    
}

.extracted-style-3 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     border-radius: 12px;
     padding: 24px;
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-4 {
    display: flex;
     align-items: flex-start;
     gap: 20px;
    
}

.extracted-style-5 {
    flex-grow: 1;
    
}

.extracted-style-6 {
    margin: 0 0 6px 0;
     line-height: 1.4;
    
}

.extracted-style-7 {
    font-size: 13px;
     color: #635E54;
     display: block;
    
}

.extracted-style-8 {
    font-weight: 400;
     color: #635E54;
     font-size: 13px;
     display: block;
     margin-top: 2px;
    
}

.extracted-style-9 {
    display: flex;
     gap: 16px;
     align-items: center;
     flex-wrap: wrap;
    
}

.extracted-style-10 {
    margin: 0;
     color: #A09B8E;
     font-size: 13.5px;
    
}

.extracted-style-11 {
    margin: 0;
     color: #A09B8E;
     font-size: 13.5px;
     border-left: 1px solid #E2DED4;
     padding-left: 16px;
    
}

.extracted-style-12 {
    vertical-align: text-bottom;
     margin-right: 4px;
    
}

.extracted-style-13 {
    position: relative;
    
}

.extracted-style-14 {
    display: flex;
     align-items: center;
     gap: 8px;
     padding: 6px 12px;
     font-size: 13px;
     background: #fff;
     border: 1px solid #E2DED4;
     border-radius: 8px;
    
}

.extracted-style-15 {
    top: calc(100% + 4px);
     right: 0;
    
}

.extracted-style-16 {
    width:100%;
     text-align:left;
     background:none;
     border:none;
     cursor:pointer;
    
}

.extracted-style-17 {
    margin: 24px 0 36px 0;
    
}

.extracted-style-18 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     border-radius: 16px;
     padding: 40px;
     margin-top: 64px;
     display: flex;
     gap: 32px;
     align-items: flex-start;
     flex-wrap: wrap;
     box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    
}

.extracted-style-19 {
    flex-shrink: 0;
     position: relative;
    
}

.extracted-style-20 {
    flex: 1 1 300px;
    
}

.extracted-style-21 {
    display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     margin-bottom: 12px;
    
}

.extracted-style-22 {
    margin: 0;
     font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
    
}

.extracted-style-23 {
    font-size: 14px;
     color: #635E54;
     margin: 0 0 16px 0;
     font-weight: 500;
    
}

.extracted-style-24 {
    margin: 0;
     font-size: 16px;
     color: #4a5568;
     line-height: 1.6;
    
}

.extracted-style-25 {
    margin-top: 64px;
     border-top: 1px solid var(--wp--preset--color--neutral-200);
     padding-top: 48px;
     width: 100%;
    
}

.extracted-style-26 {
    font-family: 'Outfit', sans-serif;
     font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 32px;
     text-align: left;
    
}

.extracted-style-27 {
    width: 100%;
    
}

/* Extracted from <style> block */

.contenedor-post {
                max-width: var(--wp--custom--layout--desktop-width) !important;
            }

/* Extracted from <style> block */

@media (max-width: 920px) {
                body.single-post #site-header {
                    position: sticky !important;
                    top: 0;
                    z-index: 9999;
                    background: rgba(255, 255, 255, 0.95) !important;
                    backdrop-filter: blur(10px) !important;
                    -webkit-backdrop-filter: blur(10px) !important;
                    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
                }
                body.single-post #site-header .inner-header-general {
                    background: transparent !important;
                }
                body.single-post .portada2-sticky-menu {
                    display: none !important;
                }
                body.single-post {
                    padding-top: 0 !important;
                }
                .single-post .contenedor-post {
                    margin-top: 0 !important;
                }
            }

/* Extracted from <style> block */

/* ACTUALIDAD CARDS (BLOG POSTS) */
                .actualidad-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 32px;
                }
                .actualidad-card {
                    background: #ffffff;
                    border: 1px solid #E2DED4;
                    border-radius: 20px;
                    padding: 32px;
                    box-shadow: 0 10px 30px rgba(42, 40, 34, 0.02);
                    display: flex;
                    flex-direction: column;
                    transition: all 0.3s ease;
                    box-sizing: border-box;
                }
                .actualidad-card:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 15px 40px rgba(14, 14, 144, 0.05);
                    border-color: #C5CDEE;
                }
                .card-meta {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 20px;
                }
                .card-badge {
                    font-size: 11px;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.05em;
                    padding: 4px 10px;
                    border-radius: 6px;
                }
                .badge-blog {
                    background-color: #E2DED4;
                    color: #635E54;
                }
                .badge-podcast {
                    background-color: #E8F4F8;
                    color: #334DCF;
                }
                .badge-newsletter {
                    background-color: #F8EEF8;
                    color: #334DCF;
                }
                .card-date {
                    font-size: 12px;
                    color: #A09B8E;
                    font-weight: 400;
                }
                .actualidad-card .card-title {
                    font-family: 'Saans', sans-serif;
                    font-size: 20px;
                    font-weight: 700;
                    color: #2A2822;
                    line-height: 1.3;
                    margin: 0 0 12px 0;
                    min-height: 52px;
                }
                .actualidad-card .card-excerpt {
                    font-family: 'Saans', sans-serif;
                    font-size: 14px;
                    color: #635E54;
                    line-height: 1.6;
                    margin: 0 0 24px 0;
                    flex-grow: 1;
                }
                .card-footer {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border-top: 1px dashed #E2DED4;
                    padding-top: 20px;
                    margin-top: auto;
                }
                .card-category {
                    font-size: 13px;
                    font-weight: 600;
                    color: #A09B8E;
                }
                .card-action-link {
                    font-family: 'Saans', sans-serif;
                    font-size: 14.5px;
                    font-weight: 700;
                    color: #334DCF;
                    text-decoration: none;
                    display: inline-flex;
                    align-items: center;
                    gap: 6px;
                    transition: color 0.2s ease;
                }
                .card-action-link:hover {
                    color: #2A2822;
                }
                .card-action-link svg {
                    transition: transform 0.2s ease;
                }
                .card-action-link:hover svg {
                    transform: translateX(4px);
                }
                @media (max-width: 991px) {
                    .actualidad-grid {
                        grid-template-columns: 1fr;
                        gap: 24px;
                        padding: 0 16px;
                    }
                    .actualidad-card .card-title {
                        min-height: auto;
                    }
                }
/* EXTRACTED FROM 404.php */
.extracted-style-1 {
    padding: 140px 24px 80px 24px;
     background-color: #ffffff;
    
}

.extracted-style-2 {
    align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 64px;
    
}

.extracted-style-3 {
    font-size: clamp(80px, 10vw, 120px);
     font-weight: 900;
     line-height: 1;
     color: #334DCF;
     margin-bottom: 16px;
     font-family: 'Saans', sans-serif;
     letter-spacing: -2px;
    
}

.extracted-style-4 {
    margin-bottom: 24px;
     font-size: 48px;
     line-height: 1.1;
     color: #1f2937;
     font-weight: 800;
     font-family: 'Saans', sans-serif;
    
}

.extracted-style-5 {
    margin-bottom: 32px;
     font-size: 18px;
     line-height: 1.5;
     color: #4b5563;
    
}

.extracted-style-6 {
    margin-bottom: 32px;
     font-style: italic;
     color: #6b7280;
     font-size: 16px;
     line-height: 1.6;
     border-left: 3px solid #E2DED4;
     padding-left: 16px;
    
}

.extracted-style-7 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-8 {
    padding: 14px 28px;
     border-radius: 12px;
    
}

.extracted-style-9 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    
}

/* Extracted from <style> block */

@media (max-width: 991px) {
    .block-hero {
        padding-top: 180px !important;
    }
    .block-hero .inner-hero {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .hero-title {
        font-size: 36px !important;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}

/* EXTRACTIONS PHASE 2 */

/* EXTRACTED FROM page-apnea-del-sueno-y-obesidad.php */
.extracted-style-1 {
    grid-column: 1 / -1;
     width: 100%;
     margin-top: 100px;
     padding-bottom: 0;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
     overflow-x: hidden;
    
}

.extracted-style-2 {
    width: 100%;
     max-width: none;
     background-color: #ffffff;
     padding: 80px 0;
     border-bottom: 1px solid #E2DED4;
     box-sizing: border-box;
     margin: 0;
    
}

.extracted-style-3 {
    max-width: 1300px;
     margin: 0 auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 64px;
     align-items: center;
     box-sizing: border-box;
    
}

.extracted-style-4 {
    background-color: rgba(51, 77, 207, 0.1);
     color: #334DCF;
     padding: 6px 12px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 18px;
    
}

.extracted-style-5 {
    font-size: 40px;
     line-height: 1.15;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 20px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-6 {
    font-size: 18px;
     line-height: 1.55;
     color: #635E54;
     margin: 0 0 24px 0;
    
}

.extracted-style-7 {
    display: flex;
     align-items: center;
     gap: 16px;
     background: #FAF6F0;
     padding: 16px 20px;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     margin-bottom: 32px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    
}

.extracted-style-8 {
    font-size: 28px;
     filter: grayscale(0.2);
    
}

.extracted-style-9 {
    font-size: 13px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-10 {
    font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 2px;
    
}

.extracted-style-11 {
    display: flex;
     flex-wrap: wrap;
     gap: 16px;
    
}

.extracted-style-12 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
     transition: transform 0.2s ease, background-color 0.2s ease;
    
}

.extracted-style-13 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: 1.5px solid #E2DED4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
    
}

.extracted-style-14 {
    position: relative;
     text-align: center;
     width: 100%;
    
}

.extracted-style-15 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
     border: 6px solid #ffffff;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-16 {
    width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     max-height: 550px;
    
}

.extracted-style-17 {
    position: absolute;
     bottom: 20px;
     right: -10px;
     background: #FFC043;
     color: #0E0E90;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
}

.extracted-style-18 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-22 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-23 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-24 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-25 {
    font-size: 18px;
     font-weight: 750;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-26 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-27 {
    background: #F4EFE6;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     margin-bottom: 48px;
    
}

.extracted-style-28 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
     text-align: center;
    
}

.extracted-style-29 {
    display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     text-align: center;
    
}

.extracted-style-30 {
    border-right: 1px solid #E2DED4;
     padding-right: 12px;
    
}

.extracted-style-31 {
    font-weight: 800;
     color: #334DCF;
     display: block;
     margin-bottom: 6px;
     font-size: 15px;
    
}

.extracted-style-32 {
    font-size: 13px;
     color: #635E54;
     line-height: 1.5;
     margin: 0;
    
}

.extracted-style-33 {
    border-right: 1px solid #E2DED4;
     padding: 0 12px;
    
}

.extracted-style-34 {
    padding-left: 12px;
    
}

.extracted-style-35 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-36 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-37 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-38 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-39 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-40 {
    background: #FFC043;
     color: #0E0E90;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-41 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-42 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-43 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-44 {
    font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-45 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-46 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-47 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-48 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-49 {
    font-size: 36px;
     margin-bottom: 16px;
    
}

.extracted-style-50 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
    
}

.extracted-style-51 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-52 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #8C877D;
     font-style: italic;
    
}

.extracted-style-53 {
    background-color: #F4EFE6;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-54 {
    max-width: 960px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-55 {
    text-align: center;
    
}

.extracted-style-56 {
    font-size: 72px;
     margin-bottom: 16px;
    
}

.extracted-style-57 {
    font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-58 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-59 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-60 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-61 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-62 {
    background: #ffffff;
     color: #334DCF;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     border: 1px solid #E2DED4;
     flex-shrink: 0;
    
}

.extracted-style-63 {
    color: #0E0E90;
     font-size: 15px;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-64 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.5;
    
}

.extracted-style-65 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-66 {
    text-align: center;
     margin-bottom: 56px;
    
}

.extracted-style-67 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
    
}

.extracted-style-68 {
    background-color: #FAF6F0;
     padding: 24px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-69 {
    font-size: 24px;
     margin-bottom: 12px;
    
}

.extracted-style-70 {
    font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     margin: 0 0 8px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-71 {
    padding: 80px 24px;
     max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
    
}

.extracted-style-73 {
    background-color: #ffffff;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-74 {
    font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #334DCF;
     margin-bottom: 12px;
     display: inline-block;
    
}

.extracted-style-75 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-76 {
    background: #0E0E90;
     color: #ffffff;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 13px;
     flex-shrink: 0;
    
}

.extracted-style-77 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.4;
    
}

.extracted-style-78 {
    color: #2A2822;
    
}

.extracted-style-79 {
    font-size: 22px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-80 {
    background-color: #F4EFE6;
     padding: 24px;
     border-radius: 16px;
     border-left: 4px solid #334DCF;
     margin-bottom: 32px;
    
}

.extracted-style-81 {
    margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: #2A2822;
     font-weight: 600;
    
}

.extracted-style-82 {
    display: block;
     font-size: 12px;
     color: #8C877D;
     margin-top: 8px;
     font-weight: 700;
    
}

.extracted-style-83 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
    
}

.extracted-style-84 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-85 {
    font-size: 16px;
     color: #635E54;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-86 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     padding: 40px;
     border-radius: 24px;
     position: relative;
     margin-bottom: 48px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    
}

.extracted-style-87 {
    font-size: 48px;
     color: #334DCF;
     position: absolute;
     top: 15px;
     left: 30px;
     line-height: 1;
     opacity: 0.15;
     font-family: serif;
    
}

.extracted-style-88 {
    margin: 0;
     padding: 0;
     font-size: 16px;
     line-height: 1.65;
     color: #2A2822;
     font-style: italic;
     position: relative;
     z-index: 2;
    
}

.extracted-style-89 {
    margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
    
}

.extracted-style-90 {
    background-color: #0E0E90;
     color: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-91 {
    font-weight: 700;
     color: #0E0E90;
     font-style: normal;
     display: block;
     font-size: 14px;
    
}

.extracted-style-92 {
    font-size: 12px;
     color: #635E54;
    
}

.extracted-style-93 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     text-align: center;
    
}

.extracted-style-94 {
    border-right: 1px solid #E2DED4;
     padding: 12px;
    
}

.extracted-style-95 {
    font-size: 36px;
     font-weight: 800;
     color: #0E0E90;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-96 {
    font-size: 13px;
     color: #635E54;
     display: block;
     margin-top: 4px;
    
}

.extracted-style-97 {
    padding: 12px;
    
}

.extracted-style-98 {
    font-size: 36px;
     font-weight: 800;
     color: #334DCF;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-99 {
    padding: 80px 24px;
     max-width: 850px;
     margin: 0 auto;
    
}

.extracted-style-100 {
    font-size: 15px;
     color: #635E54;
    
}

.extracted-style-101 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-102 {
    background-color: #ffffff;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     overflow: hidden;
     transition: all 0.2s ease;
    
}

.extracted-style-103 {
    width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 24px;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Outfit', sans-serif;
     outline: none;
    
}

.extracted-style-104 {
    font-size: 18px;
     color: #334DCF;
     font-weight: bold;
     transition: transform 0.2s ease;
    
}

.extracted-style-105 {
    max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     padding: 0 24px;
    
}

.extracted-style-106 {
    margin: 0 0 20px 0;
     font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
    
}

.extracted-style-107 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 96px 24px;
     border-top: 1px solid rgba(255,255,255,0.1);
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    max-width: 1000px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     position: relative;
     z-index: 5;
    
}

.extracted-style-109 {
    font-size: 32px;
     font-weight: 800;
     color: #ffffff;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
     line-height: 1.3;
    
}

.extracted-style-110 {
    font-size: 15px;
     line-height: 1.6;
     color: rgba(255,255,255,0.85);
     margin-bottom: 28px;
    
}

.extracted-style-111 {
    margin-bottom: 32px;
    
}

.extracted-style-112 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
    
}

.extracted-style-113 {
    display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 13.5px;
     color: rgba(255,255,255,0.85);
    
}

.extracted-style-114 {
    display: flex;
     gap: 8px;
     align-items: center;
    
}

.extracted-style-115 {
    color: #FFC043;
     font-weight: bold;
    
}

.extracted-style-116 {
    background-color: #ffffff;
     color: #2A2822;
     padding: 36px;
     border-radius: 24px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
}

.extracted-style-117 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 8px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-118 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0 0 20px 0;
     line-height: 1.5;
    
}

.extracted-style-119 {
    display: none;
     background-color: #FBD0D0;
     border-left: 4px solid #E61E1E;
     color: #A81C1C;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-120 {
    display: none;
     background-color: #D4EDDA;
     border-left: 4px solid #28A745;
     color: #155724;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-121 {
    display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 20px;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 6px;
    
}

.extracted-style-123 {
    font-size: 13px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-124 {
    width: 100%;
     padding: 12px;
     font-size: 14.5px;
     border-radius: 8px;
     border: 1.5px solid #E2DED4;
     box-sizing: border-box;
     font-family: inherit;
    
}

.extracted-style-125 {
    margin-bottom: 20px;
    
}

.extracted-style-126 {
    display: flex;
     gap: 8px;
     align-items: flex-start;
     font-size: 12.5px;
     line-height: 1.4;
     color: #635E54;
     cursor: pointer;
    
}

.extracted-style-127 {
    margin-top: 3px;
    
}

.extracted-style-128 {
    color: #0E0E90;
     text-decoration: underline;
    
}

.extracted-style-129 {
    width: 100%;
     background-color: #334DCF;
     color: #ffffff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 750;
     cursor: pointer;
     transition: background-color 0.2s ease;
     font-family: inherit;
     margin-bottom: 20px;
    
}

.extracted-style-130 {
    font-size: 10.5px;
     color: #8C877D;
     line-height: 1.45;
     text-align: left;
     background: #FAF6F0;
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-131 {
    margin-top: 0;
     margin-bottom: 6px;
     font-weight: bold;
     color: #2A2822;
    
}

.extracted-style-132 {
    margin: 0;
     padding-left: 0;
     list-style-type: none;
     display: flex;
     flex-direction: column;
     gap: 3px;
    
}

/* Extracted from <style> block */

/* Landing Hover/Micro-interactions */
.cta-btn-primary:hover {
    background-color: #0b0a5c !important;
    transform: translateY(-2px);
}
.cta-btn-closing:hover {
    background-color: #FAF6F0 !important;
    color: #0E0E90 !important;
    transform: translateY(-2px);
}
.cta-btn-secondary:hover {
    background-color: #FAF6F0 !important;
}
.faq-item-wrapper:hover {
    border-color: #334DCF !important;
}
.menopausia-cta-closing input:focus {
    border-color: #334DCF !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.15);
}
#native-te-llamamos-form button:hover {
    background-color: #d8713d !important;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .menopausia-hero {
        grid-template-columns: 1fr !important;
        padding: 40px 16px !important;
        gap: 32px !important;
        text-align: center;
    }
    .hero-text-side h1 {
        font-size: 30px !important;
    }
    .medical-signature {
        flex-direction: column !important;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .science-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .timeline-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }
    .timeline-steps-grid > div {
        border-right: none !important;
        border-bottom: 1px solid #E2DED4;
        padding: 0 0 16px 0 !important;
    }
    .timeline-steps-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .menopausia-preventive > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-diet-failures > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-how-senda > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .menopausia-cta-closing > div {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}
/* EXTRACTED FROM page-diabetes-y-obesidad.php */
.extracted-style-1 {
    grid-column: 1 / -1;
     width: 100%;
     margin-top: 100px;
     padding-bottom: 0;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
     overflow-x: hidden;
    
}

.extracted-style-2 {
    width: 100%;
     max-width: none;
     background-color: #ffffff;
     padding: 80px 0;
     border-bottom: 1px solid #E2DED4;
     box-sizing: border-box;
     margin: 0;
    
}

.extracted-style-3 {
    max-width: 1300px;
     margin: 0 auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 64px;
     align-items: center;
     box-sizing: border-box;
    
}

.extracted-style-4 {
    background-color: rgba(51, 77, 207, 0.1);
     color: #334DCF;
     padding: 6px 12px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 18px;
    
}

.extracted-style-5 {
    font-size: 40px;
     line-height: 1.15;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 20px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-6 {
    font-size: 18px;
     line-height: 1.55;
     color: #635E54;
     margin: 0 0 24px 0;
    
}

.extracted-style-7 {
    display: flex;
     align-items: center;
     gap: 16px;
     background: #FAF6F0;
     padding: 16px 20px;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     margin-bottom: 32px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    
}

.extracted-style-8 {
    font-size: 28px;
     filter: grayscale(0.2);
    
}

.extracted-style-9 {
    font-size: 13px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-10 {
    font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 2px;
    
}

.extracted-style-11 {
    display: flex;
     flex-wrap: wrap;
     gap: 16px;
    
}

.extracted-style-12 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
     transition: transform 0.2s ease, background-color 0.2s ease;
    
}

.extracted-style-13 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: 1.5px solid #E2DED4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
    
}

.extracted-style-14 {
    position: relative;
     text-align: center;
     width: 100%;
    
}

.extracted-style-15 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
     border: 6px solid #ffffff;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-16 {
    width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     max-height: 550px;
    
}

.extracted-style-17 {
    position: absolute;
     bottom: 20px;
     right: -10px;
     background: #FFC043;
     color: #0E0E90;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
}

.extracted-style-18 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-22 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-23 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-24 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-25 {
    font-size: 18px;
     font-weight: 750;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-26 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-27 {
    background: #F4EFE6;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     margin-bottom: 48px;
    
}

.extracted-style-28 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
     text-align: center;
    
}

.extracted-style-29 {
    display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     text-align: center;
    
}

.extracted-style-30 {
    border-right: 1px solid #E2DED4;
     padding-right: 12px;
    
}

.extracted-style-31 {
    font-weight: 800;
     color: #334DCF;
     display: block;
     margin-bottom: 6px;
     font-size: 15px;
    
}

.extracted-style-32 {
    font-size: 13px;
     color: #635E54;
     line-height: 1.5;
     margin: 0;
    
}

.extracted-style-33 {
    border-right: 1px solid #E2DED4;
     padding: 0 12px;
    
}

.extracted-style-34 {
    padding-left: 12px;
    
}

.extracted-style-35 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-36 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-37 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-38 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-39 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-40 {
    background: #FFC043;
     color: #0E0E90;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-41 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-42 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-43 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-44 {
    font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-45 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-46 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-47 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-48 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-49 {
    font-size: 36px;
     margin-bottom: 16px;
    
}

.extracted-style-50 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
    
}

.extracted-style-51 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-52 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #8C877D;
     font-style: italic;
    
}

.extracted-style-53 {
    background-color: #F4EFE6;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-54 {
    max-width: 960px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-55 {
    text-align: center;
    
}

.extracted-style-56 {
    font-size: 72px;
     margin-bottom: 16px;
    
}

.extracted-style-57 {
    font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-58 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-59 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-60 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-61 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-62 {
    background: #ffffff;
     color: #334DCF;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     border: 1px solid #E2DED4;
     flex-shrink: 0;
    
}

.extracted-style-63 {
    color: #0E0E90;
     font-size: 15px;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-64 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.5;
    
}

.extracted-style-65 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-66 {
    text-align: center;
     margin-bottom: 56px;
    
}

.extracted-style-67 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
    
}

.extracted-style-68 {
    background-color: #FAF6F0;
     padding: 24px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-69 {
    font-size: 24px;
     margin-bottom: 12px;
    
}

.extracted-style-70 {
    font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     margin: 0 0 8px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-71 {
    padding: 80px 24px;
     max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
    
}

.extracted-style-73 {
    background-color: #ffffff;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-74 {
    font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #334DCF;
     margin-bottom: 12px;
     display: inline-block;
    
}

.extracted-style-75 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-76 {
    background: #0E0E90;
     color: #ffffff;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 13px;
     flex-shrink: 0;
    
}

.extracted-style-77 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.4;
    
}

.extracted-style-78 {
    color: #2A2822;
    
}

.extracted-style-79 {
    font-size: 22px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-80 {
    background-color: #F4EFE6;
     padding: 24px;
     border-radius: 16px;
     border-left: 4px solid #334DCF;
     margin-bottom: 32px;
    
}

.extracted-style-81 {
    margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: #2A2822;
     font-weight: 600;
    
}

.extracted-style-82 {
    display: block;
     font-size: 12px;
     color: #8C877D;
     margin-top: 8px;
     font-weight: 700;
    
}

.extracted-style-83 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
    
}

.extracted-style-84 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-85 {
    font-size: 16px;
     color: #635E54;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-86 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     padding: 40px;
     border-radius: 24px;
     position: relative;
     margin-bottom: 48px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    
}

.extracted-style-87 {
    font-size: 48px;
     color: #334DCF;
     position: absolute;
     top: 15px;
     left: 30px;
     line-height: 1;
     opacity: 0.15;
     font-family: serif;
    
}

.extracted-style-88 {
    margin: 0;
     padding: 0;
     font-size: 16px;
     line-height: 1.65;
     color: #2A2822;
     font-style: italic;
     position: relative;
     z-index: 2;
    
}

.extracted-style-89 {
    margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
    
}

.extracted-style-90 {
    background-color: #0E0E90;
     color: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-91 {
    font-weight: 700;
     color: #0E0E90;
     font-style: normal;
     display: block;
     font-size: 14px;
    
}

.extracted-style-92 {
    font-size: 12px;
     color: #635E54;
    
}

.extracted-style-93 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     text-align: center;
    
}

.extracted-style-94 {
    border-right: 1px solid #E2DED4;
     padding: 12px;
    
}

.extracted-style-95 {
    font-size: 36px;
     font-weight: 800;
     color: #0E0E90;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-96 {
    font-size: 13px;
     color: #635E54;
     display: block;
     margin-top: 4px;
    
}

.extracted-style-97 {
    padding: 12px;
    
}

.extracted-style-98 {
    font-size: 36px;
     font-weight: 800;
     color: #334DCF;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-99 {
    padding: 80px 24px;
     max-width: 850px;
     margin: 0 auto;
    
}

.extracted-style-100 {
    font-size: 15px;
     color: #635E54;
    
}

.extracted-style-101 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-102 {
    background-color: #ffffff;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     overflow: hidden;
     transition: all 0.2s ease;
    
}

.extracted-style-103 {
    width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 24px;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Outfit', sans-serif;
     outline: none;
    
}

.extracted-style-104 {
    font-size: 18px;
     color: #334DCF;
     font-weight: bold;
     transition: transform 0.2s ease;
    
}

.extracted-style-105 {
    max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     padding: 0 24px;
    
}

.extracted-style-106 {
    margin: 0 0 20px 0;
     font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
    
}

.extracted-style-107 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 96px 24px;
     border-top: 1px solid rgba(255,255,255,0.1);
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    max-width: 1000px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     position: relative;
     z-index: 5;
    
}

.extracted-style-109 {
    font-size: 32px;
     font-weight: 800;
     color: #ffffff;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
     line-height: 1.3;
    
}

.extracted-style-110 {
    font-size: 15px;
     line-height: 1.6;
     color: rgba(255,255,255,0.85);
     margin-bottom: 28px;
    
}

.extracted-style-111 {
    margin-bottom: 32px;
    
}

.extracted-style-112 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
    
}

.extracted-style-113 {
    display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 13.5px;
     color: rgba(255,255,255,0.85);
    
}

.extracted-style-114 {
    display: flex;
     gap: 8px;
     align-items: center;
    
}

.extracted-style-115 {
    color: #FFC043;
     font-weight: bold;
    
}

.extracted-style-116 {
    background-color: #ffffff;
     color: #2A2822;
     padding: 36px;
     border-radius: 24px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
}

.extracted-style-117 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 8px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-118 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0 0 20px 0;
     line-height: 1.5;
    
}

.extracted-style-119 {
    display: none;
     background-color: #FBD0D0;
     border-left: 4px solid #E61E1E;
     color: #A81C1C;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-120 {
    display: none;
     background-color: #D4EDDA;
     border-left: 4px solid #28A745;
     color: #155724;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-121 {
    display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 20px;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 6px;
    
}

.extracted-style-123 {
    font-size: 13px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-124 {
    width: 100%;
     padding: 12px;
     font-size: 14.5px;
     border-radius: 8px;
     border: 1.5px solid #E2DED4;
     box-sizing: border-box;
     font-family: inherit;
    
}

.extracted-style-125 {
    margin-bottom: 20px;
    
}

.extracted-style-126 {
    display: flex;
     gap: 8px;
     align-items: flex-start;
     font-size: 12.5px;
     line-height: 1.4;
     color: #635E54;
     cursor: pointer;
    
}

.extracted-style-127 {
    margin-top: 3px;
    
}

.extracted-style-128 {
    color: #0E0E90;
     text-decoration: underline;
    
}

.extracted-style-129 {
    width: 100%;
     background-color: #334DCF;
     color: #ffffff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 750;
     cursor: pointer;
     transition: background-color 0.2s ease;
     font-family: inherit;
     margin-bottom: 20px;
    
}

.extracted-style-130 {
    font-size: 10.5px;
     color: #8C877D;
     line-height: 1.45;
     text-align: left;
     background: #FAF6F0;
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-131 {
    margin-top: 0;
     margin-bottom: 6px;
     font-weight: bold;
     color: #2A2822;
    
}

.extracted-style-132 {
    margin: 0;
     padding-left: 0;
     list-style-type: none;
     display: flex;
     flex-direction: column;
     gap: 3px;
    
}

/* Extracted from <style> block */

/* Landing Hover/Micro-interactions */
.cta-btn-primary:hover {
    background-color: #0b0a5c !important;
    transform: translateY(-2px);
}
.cta-btn-closing:hover {
    background-color: #FAF6F0 !important;
    color: #0E0E90 !important;
    transform: translateY(-2px);
}
.cta-btn-secondary:hover {
    background-color: #FAF6F0 !important;
}
.faq-item-wrapper:hover {
    border-color: #334DCF !important;
}
.menopausia-cta-closing input:focus {
    border-color: #334DCF !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.15);
}
#native-te-llamamos-form button:hover {
    background-color: #d8713d !important;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .menopausia-hero {
        grid-template-columns: 1fr !important;
        padding: 40px 16px !important;
        gap: 32px !important;
        text-align: center;
    }
    .hero-text-side h1 {
        font-size: 30px !important;
    }
    .medical-signature {
        flex-direction: column !important;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .science-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .timeline-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }
    .timeline-steps-grid > div {
        border-right: none !important;
        border-bottom: 1px solid #E2DED4;
        padding: 0 0 16px 0 !important;
    }
    .timeline-steps-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .menopausia-preventive > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-diet-failures > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-how-senda > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .menopausia-cta-closing > div {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}
/* EXTRACTED FROM page-dolor-articular-y-obesidad.php */
.extracted-style-1 {
    grid-column: 1 / -1;
     width: 100%;
     margin-top: 100px;
     padding-bottom: 0;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
     overflow-x: hidden;
    
}

.extracted-style-2 {
    width: 100%;
     max-width: none;
     background-color: #ffffff;
     padding: 80px 0;
     border-bottom: 1px solid #E2DED4;
     box-sizing: border-box;
     margin: 0;
    
}

.extracted-style-3 {
    max-width: 1300px;
     margin: 0 auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 64px;
     align-items: center;
     box-sizing: border-box;
    
}

.extracted-style-4 {
    background-color: rgba(51, 77, 207, 0.1);
     color: #334DCF;
     padding: 6px 12px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 18px;
    
}

.extracted-style-5 {
    font-size: 40px;
     line-height: 1.15;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 20px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-6 {
    font-size: 18px;
     line-height: 1.55;
     color: #635E54;
     margin: 0 0 24px 0;
    
}

.extracted-style-7 {
    display: flex;
     align-items: center;
     gap: 16px;
     background: #FAF6F0;
     padding: 16px 20px;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     margin-bottom: 32px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    
}

.extracted-style-8 {
    font-size: 28px;
     filter: grayscale(0.2);
    
}

.extracted-style-9 {
    font-size: 13px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-10 {
    font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 2px;
    
}

.extracted-style-11 {
    display: flex;
     flex-wrap: wrap;
     gap: 16px;
    
}

.extracted-style-12 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
     transition: transform 0.2s ease, background-color 0.2s ease;
    
}

.extracted-style-13 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: 1.5px solid #E2DED4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
    
}

.extracted-style-14 {
    position: relative;
     text-align: center;
     width: 100%;
    
}

.extracted-style-15 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
     border: 6px solid #ffffff;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-16 {
    width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     max-height: 550px;
    
}

.extracted-style-17 {
    position: absolute;
     bottom: 20px;
     right: -10px;
     background: #FFC043;
     color: #0E0E90;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
}

.extracted-style-18 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-22 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-23 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-24 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-25 {
    font-size: 18px;
     font-weight: 750;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-26 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-27 {
    background: #F4EFE6;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     margin-bottom: 48px;
    
}

.extracted-style-28 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
     text-align: center;
    
}

.extracted-style-29 {
    display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     text-align: center;
    
}

.extracted-style-30 {
    border-right: 1px solid #E2DED4;
     padding-right: 12px;
    
}

.extracted-style-31 {
    font-weight: 800;
     color: #334DCF;
     display: block;
     margin-bottom: 6px;
     font-size: 15px;
    
}

.extracted-style-32 {
    font-size: 13px;
     color: #635E54;
     line-height: 1.5;
     margin: 0;
    
}

.extracted-style-33 {
    border-right: 1px solid #E2DED4;
     padding: 0 12px;
    
}

.extracted-style-34 {
    padding-left: 12px;
    
}

.extracted-style-35 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-36 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-37 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-38 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-39 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-40 {
    background: #FFC043;
     color: #0E0E90;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-41 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-42 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-43 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-44 {
    font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-45 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-46 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-47 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-48 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-49 {
    font-size: 36px;
     margin-bottom: 16px;
    
}

.extracted-style-50 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
    
}

.extracted-style-51 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-52 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #8C877D;
     font-style: italic;
    
}

.extracted-style-53 {
    background-color: #F4EFE6;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-54 {
    max-width: 960px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-55 {
    text-align: center;
    
}

.extracted-style-56 {
    font-size: 72px;
     margin-bottom: 16px;
    
}

.extracted-style-57 {
    font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-58 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-59 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-60 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-61 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-62 {
    background: #ffffff;
     color: #334DCF;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     border: 1px solid #E2DED4;
     flex-shrink: 0;
    
}

.extracted-style-63 {
    color: #0E0E90;
     font-size: 15px;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-64 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.5;
    
}

.extracted-style-65 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-66 {
    text-align: center;
     margin-bottom: 56px;
    
}

.extracted-style-67 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
    
}

.extracted-style-68 {
    background-color: #FAF6F0;
     padding: 24px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-69 {
    font-size: 24px;
     margin-bottom: 12px;
    
}

.extracted-style-70 {
    font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     margin: 0 0 8px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-71 {
    padding: 80px 24px;
     max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
    
}

.extracted-style-73 {
    background-color: #ffffff;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-74 {
    font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #334DCF;
     margin-bottom: 12px;
     display: inline-block;
    
}

.extracted-style-75 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-76 {
    background: #0E0E90;
     color: #ffffff;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 13px;
     flex-shrink: 0;
    
}

.extracted-style-77 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.4;
    
}

.extracted-style-78 {
    color: #2A2822;
    
}

.extracted-style-79 {
    font-size: 22px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-80 {
    background-color: #F4EFE6;
     padding: 24px;
     border-radius: 16px;
     border-left: 4px solid #334DCF;
     margin-bottom: 32px;
    
}

.extracted-style-81 {
    margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: #2A2822;
     font-weight: 600;
    
}

.extracted-style-82 {
    display: block;
     font-size: 12px;
     color: #8C877D;
     margin-top: 8px;
     font-weight: 700;
    
}

.extracted-style-83 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
    
}

.extracted-style-84 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-85 {
    font-size: 16px;
     color: #635E54;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-86 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     padding: 40px;
     border-radius: 24px;
     position: relative;
     margin-bottom: 48px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    
}

.extracted-style-87 {
    font-size: 48px;
     color: #334DCF;
     position: absolute;
     top: 15px;
     left: 30px;
     line-height: 1;
     opacity: 0.15;
     font-family: serif;
    
}

.extracted-style-88 {
    margin: 0;
     padding: 0;
     font-size: 16px;
     line-height: 1.65;
     color: #2A2822;
     font-style: italic;
     position: relative;
     z-index: 2;
    
}

.extracted-style-89 {
    margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
    
}

.extracted-style-90 {
    background-color: #0E0E90;
     color: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-91 {
    font-weight: 700;
     color: #0E0E90;
     font-style: normal;
     display: block;
     font-size: 14px;
    
}

.extracted-style-92 {
    font-size: 12px;
     color: #635E54;
    
}

.extracted-style-93 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     text-align: center;
    
}

.extracted-style-94 {
    border-right: 1px solid #E2DED4;
     padding: 12px;
    
}

.extracted-style-95 {
    font-size: 36px;
     font-weight: 800;
     color: #0E0E90;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-96 {
    font-size: 13px;
     color: #635E54;
     display: block;
     margin-top: 4px;
    
}

.extracted-style-97 {
    padding: 12px;
    
}

.extracted-style-98 {
    font-size: 36px;
     font-weight: 800;
     color: #334DCF;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-99 {
    padding: 80px 24px;
     max-width: 850px;
     margin: 0 auto;
    
}

.extracted-style-100 {
    font-size: 15px;
     color: #635E54;
    
}

.extracted-style-101 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-102 {
    background-color: #ffffff;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     overflow: hidden;
     transition: all 0.2s ease;
    
}

.extracted-style-103 {
    width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 24px;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Outfit', sans-serif;
     outline: none;
    
}

.extracted-style-104 {
    font-size: 18px;
     color: #334DCF;
     font-weight: bold;
     transition: transform 0.2s ease;
    
}

.extracted-style-105 {
    max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     padding: 0 24px;
    
}

.extracted-style-106 {
    margin: 0 0 20px 0;
     font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
    
}

.extracted-style-107 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 96px 24px;
     border-top: 1px solid rgba(255,255,255,0.1);
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    max-width: 1000px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     position: relative;
     z-index: 5;
    
}

.extracted-style-109 {
    font-size: 32px;
     font-weight: 800;
     color: #ffffff;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
     line-height: 1.3;
    
}

.extracted-style-110 {
    font-size: 15px;
     line-height: 1.6;
     color: rgba(255,255,255,0.85);
     margin-bottom: 28px;
    
}

.extracted-style-111 {
    margin-bottom: 32px;
    
}

.extracted-style-112 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
    
}

.extracted-style-113 {
    display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 13.5px;
     color: rgba(255,255,255,0.85);
    
}

.extracted-style-114 {
    display: flex;
     gap: 8px;
     align-items: center;
    
}

.extracted-style-115 {
    color: #FFC043;
     font-weight: bold;
    
}

.extracted-style-116 {
    background-color: #ffffff;
     color: #2A2822;
     padding: 36px;
     border-radius: 24px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
}

.extracted-style-117 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 8px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-118 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0 0 20px 0;
     line-height: 1.5;
    
}

.extracted-style-119 {
    display: none;
     background-color: #FBD0D0;
     border-left: 4px solid #E61E1E;
     color: #A81C1C;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-120 {
    display: none;
     background-color: #D4EDDA;
     border-left: 4px solid #28A745;
     color: #155724;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-121 {
    display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 20px;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 6px;
    
}

.extracted-style-123 {
    font-size: 13px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-124 {
    width: 100%;
     padding: 12px;
     font-size: 14.5px;
     border-radius: 8px;
     border: 1.5px solid #E2DED4;
     box-sizing: border-box;
     font-family: inherit;
    
}

.extracted-style-125 {
    margin-bottom: 20px;
    
}

.extracted-style-126 {
    display: flex;
     gap: 8px;
     align-items: flex-start;
     font-size: 12.5px;
     line-height: 1.4;
     color: #635E54;
     cursor: pointer;
    
}

.extracted-style-127 {
    margin-top: 3px;
    
}

.extracted-style-128 {
    color: #0E0E90;
     text-decoration: underline;
    
}

.extracted-style-129 {
    width: 100%;
     background-color: #334DCF;
     color: #ffffff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 750;
     cursor: pointer;
     transition: background-color 0.2s ease;
     font-family: inherit;
     margin-bottom: 20px;
    
}

.extracted-style-130 {
    font-size: 10.5px;
     color: #8C877D;
     line-height: 1.45;
     text-align: left;
     background: #FAF6F0;
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-131 {
    margin-top: 0;
     margin-bottom: 6px;
     font-weight: bold;
     color: #2A2822;
    
}

.extracted-style-132 {
    margin: 0;
     padding-left: 0;
     list-style-type: none;
     display: flex;
     flex-direction: column;
     gap: 3px;
    
}

/* Extracted from <style> block */

/* Landing Hover/Micro-interactions */
.cta-btn-primary:hover {
    background-color: #0b0a5c !important;
    transform: translateY(-2px);
}
.cta-btn-closing:hover {
    background-color: #FAF6F0 !important;
    color: #0E0E90 !important;
    transform: translateY(-2px);
}
.cta-btn-secondary:hover {
    background-color: #FAF6F0 !important;
}
.faq-item-wrapper:hover {
    border-color: #334DCF !important;
}
.menopausia-cta-closing input:focus {
    border-color: #334DCF !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.15);
}
#native-te-llamamos-form button:hover {
    background-color: #d8713d !important;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .menopausia-hero {
        grid-template-columns: 1fr !important;
        padding: 40px 16px !important;
        gap: 32px !important;
        text-align: center;
    }
    .hero-text-side h1 {
        font-size: 30px !important;
    }
    .medical-signature {
        flex-direction: column !important;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .science-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .timeline-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }
    .timeline-steps-grid > div {
        border-right: none !important;
        border-bottom: 1px solid #E2DED4;
        padding: 0 0 16px 0 !important;
    }
    .timeline-steps-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .menopausia-preventive > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-diet-failures > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-how-senda > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .menopausia-cta-closing > div {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}
/* EXTRACTED FROM page-higado-graso-y-obesidad.php */
.extracted-style-1 {
    grid-column: 1 / -1;
     width: 100%;
     margin-top: 100px;
     padding-bottom: 0;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
     overflow-x: hidden;
    
}

.extracted-style-2 {
    width: 100%;
     max-width: none;
     background-color: #ffffff;
     padding: 80px 0;
     border-bottom: 1px solid #E2DED4;
     box-sizing: border-box;
     margin: 0;
    
}

.extracted-style-3 {
    max-width: 1300px;
     margin: 0 auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 64px;
     align-items: center;
     box-sizing: border-box;
    
}

.extracted-style-4 {
    background-color: rgba(51, 77, 207, 0.1);
     color: #334DCF;
     padding: 6px 12px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 18px;
    
}

.extracted-style-5 {
    font-size: 40px;
     line-height: 1.15;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 20px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-6 {
    font-size: 18px;
     line-height: 1.55;
     color: #635E54;
     margin: 0 0 24px 0;
    
}

.extracted-style-7 {
    display: flex;
     align-items: center;
     gap: 16px;
     background: #FAF6F0;
     padding: 16px 20px;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     margin-bottom: 32px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    
}

.extracted-style-8 {
    font-size: 28px;
     filter: grayscale(0.2);
    
}

.extracted-style-9 {
    font-size: 13px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-10 {
    font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 2px;
    
}

.extracted-style-11 {
    display: flex;
     flex-wrap: wrap;
     gap: 16px;
    
}

.extracted-style-12 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
     transition: transform 0.2s ease, background-color 0.2s ease;
    
}

.extracted-style-13 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: 1.5px solid #E2DED4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
    
}

.extracted-style-14 {
    position: relative;
     text-align: center;
     width: 100%;
    
}

.extracted-style-15 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
     border: 6px solid #ffffff;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-16 {
    width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     max-height: 550px;
    
}

.extracted-style-17 {
    position: absolute;
     bottom: 20px;
     right: -10px;
     background: #FFC043;
     color: #0E0E90;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
}

.extracted-style-18 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-22 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-23 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-24 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-25 {
    font-size: 18px;
     font-weight: 750;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-26 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-27 {
    background: #F4EFE6;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     margin-bottom: 48px;
    
}

.extracted-style-28 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
     text-align: center;
    
}

.extracted-style-29 {
    display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     text-align: center;
    
}

.extracted-style-30 {
    border-right: 1px solid #E2DED4;
     padding-right: 12px;
    
}

.extracted-style-31 {
    font-weight: 800;
     color: #334DCF;
     display: block;
     margin-bottom: 6px;
     font-size: 15px;
    
}

.extracted-style-32 {
    font-size: 13px;
     color: #635E54;
     line-height: 1.5;
     margin: 0;
    
}

.extracted-style-33 {
    border-right: 1px solid #E2DED4;
     padding: 0 12px;
    
}

.extracted-style-34 {
    padding-left: 12px;
    
}

.extracted-style-35 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-36 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-37 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-38 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-39 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-40 {
    background: #FFC043;
     color: #0E0E90;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-41 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-42 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-43 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-44 {
    font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-45 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-46 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-47 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-48 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-49 {
    font-size: 36px;
     margin-bottom: 16px;
    
}

.extracted-style-50 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
    
}

.extracted-style-51 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-52 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #8C877D;
     font-style: italic;
    
}

.extracted-style-53 {
    background-color: #F4EFE6;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-54 {
    max-width: 960px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-55 {
    text-align: center;
    
}

.extracted-style-56 {
    font-size: 72px;
     margin-bottom: 16px;
    
}

.extracted-style-57 {
    font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-58 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-59 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-60 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-61 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-62 {
    background: #ffffff;
     color: #334DCF;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     border: 1px solid #E2DED4;
     flex-shrink: 0;
    
}

.extracted-style-63 {
    color: #0E0E90;
     font-size: 15px;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-64 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.5;
    
}

.extracted-style-65 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-66 {
    text-align: center;
     margin-bottom: 56px;
    
}

.extracted-style-67 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
    
}

.extracted-style-68 {
    background-color: #FAF6F0;
     padding: 24px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-69 {
    font-size: 24px;
     margin-bottom: 12px;
    
}

.extracted-style-70 {
    font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     margin: 0 0 8px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-71 {
    padding: 80px 24px;
     max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
    
}

.extracted-style-73 {
    background-color: #ffffff;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-74 {
    font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #334DCF;
     margin-bottom: 12px;
     display: inline-block;
    
}

.extracted-style-75 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-76 {
    background: #0E0E90;
     color: #ffffff;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 13px;
     flex-shrink: 0;
    
}

.extracted-style-77 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.4;
    
}

.extracted-style-78 {
    color: #2A2822;
    
}

.extracted-style-79 {
    font-size: 22px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-80 {
    background-color: #F4EFE6;
     padding: 24px;
     border-radius: 16px;
     border-left: 4px solid #334DCF;
     margin-bottom: 32px;
    
}

.extracted-style-81 {
    margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: #2A2822;
     font-weight: 600;
    
}

.extracted-style-82 {
    display: block;
     font-size: 12px;
     color: #8C877D;
     margin-top: 8px;
     font-weight: 700;
    
}

.extracted-style-83 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
    
}

.extracted-style-84 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-85 {
    font-size: 16px;
     color: #635E54;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-86 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     padding: 40px;
     border-radius: 24px;
     position: relative;
     margin-bottom: 48px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    
}

.extracted-style-87 {
    font-size: 48px;
     color: #334DCF;
     position: absolute;
     top: 15px;
     left: 30px;
     line-height: 1;
     opacity: 0.15;
     font-family: serif;
    
}

.extracted-style-88 {
    margin: 0;
     padding: 0;
     font-size: 16px;
     line-height: 1.65;
     color: #2A2822;
     font-style: italic;
     position: relative;
     z-index: 2;
    
}

.extracted-style-89 {
    margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
    
}

.extracted-style-90 {
    background-color: #0E0E90;
     color: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-91 {
    font-weight: 700;
     color: #0E0E90;
     font-style: normal;
     display: block;
     font-size: 14px;
    
}

.extracted-style-92 {
    font-size: 12px;
     color: #635E54;
    
}

.extracted-style-93 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     text-align: center;
    
}

.extracted-style-94 {
    border-right: 1px solid #E2DED4;
     padding: 12px;
    
}

.extracted-style-95 {
    font-size: 36px;
     font-weight: 800;
     color: #0E0E90;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-96 {
    font-size: 13px;
     color: #635E54;
     display: block;
     margin-top: 4px;
    
}

.extracted-style-97 {
    padding: 12px;
    
}

.extracted-style-98 {
    font-size: 36px;
     font-weight: 800;
     color: #334DCF;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-99 {
    padding: 80px 24px;
     max-width: 850px;
     margin: 0 auto;
    
}

.extracted-style-100 {
    font-size: 15px;
     color: #635E54;
    
}

.extracted-style-101 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-102 {
    background-color: #ffffff;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     overflow: hidden;
     transition: all 0.2s ease;
    
}

.extracted-style-103 {
    width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 24px;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Outfit', sans-serif;
     outline: none;
    
}

.extracted-style-104 {
    font-size: 18px;
     color: #334DCF;
     font-weight: bold;
     transition: transform 0.2s ease;
    
}

.extracted-style-105 {
    max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     padding: 0 24px;
    
}

.extracted-style-106 {
    margin: 0 0 20px 0;
     font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
    
}

.extracted-style-107 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 96px 24px;
     border-top: 1px solid rgba(255,255,255,0.1);
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    max-width: 1000px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     position: relative;
     z-index: 5;
    
}

.extracted-style-109 {
    font-size: 32px;
     font-weight: 800;
     color: #ffffff;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
     line-height: 1.3;
    
}

.extracted-style-110 {
    font-size: 15px;
     line-height: 1.6;
     color: rgba(255,255,255,0.85);
     margin-bottom: 28px;
    
}

.extracted-style-111 {
    margin-bottom: 32px;
    
}

.extracted-style-112 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
    
}

.extracted-style-113 {
    display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 13.5px;
     color: rgba(255,255,255,0.85);
    
}

.extracted-style-114 {
    display: flex;
     gap: 8px;
     align-items: center;
    
}

.extracted-style-115 {
    color: #FFC043;
     font-weight: bold;
    
}

.extracted-style-116 {
    background-color: #ffffff;
     color: #2A2822;
     padding: 36px;
     border-radius: 24px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
}

.extracted-style-117 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 8px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-118 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0 0 20px 0;
     line-height: 1.5;
    
}

.extracted-style-119 {
    display: none;
     background-color: #FBD0D0;
     border-left: 4px solid #E61E1E;
     color: #A81C1C;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-120 {
    display: none;
     background-color: #D4EDDA;
     border-left: 4px solid #28A745;
     color: #155724;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-121 {
    display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 20px;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 6px;
    
}

.extracted-style-123 {
    font-size: 13px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-124 {
    width: 100%;
     padding: 12px;
     font-size: 14.5px;
     border-radius: 8px;
     border: 1.5px solid #E2DED4;
     box-sizing: border-box;
     font-family: inherit;
    
}

.extracted-style-125 {
    margin-bottom: 20px;
    
}

.extracted-style-126 {
    display: flex;
     gap: 8px;
     align-items: flex-start;
     font-size: 12.5px;
     line-height: 1.4;
     color: #635E54;
     cursor: pointer;
    
}

.extracted-style-127 {
    margin-top: 3px;
    
}

.extracted-style-128 {
    color: #0E0E90;
     text-decoration: underline;
    
}

.extracted-style-129 {
    width: 100%;
     background-color: #334DCF;
     color: #ffffff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 750;
     cursor: pointer;
     transition: background-color 0.2s ease;
     font-family: inherit;
     margin-bottom: 20px;
    
}

.extracted-style-130 {
    font-size: 10.5px;
     color: #8C877D;
     line-height: 1.45;
     text-align: left;
     background: #FAF6F0;
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-131 {
    margin-top: 0;
     margin-bottom: 6px;
     font-weight: bold;
     color: #2A2822;
    
}

.extracted-style-132 {
    margin: 0;
     padding-left: 0;
     list-style-type: none;
     display: flex;
     flex-direction: column;
     gap: 3px;
    
}

/* Extracted from <style> block */

/* Landing Hover/Micro-interactions */
.cta-btn-primary:hover {
    background-color: #0b0a5c !important;
    transform: translateY(-2px);
}
.cta-btn-closing:hover {
    background-color: #FAF6F0 !important;
    color: #0E0E90 !important;
    transform: translateY(-2px);
}
.cta-btn-secondary:hover {
    background-color: #FAF6F0 !important;
}
.faq-item-wrapper:hover {
    border-color: #334DCF !important;
}
.menopausia-cta-closing input:focus {
    border-color: #334DCF !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.15);
}
#native-te-llamamos-form button:hover {
    background-color: #d8713d !important;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .menopausia-hero {
        grid-template-columns: 1fr !important;
        padding: 40px 16px !important;
        gap: 32px !important;
        text-align: center;
    }
    .hero-text-side h1 {
        font-size: 30px !important;
    }
    .medical-signature {
        flex-direction: column !important;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .science-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .timeline-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }
    .timeline-steps-grid > div {
        border-right: none !important;
        border-bottom: 1px solid #E2DED4;
        padding: 0 0 16px 0 !important;
    }
    .timeline-steps-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .menopausia-preventive > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-diet-failures > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-how-senda > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .menopausia-cta-closing > div {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}
/* EXTRACTED FROM page-hipertension-y-obesidad.php */
.extracted-style-1 {
    grid-column: 1 / -1;
     width: 100%;
     margin-top: 100px;
     padding-bottom: 0;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
     overflow-x: hidden;
    
}

.extracted-style-2 {
    width: 100%;
     max-width: none;
     background-color: #ffffff;
     padding: 80px 0;
     border-bottom: 1px solid #E2DED4;
     box-sizing: border-box;
     margin: 0;
    
}

.extracted-style-3 {
    max-width: 1300px;
     margin: 0 auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 64px;
     align-items: center;
     box-sizing: border-box;
    
}

.extracted-style-4 {
    background-color: rgba(51, 77, 207, 0.1);
     color: #334DCF;
     padding: 6px 12px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 18px;
    
}

.extracted-style-5 {
    font-size: 40px;
     line-height: 1.15;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 20px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-6 {
    font-size: 18px;
     line-height: 1.55;
     color: #635E54;
     margin: 0 0 24px 0;
    
}

.extracted-style-7 {
    display: flex;
     align-items: center;
     gap: 16px;
     background: #FAF6F0;
     padding: 16px 20px;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     margin-bottom: 32px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    
}

.extracted-style-8 {
    font-size: 28px;
     filter: grayscale(0.2);
    
}

.extracted-style-9 {
    font-size: 13px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-10 {
    font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 2px;
    
}

.extracted-style-11 {
    display: flex;
     flex-wrap: wrap;
     gap: 16px;
    
}

.extracted-style-12 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
     transition: transform 0.2s ease, background-color 0.2s ease;
    
}

.extracted-style-13 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: 1.5px solid #E2DED4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
    
}

.extracted-style-14 {
    position: relative;
     text-align: center;
     width: 100%;
    
}

.extracted-style-15 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
     border: 6px solid #ffffff;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-16 {
    width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     max-height: 550px;
    
}

.extracted-style-17 {
    position: absolute;
     bottom: 20px;
     right: -10px;
     background: #FFC043;
     color: #0E0E90;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
}

.extracted-style-18 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-22 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-23 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-24 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-25 {
    font-size: 18px;
     font-weight: 750;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-26 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-27 {
    background: #F4EFE6;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     margin-bottom: 48px;
    
}

.extracted-style-28 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
     text-align: center;
    
}

.extracted-style-29 {
    display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     text-align: center;
    
}

.extracted-style-30 {
    border-right: 1px solid #E2DED4;
     padding-right: 12px;
    
}

.extracted-style-31 {
    font-weight: 800;
     color: #334DCF;
     display: block;
     margin-bottom: 6px;
     font-size: 15px;
    
}

.extracted-style-32 {
    font-size: 13px;
     color: #635E54;
     line-height: 1.5;
     margin: 0;
    
}

.extracted-style-33 {
    border-right: 1px solid #E2DED4;
     padding: 0 12px;
    
}

.extracted-style-34 {
    padding-left: 12px;
    
}

.extracted-style-35 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-36 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-37 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-38 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-39 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-40 {
    background: #FFC043;
     color: #0E0E90;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-41 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-42 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-43 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-44 {
    font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-45 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-46 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-47 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-48 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-49 {
    font-size: 36px;
     margin-bottom: 16px;
    
}

.extracted-style-50 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
    
}

.extracted-style-51 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-52 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #8C877D;
     font-style: italic;
    
}

.extracted-style-53 {
    background-color: #F4EFE6;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-54 {
    max-width: 960px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-55 {
    text-align: center;
    
}

.extracted-style-56 {
    font-size: 72px;
     margin-bottom: 16px;
    
}

.extracted-style-57 {
    font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-58 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-59 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-60 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-61 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-62 {
    background: #ffffff;
     color: #334DCF;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     border: 1px solid #E2DED4;
     flex-shrink: 0;
    
}

.extracted-style-63 {
    color: #0E0E90;
     font-size: 15px;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-64 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.5;
    
}

.extracted-style-65 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-66 {
    text-align: center;
     margin-bottom: 56px;
    
}

.extracted-style-67 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
    
}

.extracted-style-68 {
    background-color: #FAF6F0;
     padding: 24px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-69 {
    font-size: 24px;
     margin-bottom: 12px;
    
}

.extracted-style-70 {
    font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     margin: 0 0 8px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-71 {
    padding: 80px 24px;
     max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
    
}

.extracted-style-73 {
    background-color: #ffffff;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-74 {
    font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #334DCF;
     margin-bottom: 12px;
     display: inline-block;
    
}

.extracted-style-75 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-76 {
    background: #0E0E90;
     color: #ffffff;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 13px;
     flex-shrink: 0;
    
}

.extracted-style-77 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.4;
    
}

.extracted-style-78 {
    color: #2A2822;
    
}

.extracted-style-79 {
    font-size: 22px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-80 {
    background-color: #F4EFE6;
     padding: 24px;
     border-radius: 16px;
     border-left: 4px solid #334DCF;
     margin-bottom: 32px;
    
}

.extracted-style-81 {
    margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: #2A2822;
     font-weight: 600;
    
}

.extracted-style-82 {
    display: block;
     font-size: 12px;
     color: #8C877D;
     margin-top: 8px;
     font-weight: 700;
    
}

.extracted-style-83 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
    
}

.extracted-style-84 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-85 {
    font-size: 16px;
     color: #635E54;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-86 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     padding: 40px;
     border-radius: 24px;
     position: relative;
     margin-bottom: 48px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    
}

.extracted-style-87 {
    font-size: 48px;
     color: #334DCF;
     position: absolute;
     top: 15px;
     left: 30px;
     line-height: 1;
     opacity: 0.15;
     font-family: serif;
    
}

.extracted-style-88 {
    margin: 0;
     padding: 0;
     font-size: 16px;
     line-height: 1.65;
     color: #2A2822;
     font-style: italic;
     position: relative;
     z-index: 2;
    
}

.extracted-style-89 {
    margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
    
}

.extracted-style-90 {
    background-color: #0E0E90;
     color: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-91 {
    font-weight: 700;
     color: #0E0E90;
     font-style: normal;
     display: block;
     font-size: 14px;
    
}

.extracted-style-92 {
    font-size: 12px;
     color: #635E54;
    
}

.extracted-style-93 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     text-align: center;
    
}

.extracted-style-94 {
    border-right: 1px solid #E2DED4;
     padding: 12px;
    
}

.extracted-style-95 {
    font-size: 36px;
     font-weight: 800;
     color: #0E0E90;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-96 {
    font-size: 13px;
     color: #635E54;
     display: block;
     margin-top: 4px;
    
}

.extracted-style-97 {
    padding: 12px;
    
}

.extracted-style-98 {
    font-size: 36px;
     font-weight: 800;
     color: #334DCF;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-99 {
    padding: 80px 24px;
     max-width: 850px;
     margin: 0 auto;
    
}

.extracted-style-100 {
    font-size: 15px;
     color: #635E54;
    
}

.extracted-style-101 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-102 {
    background-color: #ffffff;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     overflow: hidden;
     transition: all 0.2s ease;
    
}

.extracted-style-103 {
    width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 24px;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Outfit', sans-serif;
     outline: none;
    
}

.extracted-style-104 {
    font-size: 18px;
     color: #334DCF;
     font-weight: bold;
     transition: transform 0.2s ease;
    
}

.extracted-style-105 {
    max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     padding: 0 24px;
    
}

.extracted-style-106 {
    margin: 0 0 20px 0;
     font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
    
}

.extracted-style-107 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 96px 24px;
     border-top: 1px solid rgba(255,255,255,0.1);
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    max-width: 1000px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     position: relative;
     z-index: 5;
    
}

.extracted-style-109 {
    font-size: 32px;
     font-weight: 800;
     color: #ffffff;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
     line-height: 1.3;
    
}

.extracted-style-110 {
    font-size: 15px;
     line-height: 1.6;
     color: rgba(255,255,255,0.85);
     margin-bottom: 28px;
    
}

.extracted-style-111 {
    margin-bottom: 32px;
    
}

.extracted-style-112 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
    
}

.extracted-style-113 {
    display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 13.5px;
     color: rgba(255,255,255,0.85);
    
}

.extracted-style-114 {
    display: flex;
     gap: 8px;
     align-items: center;
    
}

.extracted-style-115 {
    color: #FFC043;
     font-weight: bold;
    
}

.extracted-style-116 {
    background-color: #ffffff;
     color: #2A2822;
     padding: 36px;
     border-radius: 24px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
}

.extracted-style-117 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 8px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-118 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0 0 20px 0;
     line-height: 1.5;
    
}

.extracted-style-119 {
    display: none;
     background-color: #FBD0D0;
     border-left: 4px solid #E61E1E;
     color: #A81C1C;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-120 {
    display: none;
     background-color: #D4EDDA;
     border-left: 4px solid #28A745;
     color: #155724;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-121 {
    display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 20px;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 6px;
    
}

.extracted-style-123 {
    font-size: 13px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-124 {
    width: 100%;
     padding: 12px;
     font-size: 14.5px;
     border-radius: 8px;
     border: 1.5px solid #E2DED4;
     box-sizing: border-box;
     font-family: inherit;
    
}

.extracted-style-125 {
    margin-bottom: 20px;
    
}

.extracted-style-126 {
    display: flex;
     gap: 8px;
     align-items: flex-start;
     font-size: 12.5px;
     line-height: 1.4;
     color: #635E54;
     cursor: pointer;
    
}

.extracted-style-127 {
    margin-top: 3px;
    
}

.extracted-style-128 {
    color: #0E0E90;
     text-decoration: underline;
    
}

.extracted-style-129 {
    width: 100%;
     background-color: #334DCF;
     color: #ffffff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 750;
     cursor: pointer;
     transition: background-color 0.2s ease;
     font-family: inherit;
     margin-bottom: 20px;
    
}

.extracted-style-130 {
    font-size: 10.5px;
     color: #8C877D;
     line-height: 1.45;
     text-align: left;
     background: #FAF6F0;
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-131 {
    margin-top: 0;
     margin-bottom: 6px;
     font-weight: bold;
     color: #2A2822;
    
}

.extracted-style-132 {
    margin: 0;
     padding-left: 0;
     list-style-type: none;
     display: flex;
     flex-direction: column;
     gap: 3px;
    
}

/* Extracted from <style> block */

/* Landing Hover/Micro-interactions */
.cta-btn-primary:hover {
    background-color: #0b0a5c !important;
    transform: translateY(-2px);
}
.cta-btn-closing:hover {
    background-color: #FAF6F0 !important;
    color: #0E0E90 !important;
    transform: translateY(-2px);
}
.cta-btn-secondary:hover {
    background-color: #FAF6F0 !important;
}
.faq-item-wrapper:hover {
    border-color: #334DCF !important;
}
.menopausia-cta-closing input:focus {
    border-color: #334DCF !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.15);
}
#native-te-llamamos-form button:hover {
    background-color: #d8713d !important;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .menopausia-hero {
        grid-template-columns: 1fr !important;
        padding: 40px 16px !important;
        gap: 32px !important;
        text-align: center;
    }
    .hero-text-side h1 {
        font-size: 30px !important;
    }
    .medical-signature {
        flex-direction: column !important;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .science-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .timeline-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }
    .timeline-steps-grid > div {
        border-right: none !important;
        border-bottom: 1px solid #E2DED4;
        padding: 0 0 16px 0 !important;
    }
    .timeline-steps-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .menopausia-preventive > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-diet-failures > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-how-senda > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .menopausia-cta-closing > div {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}
/* EXTRACTED FROM page-menopausia-obesidad.php */
.extracted-style-1 {
    grid-column: 1 / -1;
     width: 100%;
     margin-top: 100px;
     padding-bottom: 0;
     background-color: #FAF6F0;
     font-family: 'Saans', 'Saans', sans-serif;
     color: #2A2822;
     overflow-x: hidden;
    
}

.extracted-style-2 {
    width: 100%;
     max-width: none;
     background-color: #ffffff;
     padding: 80px 0;
     border-bottom: 1px solid #E2DED4;
     box-sizing: border-box;
     margin: 0;
    
}

.extracted-style-3 {
    max-width: 1300px;
     margin: 0 auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 64px;
     align-items: center;
     box-sizing: border-box;
    
}

.extracted-style-4 {
    background-color: rgba(51, 77, 207, 0.1);
     color: #334DCF;
     padding: 6px 12px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 18px;
    
}

.extracted-style-5 {
    font-size: 40px;
     line-height: 1.15;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 20px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-6 {
    font-size: 18px;
     line-height: 1.55;
     color: #635E54;
     margin: 0 0 24px 0;
    
}

.extracted-style-7 {
    display: flex;
     align-items: center;
     gap: 16px;
     background: #FAF6F0;
     padding: 16px 20px;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     margin-bottom: 32px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    
}

.extracted-style-8 {
    font-size: 28px;
     filter: grayscale(0.2);
    
}

.extracted-style-9 {
    font-size: 13px;
     line-height: 1.4;
     color: #635E54;
    
}

.extracted-style-10 {
    font-weight: 700;
     color: #2A2822;
     display: block;
     margin-bottom: 2px;
    
}

.extracted-style-11 {
    display: flex;
     flex-wrap: wrap;
     gap: 16px;
    
}

.extracted-style-12 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
     transition: transform 0.2s ease, background-color 0.2s ease;
    
}

.extracted-style-13 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: 1.5px solid #E2DED4;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.2s ease;
    
}

.extracted-style-14 {
    position: relative;
     text-align: center;
     width: 100%;
    
}

.extracted-style-15 {
    border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
     border: 6px solid #ffffff;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-16 {
    width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
     max-height: 550px;
    
}

.extracted-style-17 {
    position: absolute;
     bottom: 20px;
     right: -10px;
     background: #FFC043;
     color: #0E0E90;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    
}

.extracted-style-18 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-19 {
    max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-20 {
    text-align: center;
     margin-bottom: 48px;
    
}

.extracted-style-21 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin: 0 0 16px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-22 {
    font-size: 16px;
     color: #635E54;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-23 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     margin-bottom: 48px;
    
}

.extracted-style-24 {
    background-color: #FAF6F0;
     padding: 28px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-25 {
    font-size: 18px;
     font-weight: 750;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-26 {
    font-size: 14px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-27 {
    background: #F4EFE6;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     margin-bottom: 48px;
    
}

.extracted-style-28 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
     text-align: center;
    
}

.extracted-style-29 {
    display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 24px;
     text-align: center;
    
}

.extracted-style-30 {
    border-right: 1px solid #E2DED4;
     padding-right: 12px;
    
}

.extracted-style-31 {
    font-weight: 800;
     color: #334DCF;
     display: block;
     margin-bottom: 6px;
     font-size: 15px;
    
}

.extracted-style-32 {
    font-size: 13px;
     color: #635E54;
     line-height: 1.5;
     margin: 0;
    
}

.extracted-style-33 {
    border-right: 1px solid #E2DED4;
     padding: 0 12px;
    
}

.extracted-style-34 {
    padding-left: 12px;
    
}

.extracted-style-35 {
    background: linear-gradient(135deg, #0e0e90, #334dc7);
     color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(14, 14, 144, 0.1);
    
}

.extracted-style-36 {
    margin-top: 0;
     margin-bottom: 24px;
     font-family: 'Outfit', sans-serif;
     font-size: 18px;
     letter-spacing: 0.5px;
     font-weight: 700;
     color: #ffffff;
    
}

.extracted-style-37 {
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
    
}

.extracted-style-38 {
    background: rgba(255,255,255,0.08);
     padding: 16px 20px;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.15);
     font-weight: 600;
     font-size: 14px;
    
}

.extracted-style-39 {
    font-size: 20px;
     color: #FFC043;
    
}

.extracted-style-40 {
    background: #FFC043;
     color: #0E0E90;
     padding: 16px 20px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-41 {
    padding: 80px 24px;
     max-width: 960px;
     margin: 0 auto;
    
}

.extracted-style-42 {
    display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-43 {
    font-size: 13px;
     font-weight: 700;
     color: #334DCF;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 8px;
    
}

.extracted-style-44 {
    font-size: 28px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-45 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-46 {
    font-size: 15px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-47 {
    padding-left: 20px;
     margin: 0 0 24px 0;
     color: #635E54;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
    
}

.extracted-style-48 {
    background-color: #ffffff;
     padding: 32px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-49 {
    font-size: 36px;
     margin-bottom: 16px;
    
}

.extracted-style-50 {
    margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
    
}

.extracted-style-51 {
    font-size: 13.5px;
     line-height: 1.55;
     color: #635E54;
     margin-bottom: 16px;
    
}

.extracted-style-52 {
    border-top: 1px solid #E2DED4;
     padding-top: 16px;
     font-size: 12px;
     color: #8C877D;
     font-style: italic;
    
}

.extracted-style-53 {
    background-color: #F4EFE6;
     padding: 80px 24px;
     border-top: 1px solid #E2DED4;
    
}

.extracted-style-54 {
    max-width: 960px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 48px;
     align-items: center;
    
}

.extracted-style-55 {
    text-align: center;
    
}

.extracted-style-56 {
    font-size: 72px;
     margin-bottom: 16px;
    
}

.extracted-style-57 {
    font-size: 24px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-58 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin: 0;
    
}

.extracted-style-59 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-60 {
    display: flex;
     flex-direction: column;
     gap: 20px;
    
}

.extracted-style-61 {
    display: flex;
     gap: 16px;
    
}

.extracted-style-62 {
    background: #ffffff;
     color: #334DCF;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     border: 1px solid #E2DED4;
     flex-shrink: 0;
    
}

.extracted-style-63 {
    color: #0E0E90;
     font-size: 15px;
     display: block;
     margin-bottom: 4px;
    
}

.extracted-style-64 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.5;
    
}

.extracted-style-65 {
    background-color: #ffffff;
     padding: 80px 24px;
     border-bottom: 1px solid #E2DED4;
    
}

.extracted-style-66 {
    text-align: center;
     margin-bottom: 56px;
    
}

.extracted-style-67 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
    
}

.extracted-style-68 {
    background-color: #FAF6F0;
     padding: 24px;
     border-radius: 20px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-69 {
    font-size: 24px;
     margin-bottom: 12px;
    
}

.extracted-style-70 {
    font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     margin: 0 0 8px 0;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-71 {
    padding: 80px 24px;
     max-width: 1100px;
     margin: 0 auto;
    
}

.extracted-style-72 {
    display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
    
}

.extracted-style-73 {
    background-color: #ffffff;
     padding: 40px;
     border-radius: 24px;
     border: 1px solid #E2DED4;
     box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    
}

.extracted-style-74 {
    font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: #334DCF;
     margin-bottom: 12px;
     display: inline-block;
    
}

.extracted-style-75 {
    font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
     margin-bottom: 24px;
    
}

.extracted-style-76 {
    background: #0E0E90;
     color: #ffffff;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 13px;
     flex-shrink: 0;
    
}

.extracted-style-77 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0;
     line-height: 1.4;
    
}

.extracted-style-78 {
    color: #2A2822;
    
}

.extracted-style-79 {
    font-size: 22px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 16px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-80 {
    background-color: #F4EFE6;
     padding: 24px;
     border-radius: 16px;
     border-left: 4px solid #334DCF;
     margin-bottom: 32px;
    
}

.extracted-style-81 {
    margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: #2A2822;
     font-weight: 600;
    
}

.extracted-style-82 {
    display: block;
     font-size: 12px;
     color: #8C877D;
     margin-top: 8px;
     font-weight: 700;
    
}

.extracted-style-83 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 20px rgba(14, 14, 144, 0.15);
    
}

.extracted-style-84 {
    font-size: 32px;
     font-weight: 800;
     color: #0E0E90;
     margin-bottom: 12px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-85 {
    font-size: 16px;
     color: #635E54;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
    
}

.extracted-style-86 {
    background-color: #FAF6F0;
     border: 1px solid #E2DED4;
     padding: 40px;
     border-radius: 24px;
     position: relative;
     margin-bottom: 48px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    
}

.extracted-style-87 {
    font-size: 48px;
     color: #334DCF;
     position: absolute;
     top: 15px;
     left: 30px;
     line-height: 1;
     opacity: 0.15;
     font-family: serif;
    
}

.extracted-style-88 {
    margin: 0;
     padding: 0;
     font-size: 16px;
     line-height: 1.65;
     color: #2A2822;
     font-style: italic;
     position: relative;
     z-index: 2;
    
}

.extracted-style-89 {
    margin-top: 24px;
     display: flex;
     align-items: center;
     gap: 12px;
    
}

.extracted-style-90 {
    background-color: #0E0E90;
     color: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 14px;
    
}

.extracted-style-91 {
    font-weight: 700;
     color: #0E0E90;
     font-style: normal;
     display: block;
     font-size: 14px;
    
}

.extracted-style-92 {
    font-size: 12px;
     color: #635E54;
    
}

.extracted-style-93 {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     text-align: center;
    
}

.extracted-style-94 {
    border-right: 1px solid #E2DED4;
     padding: 12px;
    
}

.extracted-style-95 {
    font-size: 36px;
     font-weight: 800;
     color: #0E0E90;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-96 {
    font-size: 13px;
     color: #635E54;
     display: block;
     margin-top: 4px;
    
}

.extracted-style-97 {
    padding: 12px;
    
}

.extracted-style-98 {
    font-size: 36px;
     font-weight: 800;
     color: #334DCF;
     display: block;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-99 {
    padding: 80px 24px;
     max-width: 850px;
     margin: 0 auto;
    
}

.extracted-style-100 {
    font-size: 15px;
     color: #635E54;
    
}

.extracted-style-101 {
    display: flex;
     flex-direction: column;
     gap: 16px;
    
}

.extracted-style-102 {
    background-color: #ffffff;
     border-radius: 16px;
     border: 1px solid #E2DED4;
     overflow: hidden;
     transition: all 0.2s ease;
    
}

.extracted-style-103 {
    width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 24px;
     font-size: 16px;
     font-weight: 750;
     color: #0E0E90;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Outfit', sans-serif;
     outline: none;
    
}

.extracted-style-104 {
    font-size: 18px;
     color: #334DCF;
     font-weight: bold;
     transition: transform 0.2s ease;
    
}

.extracted-style-105 {
    max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     padding: 0 24px;
    
}

.extracted-style-106 {
    margin: 0 0 20px 0;
     font-size: 14.5px;
     line-height: 1.6;
     color: #635E54;
    
}

.extracted-style-107 {
    background-color: #0E0E90;
     color: #ffffff;
     padding: 96px 24px;
     border-top: 1px solid rgba(255,255,255,0.1);
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
    
}

.extracted-style-108 {
    max-width: 1000px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     position: relative;
     z-index: 5;
    
}

.extracted-style-109 {
    font-size: 32px;
     font-weight: 800;
     color: #ffffff;
     margin-top: 0;
     margin-bottom: 20px;
     font-family: 'Outfit', sans-serif;
     line-height: 1.3;
    
}

.extracted-style-110 {
    font-size: 15px;
     line-height: 1.6;
     color: rgba(255,255,255,0.85);
     margin-bottom: 28px;
    
}

.extracted-style-111 {
    margin-bottom: 32px;
    
}

.extracted-style-112 {
    background-color: #ffffff;
     color: #0E0E90;
     padding: 14px 28px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
    
}

.extracted-style-113 {
    display: flex;
     flex-direction: column;
     gap: 12px;
     font-size: 13.5px;
     color: rgba(255,255,255,0.85);
    
}

.extracted-style-114 {
    display: flex;
     gap: 8px;
     align-items: center;
    
}

.extracted-style-115 {
    color: #FFC043;
     font-weight: bold;
    
}

.extracted-style-116 {
    background-color: #ffffff;
     color: #2A2822;
     padding: 36px;
     border-radius: 24px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
}

.extracted-style-117 {
    font-size: 20px;
     font-weight: 800;
     color: #0E0E90;
     margin-top: 0;
     margin-bottom: 8px;
     font-family: 'Outfit', sans-serif;
    
}

.extracted-style-118 {
    font-size: 13.5px;
     color: #635E54;
     margin: 0 0 20px 0;
     line-height: 1.5;
    
}

.extracted-style-119 {
    display: none;
     background-color: #FBD0D0;
     border-left: 4px solid #E61E1E;
     color: #A81C1C;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-120 {
    display: none;
     background-color: #D4EDDA;
     border-left: 4px solid #28A745;
     color: #155724;
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 16px;
     font-size: 13.5px;
     font-weight: 500;
    
}

.extracted-style-121 {
    display: flex;
     flex-direction: column;
     gap: 16px;
     margin-bottom: 20px;
    
}

.extracted-style-122 {
    display: flex;
     flex-direction: column;
     gap: 6px;
    
}

.extracted-style-123 {
    font-size: 13px;
     font-weight: 700;
     color: #2A2822;
    
}

.extracted-style-124 {
    width: 100%;
     padding: 12px;
     font-size: 14.5px;
     border-radius: 8px;
     border: 1.5px solid #E2DED4;
     box-sizing: border-box;
     font-family: inherit;
    
}

.extracted-style-125 {
    margin-bottom: 20px;
    
}

.extracted-style-126 {
    display: flex;
     gap: 8px;
     align-items: flex-start;
     font-size: 12.5px;
     line-height: 1.4;
     color: #635E54;
     cursor: pointer;
    
}

.extracted-style-127 {
    margin-top: 3px;
    
}

.extracted-style-128 {
    color: #0E0E90;
     text-decoration: underline;
    
}

.extracted-style-129 {
    width: 100%;
     background-color: #334DCF;
     color: #ffffff;
     border: none;
     padding: 14px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 750;
     cursor: pointer;
     transition: background-color 0.2s ease;
     font-family: inherit;
     margin-bottom: 20px;
    
}

.extracted-style-130 {
    font-size: 10.5px;
     color: #8C877D;
     line-height: 1.45;
     text-align: left;
     background: #FAF6F0;
     padding: 14px;
     border-radius: 8px;
     border: 1px solid #E2DED4;
    
}

.extracted-style-131 {
    margin-top: 0;
     margin-bottom: 6px;
     font-weight: bold;
     color: #2A2822;
    
}

.extracted-style-132 {
    margin: 0;
     padding-left: 0;
     list-style-type: none;
     display: flex;
     flex-direction: column;
     gap: 3px;
    
}

/* Extracted from <style> block */

/* Landing Hover/Micro-interactions */
.cta-btn-primary:hover {
    background-color: #0b0a5c !important;
    transform: translateY(-2px);
}
.cta-btn-closing:hover {
    background-color: #FAF6F0 !important;
    color: #0E0E90 !important;
    transform: translateY(-2px);
}
.cta-btn-secondary:hover {
    background-color: #FAF6F0 !important;
}
.faq-item-wrapper:hover {
    border-color: #334DCF !important;
}
.menopausia-cta-closing input:focus {
    border-color: #334DCF !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 77, 207, 0.15);
}
#native-te-llamamos-form button:hover {
    background-color: #d8713d !important;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .menopausia-hero {
        grid-template-columns: 1fr !important;
        padding: 40px 16px !important;
        gap: 32px !important;
        text-align: center;
    }
    .hero-text-side h1 {
        font-size: 30px !important;
    }
    .medical-signature {
        flex-direction: column !important;
        text-align: left;
    }
    .hero-ctas {
        justify-content: center;
    }
    .science-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .timeline-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }
    .timeline-steps-grid > div {
        border-right: none !important;
        border-bottom: 1px solid #E2DED4;
        padding: 0 0 16px 0 !important;
    }
    .timeline-steps-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .menopausia-preventive > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-diet-failures > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .menopausia-how-senda > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .menopausia-cta-closing > div {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
}