/* NC4Y production CSS bundle. Fuente: style.css */
/* =========================================================
   NUTRITION CARE 4 YOU
   CSS ENTRY POINT

   Este archivo únicamente define el orden de carga
   de la arquitectura CSS de NC4Y.
========================================================= */


/* =========================================================
   BASE
========================================================= */


/* Bundled: css/base/variables.css */
:root {

    --ivory: #F7F3EC;
    --beige: #E9E0D3;
    --beige-light: #FCF9F4;
    --beige-dark: #DDD2C2;

    --olive: #59604C;
    --olive-dark: #464D3E;
    --sage: #8C927B;

    --dark: #46443E;

    --gold: #B99152;
    --gold-light: #D5BE91;

    --text: #46443E;
    --text-light: #77766E;
    --text-muted: #9A968D;

    --white: #FFFFFF;

    --border: rgba(70, 68, 62, 0.14);
    --border-soft: rgba(70, 68, 62, 0.08);
    --border-gold: rgba(185, 145, 82, 0.32);

    --shadow-soft:
        0 18px 55px rgba(70, 68, 62, 0.07);

    --shadow-card:
        0 18px 45px rgba(70, 68, 62, 0.08);

    --shadow-hover:
        0 24px 60px rgba(70, 68, 62, 0.12);

    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 32px;

    --container: 1240px;

    --ease-smooth:
        cubic-bezier(0.22, 1, 0.36, 1);

    --ease-soft:
        cubic-bezier(0.25, 0.8, 0.25, 1);

    --transition-fast:
        220ms var(--ease-smooth);

    --transition:
        420ms var(--ease-smooth);

    --transition-slow:
        700ms var(--ease-smooth);

    --transition-image:
        900ms var(--ease-smooth);
}



/* Bundled: css/base/reset.css */
/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--beige-light);
    color: var(--text);

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-weight: 400;
    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}

img {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

button,
a,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
}



/* Bundled: css/base/typography.css */
/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-weight: 500;
    line-height: 0.98;

    color: var(--olive-dark);

    text-wrap: balance;
}

h1 {
    font-size: clamp(3.5rem, 6vw, 6.5rem);
}

h2 {
    font-size: clamp(2.8rem, 4.5vw, 5rem);
}

h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

p {
    color: var(--text-light);
    text-wrap: pretty;
}



/* =========================================================
   LAYOUT
========================================================= */


/* Bundled: css/layout/containers.css */
/* =========================================================
   GENERAL CONTAINERS
========================================================= */

.navbar,
.hero,
.audience-section,
.plans-section,
.services-section,
.approach-section,
.experience-section,
.success-cases-section,
.testimonials-section,
.footer-main,
.footer-bottom {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;
}



/* Bundled: css/layout/header.css */
/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: transparent;

    border-bottom: 1px solid transparent;

    transition:
        background 650ms var(--ease-smooth),
        border-color 650ms var(--ease-smooth),
        box-shadow 650ms var(--ease-smooth),
        backdrop-filter 650ms var(--ease-smooth);
}

.site-header.scrolled {
    background:
        rgba(247, 243, 236, 0.82);

    backdrop-filter:
        blur(20px)
        saturate(120%);

    border-bottom-color:
        rgba(70, 68, 62, 0.07);

    box-shadow:
        0 8px 30px
        rgba(70, 68, 62, 0.045);
}

.navbar {
    min-height: 92px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    border-radius: 50%;

    color: var(--olive-dark);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.35rem;
    font-weight: 600;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.brand:hover .brand-mark {
    transform: rotate(3deg);

    border-color: var(--olive);

    background:
        rgba(185, 145, 82, 0.05);
}

.brand-mark span {
    color: var(--gold);
}

.brand-name {
    color: var(--olive-dark);

    font-size: 0.76rem;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* =========================================================
   LOGO NAVBAR
========================================================= */

.brand-logo {
    display: block;

    width: 58px;
    height: 58px;

    min-width: 58px;
    max-width: 58px;

    min-height: 58px;
    max-height: 58px;

    flex: 0 0 58px;

    object-fit: contain;
    object-position: center;

    transform: scale(1.18);
    transform-origin: center;
}

@media (max-width: 760px) {
    .brand-logo {
        width: 54px;
        height: 54px;

        min-width: 54px;
        max-width: 54px;

        min-height: 54px;
        max-height: 54px;

        flex-basis: 54px;

        transform: scale(1.14);
    }
}



/* Bundled: css/layout/navigation.css */
/* =========================================================
   NAVIGATION
========================================================= */

.nav-menu {
    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-menu > a:not(.nav-cta),
.nav-dropdown-toggle {
    position: relative;

    color: var(--text-light);

    font-size: 0.78rem;
    font-weight: 500;

    transition:
        color var(--transition);
}

.nav-menu > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width 400ms var(--ease-smooth);
}

.nav-menu > a:not(.nav-cta):hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
    color: var(--olive-dark);
}

.nav-menu > a:not(.nav-cta):hover::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown.active .nav-dropdown-toggle::after {
    width: 100%;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;

    display: flex;

    align-items: center;
}

.nav-dropdown-toggle {
    padding: 0;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border: 0;

    background: transparent;

    font-family: inherit;

    cursor: pointer;
}

.nav-dropdown-caret {
    width: 7px;
    height: 7px;

    margin-top: -3px;

    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;

    transform: rotate(45deg);

    transition:
        transform var(--transition-fast);
}

.nav-dropdown.active .nav-dropdown-caret {
    transform:
        translateY(3px)
        rotate(225deg);
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    width: min(310px, calc(100vw - 40px));

    padding: 10px;

    display: grid;

    gap: 2px;

    background:
        rgba(252, 249, 244, 0.98);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    box-shadow:
        var(--shadow-soft);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, -8px);

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast),
        visibility var(--transition-fast);

    z-index: 1200;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate(-50%, 0);
}

.nav-dropdown-menu a {
    padding:
        12px
        14px;

    border-radius:
        12px;

    color: var(--text-light);

    font-size: 0.74rem;
    font-weight: 500;

    line-height: 1.4;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    color: var(--olive-dark);

    background:
        rgba(89, 96, 76, 0.07);

    transform:
        translateX(2px);
}


/* =========================================================
   NAVIGATION CTA
========================================================= */

.nav-cta {
    padding: 13px 22px;

    border-radius: 999px;

    background: var(--olive-dark);

    color: var(--white);

    font-size: 0.68rem;
    font-weight: 600;

    transition:
        background-color 450ms var(--ease-smooth),
        transform 450ms var(--ease-smooth),
        box-shadow 450ms var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--olive);

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px
        rgba(70, 77, 62, 0.12);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 23px;
    height: 1px;

    margin: 5px auto;

    background: var(--olive-dark);

    transform-origin: center;

    transition:
        transform 450ms var(--ease-smooth),
        opacity 300ms var(--ease-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* =========================================================
   COMPACT NAVIGATION
========================================================= */

@media (max-width: 1050px) {

    .nav-dropdown-toggle {
        font-size: 0.72rem;
    }

}


/* =========================================================
   MOBILE DROPDOWN
========================================================= */

@media (max-width: 760px) {

    .nav-dropdown {
        width: 100%;

        display: block;
    }

    .nav-dropdown-toggle {
        width: 100%;

        padding:
            13px
            8px;

        justify-content: space-between;

        text-align: left;
    }

    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        max-height: 0;

        padding:
            0
            0
            0
            14px;

        gap: 1px;

        background: transparent;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        border: 0;
        border-radius: 0;

        box-shadow: none;

        overflow: hidden;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: none;

        transition:
            max-height 420ms var(--ease-smooth),
            opacity var(--transition-fast),
            visibility var(--transition-fast);
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 340px;

        padding-top: 4px;
        padding-bottom: 8px;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;
    }

    .nav-dropdown-menu a {
        padding:
            10px
            12px;

        border-left:
            1px solid var(--border);

        border-radius:
            0
            10px
            10px
            0;

        font-size: 0.72rem;
    }

}


/* =========================================================
   NAVIGATION FOCUS
========================================================= */

.nav-menu a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid var(--gold);

    outline-offset: 4px;
}



/* Bundled: css/layout/footer.css */
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 65px 0 25px;

    background: var(--ivory);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.7fr;

    gap: 70px;

    padding-bottom: 55px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-start;
}


.footer-brand-logo {
    display: block;

    width: min(
        100%,
        290px
    );

    height: auto;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column h3 {
    margin-bottom: 12px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.footer-column a {
    color: var(--text-light);

    font-size: 0.76rem;

    transition:
        color 400ms var(--ease-smooth),
        transform 400ms var(--ease-smooth);
}


.footer-column a:hover {
    color: var(--olive-dark);

    transform: translateX(2px);
}

.footer-column a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding-top: 25px;

    border-top:
        1px solid var(--border);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: var(--text-light);

    font-size: 0.65rem;
}


.footer-bottom > div {
    display: flex;

    gap: 20px;
}



/* =========================================================
   COMPONENTS
========================================================= */


/* Bundled: css/components/eyebrow.css */
/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--olive);

    font-size: 0.74rem;
    font-weight: 700;

    letter-spacing: 0.22em;
    line-height: 1.2;
}

.eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--gold);

    transform-origin: left center;

    transition:
        width var(--transition);
}



/* Bundled: css/components/buttons.css */
/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 54px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 600;

    letter-spacing: 0.06em;

    cursor: pointer;

    transform: translateZ(0);

    transition:
        background-color 450ms var(--ease-smooth),
        color 450ms var(--ease-smooth),
        border-color 450ms var(--ease-smooth),
        transform 450ms var(--ease-smooth),
        box-shadow 450ms var(--ease-smooth);
}

.btn-primary {
    background: var(--olive-dark);

    color: var(--white);

    box-shadow:
        0 6px 18px
        rgba(70, 77, 62, 0.05);
}

.btn-primary:hover {
    background: var(--olive);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(70, 77, 62, 0.12);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;

    border-color: var(--border);

    color: var(--olive-dark);
}

.btn-secondary:hover {
    background:
        rgba(89, 96, 76, 0.06);

    border-color:
        rgba(89, 96, 76, 0.24);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(70, 68, 62, 0.06);
}

.btn-light {
    background: var(--ivory);

    color: var(--olive-dark);
}

.btn-light:hover {
    background: var(--white);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.10);
}


/* =========================================================
   FOCUS
========================================================= */

.btn:focus-visible,
.nav-menu a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}




/* Bundled: css/components/floating-booking.css */
/* =========================================================
   FLOATING BOOKING CTA
========================================================= */

.floating-booking {
    position: fixed;
    right: clamp(14px, 2vw, 30px);
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 920;

    min-height: 54px;
    padding: 0 18px 0 10px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;

    background: var(--olive-dark);
    color: var(--white);

    box-shadow:
        0 16px 38px rgba(46, 50, 41, 0.22),
        0 2px 8px rgba(46, 50, 41, 0.10);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(14px) scale(0.97);

    transition:
        opacity 260ms var(--ease-smooth),
        visibility 260ms var(--ease-smooth),
        transform 420ms var(--ease-smooth),
        background-color 260ms var(--ease-smooth),
        box-shadow 260ms var(--ease-smooth);
}

.floating-booking.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
}

.floating-booking-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);
}

.floating-booking-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-booking-label {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.035em;
    white-space: nowrap;
}

.floating-booking:hover {
    background: var(--olive);
    color: var(--white);

    transform: translateY(-2px) scale(1);

    box-shadow:
        0 20px 46px rgba(46, 50, 41, 0.26),
        0 4px 12px rgba(46, 50, 41, 0.12);
}

.floating-booking:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

@media (min-width: 900px) {
    .floating-booking {
        bottom: 28px;
        padding-right: 20px;
    }
}

@media (max-width: 420px) {
    .floating-booking {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        min-height: 52px;
        padding: 0 15px 0 8px;
        gap: 8px;
    }

    .floating-booking-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .floating-booking-label {
        font-size: 0.72rem;
    }
}



/* Bundled: css/components/section-heading.css */
/* =========================================================
   SECTION HEADING
   Encabezado reutilizable de secciones
========================================================= */

.section-heading {
    max-width: 680px;

    margin-bottom: 48px;
}

.section-heading h2 {
    max-width: 620px;

    margin-bottom: 18px;

    font-size:
        clamp(
            3rem,
            4.2vw,
            4.5rem
        );

    line-height: 0.98;
}

.section-heading > p:last-child {
    max-width: 570px;

    font-size: 0.84rem;

    line-height: 1.8;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 3rem;
    }

}



/* =========================================================
   SECTIONS
========================================================= */


/* Bundled: css/sections/hero.css */
/* =========================================================
   HERO
========================================================= */

.hero {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    min-height:
        calc(100vh - 88px);

    margin:
        0 auto;

    padding:
        70px 0 85px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(480px, 1.05fr);

    align-items: center;

    gap:
        clamp(45px, 6vw, 110px);
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}

.hero-content .eyebrow {
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 650px;

    margin: 0 0 28px;

    color: var(--olive-dark);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            4.8rem,
            7vw,
            7.4rem
        );

    font-weight: 500;

    line-height: 0.86;

    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;

    color: var(--olive);
}

.hero-description {
    max-width: 560px;

    margin:
        0 0 34px;

    color: var(--text);

    font-size:
        clamp(
            0.82rem,
            1vw,
            0.94rem
        );

    line-height: 1.85;
}

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 25px;
}

.hero-actions .btn {
    min-height: 48px;
}

.hero-note {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--text-muted);

    font-size: 0.68rem;

    letter-spacing: 0.035em;
}

.hero-note span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 8px;
    height: 8px;

    color: var(--olive);

    font-size: 0.62rem;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    width: 100%;

    min-height: 610px;

    display: flex;

    align-items: center;
    justify-content: center;

    will-change: transform;
}

/* =========================================================
   HERO LOGO OFICIAL
========================================================= */

.hero-image-frame {
    position: relative;

    width: min(
        100%,
        560px
    );

    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.hero-logo-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transform: none;

    transition:
        transform 700ms var(--ease-smooth);
}


@media (hover: hover) {

    .hero:hover .hero-logo-image {
        transform: scale(1.015);
    }

}

.hero-image-placeholder {
    position: relative;

    width: 78%;
    height: 88%;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius:
        48% 48% 18% 18% /
        34% 34% 14% 14%;

    background:
        linear-gradient(
            145deg,
            var(--beige) 0%,
            #DDD3C2 100%
        );

    box-shadow:
        0 35px 90px
        rgba(70, 68, 62, 0.10);
}

.hero-image-placeholder::before {
    content: "";

    position: absolute;

    width: 68%;
    height: 76%;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -48%);

    border-radius:
        50% 50% 14% 14%;

    background:
        var(--olive-dark);

    opacity: 0.94;
}

.hero-image-placeholder::after {
    content: "";

    position: absolute;

    width: 48%;
    height: 58%;

    left: 50%;
    top: 51%;

    transform:
        translate(-50%, -50%);

    border-radius:
        50% 50% 12% 12%;

    background:
        var(--ivory);

    opacity: 0.96;
}

.hero-image-placeholder span {
    position: relative;

    z-index: 3;

    color: var(--olive-dark);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            4rem,
            6vw,
            6.5rem
        );

    font-weight: 600;

    letter-spacing: -0.06em;

    transform: translateY(-2px);
}

.hero-badge {
    position: absolute;

    right: 1%;
    bottom: 8%;

    z-index: 5;

    width:
        min(
            235px,
            42%
        );

    padding: 20px 22px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid
        rgba(185, 145, 82, 0.28);

    border-radius: var(--radius-md);

    background:
        rgba(247, 243, 236, 0.92);

    box-shadow:
        0 18px 45px
        rgba(70, 68, 62, 0.10);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}

.hero-badge strong {
    color: var(--olive-dark);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.35rem;

    font-weight: 600;

    line-height: 1;
}

.hero-badge span {
    color: var(--text-muted);

    font-size: 0.62rem;

    line-height: 1.5;
}


/* =========================================================
   HERO HOVER
========================================================= */

@media (hover: hover) {

    .hero-image-placeholder {
        transition:
            transform 900ms var(--ease-smooth),
            box-shadow 900ms var(--ease-smooth);
    }

    .hero:hover .hero-image-placeholder {
        transform:
            translateY(-4px)
            scale(1.008);

        box-shadow:
            0 42px 105px
            rgba(70, 68, 62, 0.13);
    }

}


/* Bundled: css/sections/audience.css */
/* =========================================================
   AUDIENCE
   ¿Qué buscas trabajar?
========================================================= */

.audience-section {
    padding: 85px 0 90px;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.audience-section .section-heading {
    max-width: 700px;

    margin-bottom: 42px;
}

.audience-section .section-heading h2 {
    max-width: 620px;

    margin-bottom: 14px;

    color: var(--olive-dark);

    font-size:
        clamp(
            3.2rem,
            4.5vw,
            4.7rem
        );

    line-height: 0.94;

    letter-spacing: -0.025em;
}

.audience-section .section-heading > p {
    max-width: 560px;

    color: var(--text-light);

    font-size: 0.78rem;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.audience-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.audience-card {
    position: relative;

    min-height: 235px;

    padding:
        27px 25px 30px;

    border-right:
        1px solid var(--border);

    background: transparent;

    transition:
        background-color 500ms var(--ease-smooth),
        transform 550ms var(--ease-smooth),
        box-shadow 550ms var(--ease-smooth);
}

.audience-card:last-child {
    border-right: 0;
}

.audience-card:hover {
    background:
        rgba(247, 243, 236, 0.72);

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 35px
        rgba(70, 68, 62, 0.045);
}


/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

.audience-number {
    display: block;

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.15rem;

    line-height: 1;
}


/* ---------------------------------------------------------
   CATEGORY
--------------------------------------------------------- */

.audience-card::after {
    content: "";

    display: block;

    position: absolute;

    top: 58px;
    left: 25px;

    width: 18px;
    height: 1px;

    background:
        rgba(185, 145, 82, 0.45);

    opacity: 0;

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        opacity 400ms var(--ease-smooth),
        transform 500ms var(--ease-smooth);
}

.audience-card:hover::after {
    opacity: 1;

    transform:
        scaleX(1);
}


/* ---------------------------------------------------------
   TITLE

   Natalia pidió compactar el espacio DENTRO de cada tarjeta:
   categoría (SALUD / COMPOSICIÓN CORPORAL / etc.) -> título.
   El gap anterior de 43px era el responsable visual.
--------------------------------------------------------- */

.audience-card h3 {
    max-width: 220px;

    margin:
        14px 0 13px;

    color: var(--olive-dark);

    font-size: 2rem;

    line-height: 0.98;

    letter-spacing: -0.015em;

    transition:
        color 450ms var(--ease-smooth);
}

.audience-card:hover h3 {
    color: var(--olive);
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.audience-card p {
    max-width: 245px;

    margin: 0;

    color: var(--text-light);

    font-size: 0.72rem;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   SUBTLE COLUMN ACCENT
--------------------------------------------------------- */

.audience-card:nth-child(1) {
    background:
        linear-gradient(
            to bottom,
            rgba(247, 243, 236, 0.18),
            transparent
        );
}

.audience-card:nth-child(2) {
    background:
        linear-gradient(
            to bottom,
            rgba(247, 243, 236, 0.08),
            transparent
        );
}

.audience-card:nth-child(3) {
    background:
        linear-gradient(
            to bottom,
            rgba(247, 243, 236, 0.14),
            transparent
        );
}

.audience-card:nth-child(4) {
    background:
        linear-gradient(
            to bottom,
            rgba(247, 243, 236, 0.08),
            transparent
        );
}


/* =========================================================
   MOBILE — GAP INTERNO CATEGORY -> TITLE

   responsive.css se carga después y define 32px para h3.
   Esta regla más específica conserva el ajuste correcto en
   móvil sin alterar el resto del responsive global.
========================================================= */

@media (max-width: 760px) {

    .home-page .audience-section .audience-card h3 {
        margin-top: 14px;
    }

}


/* =========================================================
   AUDIENCE → SERVICES TRANSITION
========================================================= */

.audience-section + .services-section {
    padding-top: 65px;
}



/* Bundled: css/sections/consultation.css */
/* =========================================================
   CONSULTATION
   Qué incluye tu consulta
========================================================= */

.consultation-section {
    position: relative;

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 35px auto 100px;

    padding: 70px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    column-gap: 75px;
    row-gap: 45px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(233, 224, 211, 0.82),
            rgba(247, 243, 236, 0.96)
        );

    box-shadow:
        0 18px 50px
        rgba(70, 68, 62, 0.045);
}


/* =========================================================
   DECORATIVE DETAIL
========================================================= */

.consultation-section::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -210px;
    left: -170px;

    border:
        1px solid
        rgba(185, 145, 82, 0.14);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.consultation-header {
    position: relative;

    z-index: 1;

    align-self: start;
}


.consultation-header .eyebrow {
    margin-bottom: 22px;
}


.consultation-header h2 {
    max-width: 440px;

    margin-bottom: 25px;

    color: var(--olive-dark);

    font-size:
        clamp(
            3.2rem,
            4.5vw,
            4.8rem
        );

    line-height: 0.94;

    letter-spacing: -0.025em;
}


.consultation-lead {
    max-width: 440px;

    margin: 0;

    color: var(--text-light);

    font-size: 0.82rem;

    line-height: 1.85;
}


/* =========================================================
   CONTENT
========================================================= */

.consultation-content {
    position: relative;

    z-index: 1;

    border-top:
        1px solid var(--border);
}


/* =========================================================
   ITEM
========================================================= */

.consultation-item {
    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr);

    gap: 18px;

    padding: 22px 0;

    border-bottom:
        1px solid var(--border);

    transition:
        padding-left 450ms var(--ease-smooth),
        background-color 450ms var(--ease-smooth);
}


.consultation-item:hover {
    padding-left: 6px;

    background:
        rgba(247, 243, 236, 0.33);
}


/* =========================================================
   NUMBER
========================================================= */

.consultation-number {
    padding-top: 3px;

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.15rem;

    line-height: 1;

    transition:
        transform 450ms var(--ease-smooth),
        color 450ms var(--ease-smooth);
}


.consultation-item:hover .consultation-number {
    color: var(--olive);

    transform: translateX(2px);
}


/* =========================================================
   ITEM TITLE
========================================================= */

.consultation-item h3 {
    margin-bottom: 7px;

    color: var(--olive-dark);

    font-size: 1.45rem;

    line-height: 1.12;

    letter-spacing: -0.01em;
}


/* =========================================================
   ITEM DESCRIPTION
========================================================= */

.consultation-item p {
    max-width: 570px;

    margin: 0;

    color: var(--text-light);

    font-size: 0.74rem;

    line-height: 1.75;
}


/* =========================================================
   PRESENCIAL FEATURE
========================================================= */

.consultation-item-featured {
    margin-top: 14px;

    padding:
        24px
        22px;

    border:
        1px solid
        rgba(185, 145, 82, 0.24);

    border-radius: var(--radius-md);

    background:
        rgba(247, 243, 236, 0.60);
}


.consultation-item-featured:hover {
    padding-left: 28px;

    border-color:
        rgba(185, 145, 82, 0.38);

    background:
        rgba(247, 243, 236, 0.86);
}


.consultation-label {
    margin-bottom: 7px !important;

    color: var(--gold) !important;

    font-size: 0.64rem !important;

    font-weight: 700;

    letter-spacing: 0.16em;

    line-height: 1.3 !important;
}


/* =========================================================
   FOOTER
========================================================= */

.consultation-footer {
    position: relative;

    z-index: 1;

    grid-column: 1 / -1;

    padding-top: 30px;

    border-top:
        1px solid var(--border);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.consultation-footer > p {
    max-width: 440px;

    margin: 0;

    color: var(--text-muted);

    font-size: 0.72rem;

    line-height: 1.7;
}


.consultation-footer .btn {
    flex-shrink: 0;
}


/* Bundled: css/sections/services.css */
/* =========================================================
   SERVICES
   Tres áreas de atención
========================================================= */

.services-section {
    padding: 85px 0 110px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {
    position: relative;

    min-height: 560px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--ivory);

    transform: translateZ(0);

    transition:
        transform 650ms var(--ease-smooth),
        box-shadow 650ms var(--ease-smooth),
        border-color 650ms var(--ease-smooth);
}

.service-card:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--border-gold);

    box-shadow:
        var(--shadow-hover);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-card-image {
    height: 190px;

    overflow: hidden;

    flex-shrink: 0;

    background: var(--beige);
}

.service-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform var(--transition-image),
        filter var(--transition-image);
}

.service-card:hover
.service-card-image img {
    transform:
        scale(1.025);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.service-image-placeholder {
    width: 100%;
    height: 100%;

    padding-inline: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background:
        linear-gradient(
            145deg,
            #E8DFD2,
            #D5D8CC
        );

    color:
        rgba(70, 77, 62, 0.68);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.85rem;

    line-height: 1.18;
    letter-spacing: 0.09em;
    text-align: center;
    text-wrap: balance;

    transition:
        transform var(--transition-image);
}

.service-card:hover
.service-image-placeholder {
    transform:
        scale(1.018);
}

.service-card:nth-child(2)
.service-image-placeholder {
    background:
        linear-gradient(
            145deg,
            #D9DCCF,
            #B8BEAC
        );
}

.service-card:nth-child(3)
.service-image-placeholder {
    background:
        linear-gradient(
            145deg,
            #E3DDD1,
            #C7C6B8
        );
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-card-content {
    flex: 1;

    padding:
        25px
        27px
        28px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   SERVICE TOP
========================================================= */

.service-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.service-number {
    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.15rem;

    transition:
        transform 500ms var(--ease-smooth),
        color 500ms var(--ease-smooth);
}

.service-card:hover
.service-number {
    transform:
        translateX(2px);

    color:
        var(--olive);
}

.service-arrow {
    color: var(--gold);

    font-size: 0.95rem;

    transition:
        transform 500ms var(--ease-smooth),
        color 500ms var(--ease-smooth);
}

.service-card:hover
.service-arrow {
    transform:
        translate(2px, -2px);

    color:
        var(--olive);
}


/* =========================================================
   SERVICE CATEGORY
========================================================= */

.service-category {
    margin-bottom: 9px;

    color: var(--olive);

    font-size: 0.74rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    line-height: 1.3;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {
    max-width: 290px;

    margin-bottom: 14px;

    color: var(--olive-dark);

    font-size: 2.2rem;

    line-height: 1.02;

    transition:
        color 500ms var(--ease-smooth);
}

.service-card:hover h3 {
    color:
        var(--olive);
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-card p {
    max-width: 320px;

    margin-bottom: 18px;

    color: var(--text);

    font-size: 0.90rem;

    line-height: 1.72;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-card ul {
    margin-top: 0;

    list-style: none;
}

.service-card:first-child ul {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    grid-template-rows:
        repeat(4, auto);

    grid-auto-flow: column;

    column-gap: 16px;
    row-gap: 2px;
}

.service-card li {
    position: relative;

    padding:
        6px
        0
        6px
        15px;

    color: var(--text);

    font-size: 0.84rem;

    line-height: 1.6;

    transition:
        color 400ms var(--ease-smooth),
        transform 400ms var(--ease-smooth);
}

.service-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 15px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--gold);

    transition:
        transform 450ms var(--ease-smooth);
}

.service-card:hover li {
    color:
        var(--text);
}

.service-card:hover li::before {
    transform:
        scale(1.25);
}

.service-more-link {
    width: fit-content;

    margin-top: auto;
    padding-top: 24px;
    padding-bottom: 5px;

    border-bottom: 1px solid var(--gold);

    color: var(--olive-dark);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;

    transition:
        color 400ms var(--ease-smooth),
        border-color 400ms var(--ease-smooth);
}

.service-more-link:hover {
    border-color: var(--olive);
    color: var(--olive);
}


/* =========================================================
   CLINICA — DESKTOP / TABLET HORIZONTAL

   En tarjetas de un tercio de ancho, dividir siete temas en
   dos columnas comprime demasiado las frases clínicas.
   Desktop usa una sola columna compacta; móvil conserva su
   composición actual, que ya fue aprobada visualmente.
========================================================= */

@media (min-width: 761px) {

    .service-card:first-child ul {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;

        column-gap: 0;
        row-gap: 0;
    }

    .service-card:first-child li {
        padding-top: 4px;
        padding-bottom: 4px;

        line-height: 1.48;
    }

    .service-card:first-child li::before {
        top: 13px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 16px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card-image {
        height: 280px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        height: clamp(160px, 48vw, 190px);
    }

    .service-image-placeholder {
        font-size: clamp(1.45rem, 6.4vw, 1.7rem);

        letter-spacing: 0.07em;
    }

    .service-card-content {
        padding: 28px;
    }

    .service-card h3 {
        font-size: 2.35rem;
    }

    .service-card:first-child ul {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }

}



/* Bundled: css/sections/services-secondary.css */
.services-secondary {
    margin-top: clamp(26px, 4vw, 44px);
    padding: clamp(24px, 3vw, 34px);
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    border: 1px solid rgba(70, 68, 62, 0.08);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 12% 20%, rgba(213, 190, 145, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(252, 249, 244, 0.94), rgba(233, 224, 211, 0.78));
    box-shadow: 0 18px 44px rgba(70, 68, 62, 0.055);
}

.services-secondary-intro .eyebrow {
    margin-bottom: 12px;
}

.services-secondary-intro > p:last-child {
    max-width: 420px;
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.75;
}

.services-secondary-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.services-secondary-links a {
    min-height: 126px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(185, 145, 82, 0.16);
    border-radius: var(--radius-md);
    background: rgba(247, 243, 236, 0.78);
    box-shadow: 0 12px 30px rgba(70, 68, 62, 0.045);
    transition:
        transform 520ms var(--ease-smooth),
        border-color 520ms var(--ease-smooth),
        box-shadow 520ms var(--ease-smooth),
        background 520ms var(--ease-smooth);
}

.services-secondary-links span {
    color: var(--olive-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2.2vw, 2.2rem);
    font-weight: 600;
    line-height: 1;
    text-wrap: balance;
}

.services-secondary-links small {
    color: var(--text-light);
    font-size: 0.72rem;
    line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
    .services-secondary-links a:hover {
        transform: translateY(-3px);
        border-color: rgba(185, 145, 82, 0.28);
        background: rgba(252, 249, 244, 0.94);
        box-shadow: 0 18px 38px rgba(70, 68, 62, 0.07);
    }
}

@media (max-width: 860px) {
    .services-secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .services-secondary {
        padding: 18px;
        border-radius: var(--radius-md);
    }

    .services-secondary-links {
        grid-template-columns: 1fr;
    }

    .services-secondary-links a {
        min-height: 112px;
    }
}



/* Bundled: css/sections/plans.css */
/* =========================================================
   PLANS
   Servicios, planes y precios
========================================================= */

.plans-section {
    position: relative;

    margin-block:
        35px
        110px;

    padding:
        72px;

    display: grid;

    grid-template-columns:
        minmax(260px, 0.72fr)
        minmax(0, 1.28fr);

    gap:
        72px;

    overflow: hidden;

    isolation: isolate;

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            var(--olive-dark),
            #373D32
        );

    box-shadow:
        0 28px 75px
        rgba(46, 50, 41, 0.16);
}


/* =========================================================
   DECORATIVE DETAILS
========================================================= */

.plans-section::before,
.plans-section::after {
    content: "";

    position: absolute;

    z-index: -1;

    border-radius: 50%;

    pointer-events: none;
}


.plans-section::before {
    width: 430px;
    height: 430px;

    top: -260px;
    left: -190px;

    border:
        1px solid
        rgba(213, 190, 145, 0.14);
}


.plans-section::after {
    width: 340px;
    height: 340px;

    right: -220px;
    bottom: -230px;

    background:
        rgba(140, 146, 123, 0.10);

    filter:
        blur(3px);
}


/* =========================================================
   HEADER
========================================================= */

.plans-header {
    position: relative;

    z-index: 1;

    align-self: start;
}


.plans-header .eyebrow {
    margin-bottom: 24px;

    color:
        var(--gold-light);
}


.plans-header .eyebrow::before {
    background:
        var(--gold-light);
}


.plans-header h2 {
    max-width: 430px;

    margin-bottom: 26px;

    color:
        var(--white);

    font-size:
        clamp(
            3.4rem,
            4.7vw,
            5rem
        );

    line-height: 0.94;

    letter-spacing: -0.025em;
}


.plans-lead {
    max-width: 430px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 0.80rem;

    line-height: 1.85;
}


/* =========================================================
   GUIDANCE
========================================================= */

.plans-guidance {
    max-width: 430px;

    margin-top: 48px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);

    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr);

    gap: 15px;
}


.plans-guidance > span {
    color:
        var(--gold-light);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1rem;
}


.plans-guidance p {
    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.78rem;

    line-height: 1.7;
}


/* =========================================================
   PRICING BOARD
========================================================= */

.plans-board {
    position: relative;

    z-index: 1;

    min-width: 0;

    padding:
        12px
        30px
        30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius:
        24px;

    background:
        rgba(255, 255, 255, 0.045);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);
}


/* =========================================================
   GROUPS
========================================================= */

.plans-group {
    padding-top: 26px;
}


.plans-group + .plans-group {
    margin-top: 8px;
}


.plans-group-heading {
    padding-bottom: 12px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.plans-group-heading p,
.plans-group-heading span,
.plan-kicker {
    color:
        var(--gold-light);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.17em;

    line-height: 1.3;
}


.plans-group-heading span {
    color:
        rgba(213, 190, 145, 0.55);
}


/* =========================================================
   PLAN ROW
========================================================= */

.plan-row {
    padding:
        20px
        0;

    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        auto
        auto;

    align-items: center;

    gap:
        24px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);
}


.plan-info {
    min-width: 0;
}


.plan-info h3 {
    margin-bottom: 5px;

    color:
        var(--white);

    font-size: 1.72rem;

    line-height: 1.04;

    transition:
        color 420ms var(--ease-smooth);
}

.plan-duration-number {
    display: inline-block;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 0.82em;

    font-weight: 600;

    font-variant-numeric: lining-nums;

    line-height: 1;

    letter-spacing: -0.02em;

    transform: translateY(-0.03em);
}


.plan-info > p:last-child {
    max-width: 350px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 0.82rem;

    line-height: 1.55;
}


.plan-row:hover .plan-info h3 {
    color:
        var(--gold-light);
}


/* =========================================================
   PRICE
========================================================= */

.plan-price {
    min-width: 100px;

    color:
        var(--white);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.75rem;

    font-weight: 500;

    line-height: 1;

    text-align: right;

    white-space: nowrap;
}


.plan-price span {
    display: block;

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.40);

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 0.50rem;

    font-weight: 600;

    letter-spacing: 0.14em;
}


/* =========================================================
   CTA
========================================================= */

.plan-cta {
    min-height: 42px;

    padding:
        0
        16px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.20);

    border-radius:
        999px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 0.70rem;

    font-weight: 600;

    letter-spacing: 0.06em;

    white-space: nowrap;

    transition:
        color 420ms var(--ease-smooth),
        background-color 420ms var(--ease-smooth),
        border-color 420ms var(--ease-smooth),
        transform 420ms var(--ease-smooth);
}


.plan-cta:hover {
    border-color:
        rgba(213, 190, 145, 0.58);

    background:
        rgba(255, 255, 255, 0.08);

    color:
        var(--white);

    transform:
        translateY(-2px);
}


.plan-cta:focus-visible {
    outline:
        2px solid
        var(--gold-light);

    outline-offset: 4px;
}


/* =========================================================
   FEATURED PROGRAM
========================================================= */

.plan-row-featured {
    margin-top: 22px;

    padding:
        24px
        22px;

    border:
        1px solid
        rgba(213, 190, 145, 0.28);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            120deg,
            rgba(213, 190, 145, 0.11),
            rgba(255, 255, 255, 0.035)
        );
}


.plan-kicker {
    margin-bottom: 8px;
}


.plan-cta-featured {
    border-color:
        rgba(213, 190, 145, 0.45);

    background:
        var(--gold-light);

    color:
        var(--olive-dark);
}


.plan-cta-featured:hover {
    border-color:
        var(--white);

    background:
        var(--white);

    color:
        var(--olive-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .plans-section {
        padding:
            56px;

        grid-template-columns:
            minmax(220px, 0.64fr)
            minmax(0, 1.36fr);

        gap:
            44px;
    }


    .plans-header h2 {
        font-size:
            clamp(
                3rem,
                5vw,
                4.2rem
            );
    }


    .plans-board {
        padding-inline:
            24px;
    }


    .plan-row {
        grid-template-columns:
            minmax(150px, 1fr)
            auto;

        gap:
            16px
            22px;
    }


    .plan-cta {
        grid-column: 1 / -1;

        justify-self: end;

        margin-top: -6px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .plans-section {
        margin-block:
            28px
            80px;

        padding:
            42px
            30px;

        grid-template-columns:
            1fr;

        gap:
            38px;
    }


    .plans-header {
        max-width: 560px;
    }


    .plans-header h2 {
        max-width: 520px;

        font-size:
            clamp(
                3rem,
                10vw,
                4rem
            );
    }


    .plans-guidance {
        margin-top: 30px;
    }


    .plans-board {
        padding:
            8px
            22px
            24px;
    }


    .plan-row {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            auto;

        gap:
            18px;
    }


    .plan-cta {
        grid-column: auto;

        justify-self: auto;

        margin-top: 0;

        width: auto;

        padding:
            0
            15px;

        font-size: 0.68rem;
    }

}


/* =========================================================
   COMPACT MOBILE
========================================================= */

@media (max-width: 520px) {

    .plans-section {
        padding:
            36px
            20px;

        border-radius:
            var(--radius-md);
    }


    .plans-header h2 {
        font-size: 2.8rem;
    }


    .plans-lead {
        font-size: 0.80rem;
    }


    .plans-board {
        padding:
            6px
            16px
            18px;

        border-radius:
            var(--radius-md);
    }


    .plans-group {
        padding-top: 22px;
    }


    .plan-row {
        padding:
            18px
            0;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        gap:
            14px;
    }


    .plan-info h3 {
        font-size: 1.52rem;
    }


    .plan-info > p:last-child {
        font-size: 0.76rem;
    }


    .plan-price {
        min-width: 78px;

        font-size: 1.52rem;
    }


    .plan-cta {
        grid-column: 1 / -1;

        width: 100%;

        min-height: 40px;

        font-size: 0.68rem;
    }


    .plan-row-featured {
        margin-top: 18px;

        padding:
            21px
            16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .plans-section {
        margin-bottom: 65px;

        padding:
            32px
            16px;
    }


    .plans-header h2 {
        font-size: 2.55rem;
    }


    .plans-guidance {
        grid-template-columns:
            28px
            minmax(0, 1fr);

        gap: 11px;
    }


    .plans-board {
        padding-inline:
            13px;
    }


    .plans-group-heading p {
        font-size: 0.62rem;
    }

}



/* Bundled: css/sections/about.css */
/* =========================================================
   ABOUT NATALIA
========================================================= */

.about-section {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 110px auto 125px;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.82fr)
        minmax(0, 1.18fr);

    min-height: 620px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--olive-dark);

    box-shadow:
        0 22px 65px
        rgba(70, 68, 62, 0.10);
}

.about-visual {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background: var(--beige);
}

.about-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(45, 48, 40, 0.18),
            transparent 35%
        );
}

.about-visual img {
    width: 100%;
    height: 100%;

    min-height: 620px;

    display: block;

    object-fit: cover;

    object-position: center 30%;

    transform: scale(1.001);

    transition:
        transform 1000ms var(--ease-smooth),
        filter 800ms var(--ease-smooth);
}

.about-section:hover
.about-visual img {
    transform: scale(1.018);
}

.about-content {
    position: relative;

    max-width: 700px;

    padding:
        75px
        clamp(45px, 6vw, 85px);

    align-self: center;
}

.about-content .eyebrow {
    color: var(--gold-light);
}

.about-content h2 {
    margin-bottom: 14px;

    color: var(--ivory);

    font-size:
        clamp(
            3.4rem,
            5vw,
            5.3rem
        );

    line-height: 0.9;
}

.about-credentials {
    margin-bottom: 30px;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;
}

.about-profession,
.about-license {
    min-height: 36px;

    padding:
        0
        14px;

    display: inline-flex;

    align-items: center;

    border:
        1px solid
        rgba(213, 190, 145, 0.28);

    border-radius:
        999px;

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    line-height: 1.3;
}

.about-profession {

    color:
        var(--gold-light);
}

.about-license {
    background:
        rgba(213, 190, 145, 0.10);

    color:
        rgba(247, 243, 236, 0.84);
}

.about-license strong {
    margin-left: 7px;

    color:
        var(--white);

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 0.10em;
}

.about-content p {
    max-width: 590px;

    margin-bottom: 18px;

    color:
        rgba(247, 243, 236, 0.80);

    font-size: 0.90rem;

    line-height: 1.8;
}

.about-content .about-lead {
    margin-bottom: 22px;

    color: var(--ivory);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            1.45rem,
            2vw,
            1.8rem
        );

    line-height: 1.25;
}

.about-details {
    margin:
        30px 0
        32px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(247, 243, 236, 0.12);
}

.about-detail {
    min-height: 78px;

    padding:
        18px 20px
        18px 0;

    border-bottom:
        1px solid
        rgba(247, 243, 236, 0.12);
}

.about-detail:nth-child(odd) {
    padding-right: 25px;

    border-right:
        1px solid
        rgba(247, 243, 236, 0.12);
}

.about-detail:nth-child(even) {
    padding-left: 25px;
}

.about-detail-label {
    display: block;

    margin-bottom: 5px;

    color: var(--gold-light);

    font-size: 0.60rem;

    font-weight: 700;

    letter-spacing: 0.16em;
}

.about-detail strong {
    display: block;

    color:
        rgba(247, 243, 236, 0.90);

    font-size: 0.82rem;

    font-weight: 500;

    line-height: 1.45;
}

.about-content .btn-primary {
    background: var(--ivory);

    color: var(--olive-dark);
}

.about-content .btn-primary:hover {
    background: var(--white);

    color: var(--olive-dark);
}


/* ---------------------------------------------------------
   REVEAL ESPECÍFICO
--------------------------------------------------------- */

.about-visual,
.about-content {
    transition:
        opacity 850ms var(--ease-smooth),
        transform 850ms var(--ease-smooth);
}

.about-visual.reveal {
    transform:
        translateX(-18px);
}

.about-content.reveal {
    transform:
        translateX(18px);
}

.about-visual.reveal.revealed,
.about-content.reveal.revealed {
    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .about-section {
        width:
            calc(100% - 36px);

        margin:
            70px auto 80px;

        grid-template-columns: 1fr;

        min-height: auto;

        border-radius: 24px;
    }

    .about-visual {
        min-height: 480px;

        height: 480px;
    }

    .about-visual img {
        min-height: 480px;

        height: 480px;

        object-position:
            center 25%;
    }

    .about-content {
        max-width: none;

        padding:
            55px 28px 60px;
    }

    .about-content h2 {
        font-size: 3.5rem;
    }

    .about-credentials {
        margin-bottom: 25px;
    }

    .about-profession,
    .about-license {
        min-height: 38px;
    }

    .about-content .about-lead {
        font-size: 1.5rem;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .about-detail,
    .about-detail:nth-child(odd),
    .about-detail:nth-child(even) {

        padding:
            16px 0;

        border-right: 0;
    }

    .about-detail:last-child {
        border-bottom: 0;
    }

    .about-content .btn {
        width: 100%;
    }

    .about-visual.reveal,
    .about-content.reveal {
        transform:
            translateY(18px);
    }

    .about-visual.reveal.revealed,
    .about-content.reveal.revealed {
        transform:
            translateY(0);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-section {
        width:
            calc(100% - 28px);

        margin:
            60px auto 70px;
    }

    .about-visual,
    .about-visual img {
        min-height: 410px;

        height: 410px;
    }

    .about-content {
        padding:
            48px 23px 52px;
    }

    .about-content h2 {
        font-size: 3.15rem;
    }

    .about-credentials {
        align-items: stretch;

        flex-direction: column;
    }

    .about-profession,
    .about-license {
        width: 100%;

        justify-content: center;

        text-align: center;
    }

}



/* Bundled: css/sections/experience.css */
/* =========================================================
   EXPERIENCE / EL ESPACIO
   Estructura actual:
   experience-carousel
       ├── experience-main
       │     ├── experience-main-image
       │     └── experience-main-info
       └── experience-thumbnails
========================================================= */

.experience-carousel {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        170px;

    gap: 18px;

    align-items: stretch;
}

.experience-main {
    min-width: 0;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--beige);

    box-shadow:
        0 20px 55px
        rgba(70, 68, 62, 0.08);
}

.experience-main-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: var(--beige);
}

.experience-main-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(40, 43, 35, 0) 55%,
            rgba(40, 43, 35, 0.18)
        );
}

.experience-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.001);

    transition:
        opacity 450ms var(--ease-smooth),
        transform 1000ms var(--ease-smooth);
}

.experience-main-info {
    min-height: 125px;

    padding: 25px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background: var(--ivory);

    transition:
        opacity 350ms var(--ease-smooth),
        transform 500ms var(--ease-smooth);
}

.experience-main-info > div {
    flex: 0 0 auto;
}

.experience-main-number {
    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.1rem;

    line-height: 1;
}

.experience-main-info h3 {
    color: var(--olive-dark);

    font-size: 2.25rem;

    line-height: 1;
}

.experience-main-info > p {
    max-width: 400px;

    margin: 0;

    font-size: 0.78rem;

    line-height: 1.75;
}

.experience-thumbnails {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.experience-thumbnail {
    position: relative;

    width: 100%;

    min-height: 0;

    aspect-ratio: 4 / 3;

    padding: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(70, 68, 62, 0.10);

    border-radius: var(--radius-md);

    background: var(--beige);

    cursor: pointer;

    opacity: 0.62;

    transform: translateZ(0);

    transition:
        opacity 500ms var(--ease-smooth),
        transform 550ms var(--ease-smooth),
        border-color 500ms var(--ease-smooth),
        box-shadow 550ms var(--ease-smooth);
}

.experience-thumbnail::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        rgba(40, 43, 35, 0.10);

    pointer-events: none;

    transition:
        opacity 500ms var(--ease-smooth);
}

.experience-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 850ms var(--ease-smooth),
        filter 700ms var(--ease-smooth);
}

.experience-thumbnail:hover {
    opacity: 0.88;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(70, 68, 62, 0.08);
}

.experience-thumbnail:hover img {
    transform: scale(1.035);
}

.experience-thumbnail.active {
    opacity: 1;

    border-color:
        rgba(185, 145, 82, 0.60);

    box-shadow:
        0 10px 28px
        rgba(70, 68, 62, 0.10);
}

.experience-thumbnail.active::after {
    opacity: 0;
}

.experience-thumbnail.active img {
    transform: scale(1.025);
}

.experience-thumbnail:focus-visible {
    outline: none;

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(185, 145, 82, 0.20);
}

.experience-main-image.is-changing img {
    opacity: 0;

    transform: scale(1.015);
}

.experience-main-info.is-changing {
    opacity: 0.35;

    transform: translateY(3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .experience-carousel {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .experience-main-image {
        aspect-ratio: 4 / 3;
    }

    .experience-main-info {
        min-height: auto;

        padding: 22px;

        display: block;
    }

    .experience-main-info h3 {
        margin-bottom: 12px;

        font-size: 2.25rem;
    }

    .experience-main-info > p {
        max-width: none;

        font-size: 0.76rem;
    }

    .experience-thumbnails {
        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 8px;
    }

    .experience-thumbnail {
        aspect-ratio: 1 / 1;

        border-radius: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .experience-main-info {
        padding: 20px;
    }

    .experience-main-info h3 {
        font-size: 2rem;
    }

    .experience-thumbnails {
        gap: 6px;
    }

    .experience-thumbnail {
        border-radius: 8px;
    }

}


/* Bundled: css/sections/results-teaser.css */
.results-teaser {
    width: min(calc(100% - 80px), var(--container));
    margin: 8px auto 0;
    padding: clamp(30px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 5vw, 64px);
    align-items: end;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 84% 18%, rgba(213, 190, 145, 0.17), transparent 28%),
        linear-gradient(135deg, #4A5140 0%, var(--olive-dark) 58%, #3D4336 100%);
    box-shadow: 0 24px 64px rgba(70, 68, 62, 0.12);
}

.results-teaser .eyebrow {
    margin-bottom: 14px;
    color: var(--gold-light);
}

.results-teaser h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--beige-light);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.results-teaser-copy > p:last-child {
    max-width: 680px;
    color: rgba(252, 249, 244, 0.78);
    font-size: 0.9rem;
    line-height: 1.8;
}

.results-teaser .btn {
    min-width: 168px;
    justify-content: center;
    border-color: rgba(213, 190, 145, 0.5);
    color: var(--beige-light);
    background: rgba(247, 243, 236, 0.05);
}

@media (hover: hover) and (pointer: fine) {
    .results-teaser .btn:hover {
        border-color: var(--gold-light);
        background: rgba(247, 243, 236, 0.1);
    }
}

@media (max-width: 820px) {
    .results-teaser {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .results-teaser .btn {
        width: fit-content;
    }
}

@media (max-width: 760px) {
    .results-teaser {
        width: min(calc(100% - 40px), var(--container));
    }
}

@media (max-width: 420px) {
    .results-teaser {
        width: min(calc(100% - 32px), var(--container));
        padding: 24px 20px;
        border-radius: var(--radius-md);
    }

    .results-teaser h2 {
        font-size: clamp(2.7rem, 13vw, 3.6rem);
    }

    .results-teaser .btn {
        width: 100%;
    }
}



/* Bundled: css/sections/testimonials.css */
/* =========================================================
   TESTIMONIALS / RESEÑAS REALES
========================================================= */

.testimonials-section {
    padding: 100px 0 110px;
}

.reviews-heading-row {
    margin-bottom: 42px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.reviews-heading-row .section-heading {
    max-width: 760px;
    margin-bottom: 0;
}

.reviews-heading-row .section-heading > p:last-child {
    max-width: 620px;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.90rem;
    line-height: 1.75;
}

.reviews-summary {
    min-width: 235px;
    padding: 20px 22px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;

    border: 1px solid rgba(185, 145, 82, 0.20);
    border-radius: var(--radius-md);

    background: rgba(247, 243, 236, 0.82);
    box-shadow: 0 14px 34px rgba(70, 68, 62, 0.045);
}

.reviews-summary-score {
    color: var(--olive-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 0.9;
}

.reviews-summary-detail {
    display: grid;
    gap: 5px;
}

.reviews-stars {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.reviews-summary-detail span:last-child {
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.45;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    min-width: 0;
    min-height: 270px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(70, 68, 62, 0.09);
    border-radius: var(--radius-md);

    background:
        radial-gradient(circle at 100% 0%, rgba(213, 190, 145, 0.10), transparent 34%),
        rgba(252, 249, 244, 0.88);

    box-shadow: 0 16px 40px rgba(70, 68, 62, 0.045);

    transition:
        transform 500ms var(--ease-smooth),
        box-shadow 500ms var(--ease-smooth),
        border-color 500ms var(--ease-smooth);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-card-source {
    color: var(--text-light);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.review-card blockquote {
    margin: 34px 0 32px;

    color: var(--olive-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.65rem, 2.3vw, 2.15rem);
    font-weight: 500;
    line-height: 1.16;
    text-wrap: balance;
}

.review-card footer {
    margin-top: auto;
    padding-top: 18px;

    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;

    border-top: 1px solid var(--border-soft);
}

.review-card footer strong {
    color: var(--olive-dark);
    font-size: 0.86rem;
    font-weight: 600;
}

.review-card footer span {
    color: var(--text-light);
    font-size: 0.76rem;
}

.reviews-source-link {
    width: fit-content;
    margin: 28px auto 0;
    padding-bottom: 5px;

    display: block;

    border-bottom: 1px solid var(--border-gold);

    color: var(--olive-dark);
    font-size: 0.80rem;
    font-weight: 700;

    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.reviews-source-link:hover {
    color: var(--olive);
    border-color: var(--olive);
}

.reviews-source-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
    .review-card:hover {
        transform: translateY(-4px);
        border-color: rgba(185, 145, 82, 0.22);
        box-shadow: 0 22px 48px rgba(70, 68, 62, 0.075);
    }
}

@media (max-width: 900px) {
    .reviews-heading-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .reviews-summary {
        width: fit-content;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        min-height: 230px;
    }
}

@media (max-width: 620px) {
    .testimonials-section {
        padding: 78px 0 86px;
    }

    .reviews-heading-row {
        margin-bottom: 30px;
    }

    .reviews-summary {
        width: 100%;
        min-width: 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card,
    .review-card:last-child:nth-child(odd) {
        grid-column: auto;
        min-height: 0;
        padding: 24px;
    }

    .review-card blockquote {
        margin: 28px 0;
        font-size: 1.7rem;
    }

    .reviews-source-link {
        width: 100%;
        padding: 13px 16px;

        border: 1px solid var(--border-gold);
        border-radius: 999px;

        text-align: center;
    }
}



/* Bundled: css/sections/success-cases.css */
.success-cases-section {
    padding: 96px 0 112px;
}

.success-cases-intro-row,
.results-carousel-toolbar,
.results-carousel-dots,
.success-cases-disclaimer {
    width: min(calc(100% - 80px), 1380px);
    margin-inline: auto;
}

.success-cases-intro-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.success-cases-heading {
    max-width: 760px;
}

.results-carousel-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 10px;
    color: var(--text-light);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.results-carousel-meta-line {
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(185, 145, 82, 0.18));
}

.results-carousel {
    position: relative;
    margin-top: clamp(46px, 6vw, 76px);
}

.results-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.results-carousel-counter {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--olive-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
}

.results-carousel-counter-separator,
.results-carousel-counter [data-results-total] {
    color: var(--text-light);
    font-size: 0.54em;
}

.results-carousel-actions {
    display: flex;
    gap: 9px;
}

.results-carousel-button {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(89, 96, 76, 0.18);
    border-radius: 50%;
    background: rgba(252, 249, 244, 0.78);
    color: var(--olive-dark);
    cursor: pointer;
    transition:
        transform 260ms var(--ease-smooth),
        border-color 260ms var(--ease-smooth),
        background 260ms var(--ease-smooth),
        opacity 260ms ease;
}

.results-carousel-button span {
    transform: translateY(-1px);
    font-family: Georgia, serif;
    font-size: 1.8rem;
    line-height: 1;
}

.results-carousel-button:hover:not(:disabled),
.results-carousel-button:focus-visible:not(:disabled) {
    border-color: rgba(185, 145, 82, 0.42);
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-2px);
}

.results-carousel-button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.results-carousel-button:disabled {
    opacity: 0.28;
    cursor: default;
}

.success-cases-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(680px, 68vw, 900px);
    gap: clamp(20px, 2.4vw, 34px);
    align-items: start;
    width: 100%;
    padding:
        16px
        max(40px, calc((100vw - 1380px) / 2 + 40px))
        42px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: max(40px, calc((100vw - 1380px) / 2 + 40px));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.success-cases-grid::-webkit-scrollbar {
    display: none;
}

.success-cases-grid:focus-visible {
    outline: none;
}

.success-case-card {
    position: relative;
    min-width: 0;
    padding: clamp(16px, 2vw, 24px);
    overflow: hidden;
    border: 1px solid rgba(70, 68, 62, 0.08);
    border-radius: calc(var(--radius-lg) + 5px);
    background:
        radial-gradient(circle at 92% 10%, rgba(213, 190, 145, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(252, 249, 244, 0.98), rgba(233, 224, 211, 0.78));
    box-shadow:
        0 20px 52px rgba(70, 68, 62, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    isolation: isolate;
    opacity: 0.82;
    transform: scale(0.985);
    transition:
        opacity 380ms ease,
        transform 520ms var(--ease-smooth),
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.success-case-card[data-active] {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(185, 145, 82, 0.20);
    box-shadow:
        0 28px 72px rgba(70, 68, 62, 0.105),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.success-case-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    aspect-ratio: 1;
    border: 1px solid rgba(140, 146, 123, 0.10);
    border-radius: 50%;
    z-index: -1;
}

.success-case-featured-title {
    max-width: 720px;
    margin: 2px auto clamp(14px, 1.8vw, 20px);
    color: var(--olive-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-align: center;
    text-wrap: balance;
}

.success-case-card--featured {
    border-color: rgba(185, 145, 82, 0.18);
}

.success-case-card--featured[data-active] {
    border-color: rgba(185, 145, 82, 0.30);
}

.success-case-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.4vw, 16px);
    min-width: 0;
}

.success-case-card--featured .success-case-media {
    width: calc(100% - clamp(48px, 7vw, 72px));
    margin-inline: auto;
}

.success-case-figure {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(70, 68, 62, 0.09);
    border-radius: var(--radius-md);
    background: rgba(247, 243, 236, 0.84);
    box-shadow: 0 14px 30px rgba(70, 68, 62, 0.07);
}

.success-case-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--beige);
}

.success-case-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        inset 0 -55px 70px rgba(70, 68, 62, 0.035);
}

.success-case-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.success-case-image-wrap--crop-left img,
.success-case-image-wrap--crop-right img {
    position: absolute;
    top: 0;
    width: 200%;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.success-case-image-wrap--crop-left img {
    left: 0;
}

.success-case-image-wrap--crop-right img {
    left: -100%;
}

.success-case-image-wrap--crop-left-contain img,
.success-case-image-wrap--crop-right-contain img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
}

.success-case-image-wrap--crop-left-contain img {
    transform: translateX(-25%);
    clip-path: inset(0 50% 0 0);
}

.success-case-image-wrap--crop-right-contain img {
    transform: translateX(-75%);
    clip-path: inset(0 0 0 50%);
}

.success-case-figure figcaption {
    padding: 12px 14px 13px;
    color: var(--olive-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
}

.results-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.results-carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(89, 96, 76, 0.24);
    cursor: pointer;
    transition:
        width 320ms var(--ease-smooth),
        background 320ms ease;
}

.results-carousel-dot[data-active],
.results-carousel-dot[aria-current="true"] {
    width: 34px;
    background: var(--gold);
}

.results-carousel-dot:focus-visible {
    outline: 2px solid var(--olive-dark);
    outline-offset: 4px;
}

.success-cases-disclaimer {
    max-width: 780px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(185, 145, 82, 0.16);
    color: var(--text-light);
    font-size: 0.74rem;
    line-height: 1.75;
    text-align: center;
}

@media (max-width: 1080px) {
    .success-cases-intro-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .results-carousel-meta {
        padding-bottom: 0;
    }

    .success-cases-grid {
        grid-auto-columns: min(84vw, 780px);
    }
}

@media (max-width: 760px) {
    .success-cases-section {
        padding: 76px 0 88px;
    }

    .success-cases-intro-row,
    .results-carousel-toolbar,
    .results-carousel-dots,
    .success-cases-disclaimer {
        width: min(calc(100% - 40px), 920px);
    }

    .results-carousel-meta {
        display: none;
    }

    .results-carousel {
        margin-top: 38px;
    }

    .results-carousel-toolbar {
        margin-bottom: 12px;
    }

    .results-carousel-button {
        width: 44px;
        height: 44px;
    }

    .success-cases-grid {
        grid-auto-columns: min(90vw, 600px);
        gap: 16px;
        padding: 12px 20px 34px;
        scroll-padding-inline: 20px;
    }

    .success-case-card {
        padding: 14px;
        border-radius: var(--radius-lg);
    }

    .success-case-featured-title {
        margin-bottom: 12px;
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    }

    .success-case-media {
        gap: 8px;
    }

    .success-case-figure figcaption {
        padding: 10px 10px 11px;
        font-size: 0.61rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 520px) {
    .success-cases-section {
        padding: 68px 0 76px;
    }

    .success-cases-grid {
        grid-auto-columns: calc(100vw - 38px);
        padding-inline: 19px;
        scroll-padding-inline: 19px;
    }

    .success-case-card {
        padding: 10px;
        border-radius: var(--radius-md);
    }

    .success-case-featured-title {
        margin: 4px auto 10px;
        padding-inline: 6px;
        font-size: 1.35rem;
        line-height: 1.08;
    }

    .success-case-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .success-case-figure {
        border-radius: calc(var(--radius-md) - 2px);
    }

    .success-case-figure figcaption {
        padding: 9px 8px 10px;
        font-size: 0.58rem;
        letter-spacing: 0.10em;
    }
}

.reduce-motion .success-cases-grid {
    scroll-behavior: auto;
}

.reduce-motion .success-case-card,
.reduce-motion .results-carousel-button,
.reduce-motion .results-carousel-dot {
    transition: none;
}



/* Bundled: css/sections/location.css */
/* =========================================================
   LOCATION
   Desktop = texto + mapa integrado
   Mobile = texto + mapa debajo
========================================================= */

.location-section {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto 105px;

    padding: 0;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(420px, 1.12fr);

    align-items: stretch;

    min-height: 0;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--beige);

    box-shadow:
        0 18px 50px
        rgba(70, 68, 62, 0.055);
}

.location-content {
    padding: 65px 60px;

    align-self: center;
}

.location-content h2 {
    margin-bottom: 22px;
}

.location-content > p {
    max-width: 500px;

    margin-bottom: 30px;
}

.location-details {
    margin-bottom: 30px;
}

.location-detail {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 17px 0;

    border-bottom:
        1px solid var(--border);

    transition:
        padding-left 450ms var(--ease-smooth);
}

.location-detail:hover {
    padding-left: 5px;
}

.location-detail > span {
    flex: 0 0 auto;

    font-size: 0.9rem;
}

.location-detail strong {
    display: block;

    margin-bottom: 4px;

    color: var(--olive-dark);

    font-size: 0.82rem;
}

.location-detail p {
    margin: 0;

    font-size: 0.76rem;

    line-height: 1.7;
}

.location-map {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 420px;

    align-self: stretch;
    justify-self: stretch;

    overflow: hidden;

    background: var(--beige-dark);
}

.location-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 0;

    border: 0;

    filter:
        saturate(0.78)
        contrast(0.95);

    transition:
        filter 800ms var(--ease-smooth),
        transform 1000ms var(--ease-smooth);
}

.location-map:hover iframe {
    filter:
        saturate(0.95)
        contrast(1);

    transform: scale(1.008);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .location-section {
        width:
            min(
                calc(100% - 50px),
                var(--container)
            );

        grid-template-columns:
            1fr 1fr;

        margin-bottom: 80px;
    }

    .location-content {
        padding: 55px 40px;
    }

    .location-map {
        aspect-ratio: 4 / 3;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .location-section {
        width:
            calc(100% - 36px);

        margin:
            0 auto 70px;

        grid-template-columns: 1fr;

        border-radius: 24px;
    }

    .location-content {
        padding:
            55px 28px 45px;
    }

    .location-content h2 {
        font-size: 3rem;
    }

    .location-map {
        aspect-ratio: 16 / 9;

        min-height: 0;

        height: auto;
    }

    .location-map iframe {
        min-height: 0;

        height: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .location-map {
        aspect-ratio: 4 / 3;

        min-height: 0;

        height: auto;
    }

    .location-map iframe {
        min-height: 0;

        height: 100%;
    }

}


/* Bundled: css/sections/contact.css */
/* =========================================================
   CONTACT / FINAL CTA
========================================================= */

.contact-section {
    padding:
        78px 40px 82px;

    background:
        var(--olive-dark);

    text-align: center;
}

.contact-content {
    max-width: 720px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.contact-section .eyebrow {
    justify-content: center;

    margin-bottom: 18px;

    color: var(--gold-light);
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.contact-section h2 {
    max-width: 680px;

    margin:
        0 auto 18px;

    color: var(--ivory);

    font-size:
        clamp(
            2.65rem,
            3.6vw,
            3.65rem
        );

    line-height: 0.98;

    letter-spacing: -0.025em;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.contact-section p {
    max-width: 540px;

    margin:
        0 auto 27px;

    color:
        rgba(247, 243, 236, 0.68);

    font-size: 0.78rem;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   ACTIONS
--------------------------------------------------------- */

.contact-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 22px;
}

.contact-actions .btn {
    min-height: 48px;

    padding:
        0 25px;
}

.contact-link {
    color: var(--ivory);

    font-size: 0.76rem;
    font-weight: 600;

    transition:
        color 450ms var(--ease-smooth),
        transform 450ms var(--ease-smooth);
}

.contact-link:hover {
    color: var(--gold-light);

    transform:
        translateX(2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .contact-section {
        padding: 85px 25px;
    }

    .contact-section h2 {
        font-size: 3.2rem;
    }

    .contact-actions {
        flex-direction: column;
    }

}



/* =========================================================
   VISUAL RHYTHM
========================================================= */


/* Bundled: css/layout/visual-rhythm.css */
/* =========================================================
   VISUAL RHYTHM
   Profundidad editorial y superficies premium del sitio
========================================================= */

body.home-page {
    background:
        radial-gradient(circle at 8% 8%, rgba(213, 190, 145, 0.14), transparent 24%),
        radial-gradient(circle at 92% 34%, rgba(140, 146, 123, 0.10), transparent 26%),
        linear-gradient(180deg, var(--beige-light) 0%, var(--ivory) 46%, #F1EBE1 100%);
}

.home-page main {
    position: relative;
}

/* ---------------------------------------------------------
   SECCIONES EDITORIALES DE PORTADA
--------------------------------------------------------- */

.home-page .audience-section,
.home-page .services-section,
.home-page .experience-section,
.home-page .testimonials-section {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(70, 68, 62, 0.08);
    border-radius: clamp(24px, 3vw, 36px);
    box-shadow:
        0 24px 70px rgba(70, 68, 62, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.home-page .audience-section {
    margin-top: 28px;
    margin-bottom: 42px;
    padding: clamp(58px, 6vw, 82px) clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 88% 8%, rgba(213, 190, 145, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(252, 249, 244, 0.96), rgba(233, 224, 211, 0.70));
}

.home-page .audience-grid {
    gap: 12px;
    border: 0;
}

.home-page .audience-card,
.home-page .audience-card:nth-child(1),
.home-page .audience-card:nth-child(2),
.home-page .audience-card:nth-child(3),
.home-page .audience-card:nth-child(4) {
    border: 1px solid rgba(70, 68, 62, 0.08);
    border-radius: var(--radius-md);
    background: rgba(252, 249, 244, 0.66);
    box-shadow: 0 12px 30px rgba(70, 68, 62, 0.035);
}

.home-page .audience-card:last-child {
    border-right: 1px solid rgba(70, 68, 62, 0.08);
}

.home-page .audience-card:hover {
    background: rgba(252, 249, 244, 0.96);
    box-shadow: 0 18px 42px rgba(70, 68, 62, 0.07);
}

.home-page .services-section {
    margin-top: 24px;
    margin-bottom: 56px;
    padding: clamp(64px, 7vw, 94px) clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 12% 100%, rgba(140, 146, 123, 0.11), transparent 30%),
        linear-gradient(145deg, rgba(240, 235, 225, 0.88), rgba(247, 243, 236, 0.96));
}

.home-page .service-card {
    border-color: rgba(70, 68, 62, 0.09);
    background: rgba(252, 249, 244, 0.88);
    box-shadow: 0 16px 38px rgba(70, 68, 62, 0.045);
}

.home-page .service-card:hover {
    box-shadow: 0 24px 56px rgba(70, 68, 62, 0.09);
}

.home-page .experience-section {
    margin-top: 38px;
    margin-bottom: 54px;
    padding: clamp(64px, 7vw, 92px) clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 92% 4%, rgba(213, 190, 145, 0.13), transparent 26%),
        linear-gradient(145deg, rgba(247, 243, 236, 0.94), rgba(233, 224, 211, 0.70));
}

.home-page .testimonials-section {
    margin-top: 42px;
    margin-bottom: 54px;
    padding: clamp(62px, 7vw, 90px) clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 10% 8%, rgba(213, 190, 145, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(252, 249, 244, 0.96), rgba(240, 235, 225, 0.86));
}

.home-page .testimonial-placeholder {
    background: rgba(247, 243, 236, 0.82);
    box-shadow:
        0 20px 48px rgba(70, 68, 62, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.60);
}

/* ---------------------------------------------------------
   TITULARES Y MICROJERARQUÍA
--------------------------------------------------------- */

.home-page .section-heading > p:last-child,
.home-page .consultation-lead,
.home-page .testimonial-placeholder > p {
    color: var(--text);
}

.home-page .section-heading .eyebrow,
.home-page .consultation-header .eyebrow {
    letter-spacing: 0.16em;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .home-page .audience-section,
    .home-page .services-section,
    .home-page .experience-section,
    .home-page .testimonials-section {
        width: min(calc(100% - 50px), var(--container));
    }
}

@media (max-width: 760px) {
    .home-page .audience-section,
    .home-page .services-section,
    .home-page .experience-section,
    .home-page .testimonials-section {
        width: calc(100% - 36px);
        border-radius: 24px;
    }

    .home-page .audience-section {
        padding: 52px 20px 56px;
    }

    .home-page .services-section,
    .home-page .experience-section,
    .home-page .testimonials-section {
        padding: 56px 20px 60px;
    }

    .home-page .audience-grid {
        gap: 10px;
    }

    .home-page .audience-card,
    .home-page .audience-card:nth-child(2),
    .home-page .audience-card:nth-child(3),
    .home-page .audience-card:nth-child(4) {
        border: 1px solid rgba(70, 68, 62, 0.08);
    }
}

@media (max-width: 420px) {
    .home-page .audience-section,
    .home-page .services-section,
    .home-page .experience-section,
    .home-page .testimonials-section {
        width: calc(100% - 28px);
    }
}




/* =========================================================
   PAGE COMPONENTS
========================================================= */


/* Bundled: css/pages/service-faq.css */
.service-detail-process,
.service-detail-faq {
    scroll-margin-top: 118px;
}

.service-detail-faq {
    width: min(calc(100% - 80px), 1440px);
    margin-inline: auto;
    padding: 96px 0 104px;
    border-top: 1px solid var(--border);
}

.service-detail-faq-intro {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(42px, 6vw, 90px);
    align-items: end;
    margin-bottom: 54px;
}

.service-detail-faq-intro .service-detail-section-heading {
    margin-bottom: 0;
}

.service-detail-faq-intro > p {
    max-width: 720px;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.85;
}

.service-detail-faq-list {
    overflow: hidden;
    border: 1px solid rgba(70, 68, 62, 0.10);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(252, 249, 244, 0.96),
            rgba(233, 224, 211, 0.56)
        );
    box-shadow: 0 24px 65px rgba(70, 68, 62, 0.055);
}

.service-detail-faq-item {
    border-bottom: 1px solid rgba(70, 68, 62, 0.10);
}

.service-detail-faq-item:last-child {
    border-bottom: 0;
}

.service-detail-faq-item summary {
    min-height: 92px;
    padding: 25px clamp(22px, 3vw, 38px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 24px;
    align-items: center;
    cursor: pointer;
    list-style: none;
    color: var(--olive-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.42rem, 2vw, 1.9rem);
    font-weight: 600;
    line-height: 1.12;
    transition:
        background var(--transition),
        color var(--transition);
}

.service-detail-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-detail-faq-item summary:hover {
    background: rgba(185, 145, 82, 0.045);
}

.service-detail-faq-item summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -4px;
}

.service-detail-faq-icon {
    position: relative;
    width: 28px;
    height: 28px;
    display: block;
    border: 1px solid rgba(185, 145, 82, 0.38);
    border-radius: 50%;
    background: rgba(247, 243, 236, 0.72);
}

.service-detail-faq-icon::before,
.service-detail-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform var(--transition-fast);
}

.service-detail-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-detail-faq-item[open] .service-detail-faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.service-detail-faq-item[open] summary {
    background: rgba(140, 146, 123, 0.065);
}

.service-detail-faq-answer {
    padding: 0 clamp(22px, 3vw, 38px) 30px;
}

.service-detail-faq-answer p {
    max-width: 920px;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.82;
}

.service-detail-faq-answer a {
    width: fit-content;
    margin-top: 17px;
    padding-bottom: 4px;
    display: inline-block;
    border-bottom: 1px solid rgba(185, 145, 82, 0.42);
    color: var(--olive);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.service-detail-faq-answer a:hover {
    border-color: var(--olive);
    color: var(--olive-dark);
}

@media (max-width: 1120px) {
    .service-detail-faq-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 760px) {
    .service-detail-faq {
        width: calc(100% - 36px);
        padding: 68px 0 74px;
    }

    .service-detail-faq-intro {
        margin-bottom: 38px;
    }

    .service-detail-faq-list {
        border-radius: 22px;
    }

    .service-detail-faq-item summary {
        min-height: 82px;
        padding: 21px 20px;
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 18px;
        font-size: clamp(1.3rem, 6vw, 1.62rem);
    }

    .service-detail-faq-icon {
        width: 26px;
        height: 26px;
    }

    .service-detail-faq-answer {
        padding: 0 20px 25px;
    }

    .service-detail-faq-answer p {
        font-size: 0.9rem;
    }
}



/* Bundled: css/pages/service-faq-depth.css */
/* =========================================================
   FAQ DEPTH
   Jerarquía editorial para evitar bloques de texto planos
========================================================= */

.service-page .service-detail-faq {
    border-top: 0;
}

.service-page .service-detail-faq-intro {
    padding: clamp(34px, 4vw, 52px);
    border: 1px solid rgba(70, 68, 62, 0.08);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 12%, rgba(213, 190, 145, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(252, 249, 244, 0.92), rgba(233, 224, 211, 0.58));
    box-shadow: 0 18px 46px rgba(70, 68, 62, 0.04);
}

.service-page .service-detail-faq-list {
    border-color: rgba(70, 68, 62, 0.08);
    background: rgba(252, 249, 244, 0.80);
    box-shadow:
        0 26px 68px rgba(70, 68, 62, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.service-page .service-detail-faq-item {
    counter-increment: faq-item;
}

.service-page .service-detail-faq-list {
    counter-reset: faq-item;
}

.service-page .service-detail-faq-item summary {
    position: relative;
    padding-left: clamp(70px, 6vw, 94px);
    background: rgba(252, 249, 244, 0.62);
}

.service-page .service-detail-faq-item:nth-child(even) summary {
    background: rgba(233, 224, 211, 0.24);
}

.service-page .service-detail-faq-item summary::before {
    content: counter(faq-item, decimal-leading-zero);
    position: absolute;
    left: clamp(24px, 3vw, 38px);
    top: 50%;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transform: translateY(-50%);
}

.service-page .service-detail-faq-item[open] summary {
    background: rgba(140, 146, 123, 0.085);
}

.service-page .service-detail-faq-answer {
    padding-left: clamp(70px, 6vw, 94px);
    background: rgba(247, 243, 236, 0.72);
}

.service-page .service-detail-faq-answer a {
    margin-top: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(185, 145, 82, 0.22);
    border-radius: 999px;
    background: rgba(252, 249, 244, 0.72);
    color: var(--olive-dark);
    text-decoration: none;
}

.service-page .service-detail-faq-answer a:hover {
    border-color: rgba(185, 145, 82, 0.42);
    background: rgba(233, 224, 211, 0.68);
}

@media (max-width: 760px) {
    .service-page .service-detail-faq-intro {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .service-page .service-detail-faq-item summary {
        padding-left: 58px;
    }

    .service-page .service-detail-faq-item summary::before {
        left: 20px;
        font-size: 0.92rem;
    }

    .service-page .service-detail-faq-answer {
        padding-left: 58px;
    }
}




/* =========================================================
   BEHAVIORAL UI
========================================================= */


/* Bundled: css/components/reveal.css */
/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity 850ms var(--ease-smooth),
        transform 850ms var(--ease-smooth);
}

.reveal.revealed {
    opacity: 1;

    transform:
        translateY(0);
}



/* =========================================================
   RESPONSIVE OVERRIDES

   Se carga después de todas las secciones para preservar
   intencionalmente la cascada responsive global.
========================================================= */


/* Bundled: css/layout/responsive.css */
/* =========================================================
   GLOBAL RESPONSIVE CASCADE

   IMPORTANTE:
   Este archivo debe cargarse DESPUÉS de las secciones.

   Aquí viven únicamente los ajustes responsive globales
   y los cambios de composición por breakpoint.
========================================================= */


/* =========================================================
   TABLET / DESKTOP COMPACTO
========================================================= */

@media (max-width: 1050px) {

    /* -----------------------------------------------------
       GLOBAL CONTAINERS
    ----------------------------------------------------- */

    .navbar,
    .hero,
    .audience-section,
    .plans-section,
    .services-section,
    .approach-section,
    .experience-section,
    .testimonials-section,
    .footer-main,
    .footer-bottom {
        width:
            min(
                calc(100% - 50px),
                var(--container)
            );
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        grid-template-columns: 1fr;

        gap: 36px;

        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;

        min-height: 480px;
    }

    .hero h1 {
        font-size:
            clamp(
                4.3rem,
                8vw,
                6rem
            );
    }


    /* -----------------------------------------------------
       NAVIGATION
    ----------------------------------------------------- */

    .nav-menu {
        gap: 18px;
    }

    .nav-menu > a:not(.nav-cta) {
        font-size: 0.72rem;
    }


    /* -----------------------------------------------------
       AUDIENCE
    ----------------------------------------------------- */

    .audience-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .audience-card:nth-child(2) {
        border-right: 0;
    }

    .audience-card:nth-child(3),
    .audience-card:nth-child(4) {
        border-top:
            1px solid var(--border);
    }


    /* -----------------------------------------------------
       CONSULTATION

       Conservamos las dos columnas.
       No queremos convertir todavía la sección en una
       columna enorme.
    ----------------------------------------------------- */

    .consultation-section {
        padding: 52px;

        grid-template-columns:
            minmax(250px, 0.78fr)
            minmax(0, 1.22fr);

        column-gap: 45px;
        row-gap: 36px;
    }

    .consultation-header h2 {
        font-size:
            clamp(
                3rem,
                5vw,
                4.1rem
            );
    }

    .consultation-item {
        padding:
            18px 0;
    }

    .consultation-item h3 {
        font-size: 1.35rem;
    }

}


/* =========================================================
   MOBILE / TABLET VERTICAL
========================================================= */

@media (max-width: 760px) {

    /* -----------------------------------------------------
       GLOBAL CONTAINERS
    ----------------------------------------------------- */

    .navbar,
    .hero,
    .audience-section,
    .plans-section,
    .services-section,
    .approach-section,
    .experience-section,
    .testimonials-section,
    .footer-main,
    .footer-bottom {
        width:
            calc(100% - 36px);
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .navbar {
        min-height: 76px;
    }

    .brand-name {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* -----------------------------------------------------
       MOBILE MENU
    ----------------------------------------------------- */

    .nav-menu {
        position: fixed;

        top: 84px;

        right: 18px;
        left: 18px;

        padding: 25px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        background:
            rgba(252, 249, 244, 0.94);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        border:
            1px solid var(--border);

        border-radius:
            var(--radius-md);

        box-shadow:
            var(--shadow-soft);

        z-index: 1100;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a {
        padding:
            13px 8px;
    }

    .nav-menu > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 10px;

        text-align: center;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        min-height: auto;

        padding:
            100px 0
            48px;

        gap: 36px;
    }

    .hero h1 {
        font-size:
            clamp(
                3.15rem,
                15vw,
                5rem
            );
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-image-frame {
        width:
            min(
                100%,
                430px
            );

        aspect-ratio: 1 / 1;

        margin-inline: auto;
    }


    /* -----------------------------------------------------
       AUDIENCE
    ----------------------------------------------------- */

    .audience-section {
        padding:
            65px 0
            70px;
    }

    .audience-section .section-heading {
        margin-bottom: 35px;
    }

    .audience-section .section-heading h2 {
        font-size: 3.15rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card,
    .audience-card:nth-child(2),
    .audience-card:nth-child(3),
    .audience-card:nth-child(4) {
        min-height: auto;

        padding:
            27px
            22px
            30px;

        border-right: 0;
        border-top: 0;

        border-bottom:
            1px solid var(--border);
    }

    .audience-card:last-child {
        border-bottom: 0;
    }

    .audience-card h3 {
        margin-top: 32px;

        font-size: 2.15rem;
    }

    .audience-card p {
        max-width: 330px;
    }


    /* -----------------------------------------------------
       CONSULTATION

       El encabezado pasa arriba, pero la lista NO se
       convierte inmediatamente en siete filas gigantes.

       En este rango usamos dos columnas compactas.
    ----------------------------------------------------- */

    .consultation-section {
        width:
            calc(100% - 36px);

        margin:
            28px auto
            75px;

        padding:
            40px
            30px;

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .consultation-header {
        max-width: 560px;
    }

    .consultation-header h2 {
        max-width: 500px;

        margin-bottom: 18px;

        font-size:
            clamp(
                2.8rem,
                9vw,
                3.5rem
            );
    }

    .consultation-lead {
        max-width: 540px;

        font-size: 0.78rem;

        line-height: 1.7;
    }


    /* Dos columnas para reducir altura */

    .consultation-content {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        column-gap: 24px;

        border-top:
            1px solid var(--border);
    }


    .consultation-item {
        grid-template-columns:
            32px
            minmax(0, 1fr);

        gap: 10px;

        padding:
            17px 0;

        align-content: start;
    }


    .consultation-number {
        font-size: 1rem;
    }


    .consultation-item h3 {
        margin-bottom: 5px;

        font-size: 1.18rem;

        line-height: 1.12;
    }


    .consultation-item p {
        font-size: 0.68rem;

        line-height: 1.55;
    }


    /* Presencial ocupa el ancho completo */

    .consultation-item-featured {
        grid-column: 1 / -1;

        margin-top: 14px;

        padding:
            19px
            18px;
    }


    .consultation-item-featured:hover {
        padding-left: 22px;
    }


    /* Footer todavía horizontal si hay espacio */

    .consultation-footer {
        padding-top: 24px;

        gap: 22px;
    }


    .consultation-footer > p {
        max-width: 300px;
    }


    .consultation-footer .btn {
        width: auto;
    }


    /* -----------------------------------------------------
       GENERAL SECTIONS
    ----------------------------------------------------- */

    .services-section,
    .approach-section,
    .experience-section,
    .testimonials-section {
        padding-top: 70px;

        padding-bottom: 75px;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer-main {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .footer-brand-logo {
        width:
            min(
                100%,
                250px
            );
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   COMPACT MOBILE
   Aquí sí necesitamos cambiar Consultation a una columna.
========================================================= */

@media (max-width: 520px) {

    /* -----------------------------------------------------
       CONSULTATION
    ----------------------------------------------------- */

    .consultation-section {
        width:
            calc(100% - 28px);

        margin:
            24px auto
            65px;

        padding:
            34px
            22px;

        gap: 26px;

        border-radius:
            var(--radius-md);
    }


    .consultation-header h2 {
        font-size: 2.8rem;
    }


    .consultation-content {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .consultation-item {
        grid-template-columns:
            30px
            minmax(0, 1fr);

        padding:
            15px 0;
    }


    .consultation-item h3 {
        font-size: 1.2rem;
    }


    .consultation-item p {
        max-width: none;

        font-size: 0.69rem;

        line-height: 1.55;
    }


    .consultation-item-featured {
        grid-column: auto;

        padding:
            18px
            15px;
    }


    .consultation-item-featured:hover {
        padding-left: 18px;
    }


    .consultation-footer {
        flex-direction: column;

        align-items: stretch;

        gap: 18px;
    }


    .consultation-footer > p {
        max-width: none;
    }


    .consultation-footer .btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        width:
            calc(100% - 28px);

        padding:
            88px 0
            52px;

        gap: 30px;
    }

    .hero h1 {
        font-size: 3.35rem;
    }

    .hero-image-frame {
        width: 100%;
    }


    /* -----------------------------------------------------
       AUDIENCE
    ----------------------------------------------------- */

    .audience-section .section-heading h2 {
        font-size: 2.8rem;
    }

    .audience-card h3 {
        font-size: 1.95rem;
    }


    /* -----------------------------------------------------
       CONSULTATION
    ----------------------------------------------------- */

    .consultation-section {
        width:
            calc(100% - 24px);

        padding:
            30px
            18px;

        margin-bottom: 60px;
    }


    .consultation-header h2 {
        font-size: 2.55rem;
    }


    .consultation-lead {
        font-size: 0.74rem;
    }


    .consultation-item {
        grid-template-columns:
            28px
            minmax(0, 1fr);

        gap: 9px;

        padding:
            14px 0;
    }


    .consultation-item h3 {
        font-size: 1.15rem;
    }


    .consultation-item p {
        font-size: 0.67rem;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer-brand-logo {
        width:
            min(
                100%,
                220px
            );
    }

}



/* Bundled: css/layout/ux-polish.css */
/* =========================================================
   UX / RESPONSIVE POLISH
   Ajustes posteriores al QA del 31-ago-2026
========================================================= */

:root {
    --text-light: #707068;
    --text-muted: #77766E;
}


/* =========================================================
   LEGIBILIDAD
========================================================= */

.hero-description {
    font-size: clamp(0.90rem, 1vw, 0.98rem);
}

.audience-section .section-heading > p,
.audience-card p {
    font-size: 0.86rem;
}

.consultation-lead {
    font-size: 0.90rem;
}

.consultation-item p {
    font-size: 0.86rem;
}

.consultation-footer > p {
    font-size: 0.82rem;
}

.service-card li {
    font-size: 0.88rem;
}

.services-secondary-links small {
    font-size: 0.82rem;
}

.experience-main-info > p {
    font-size: 0.86rem;
}

.location-detail strong {
    font-size: 0.88rem;
}

.location-detail p {
    font-size: 0.84rem;
}

.contact-section p {
    font-size: 0.86rem;
}

.contact-link {
    font-size: 0.82rem;
}

.service-detail-faq-answer a {
    font-size: 0.76rem;
}

.success-cases-disclaimer {
    font-size: 0.82rem;
}


/* =========================================================
   HEADER / TABLET
========================================================= */

@media (max-width: 1050px) {
    .brand-name {
        display: none;
    }

    .navbar {
        gap: 24px;
    }
}


/* =========================================================
   NAV MÓVIL / TABLET
   Se activa antes para evitar una barra saturada en 768–900px.
========================================================= */

@media (max-width: 900px) {
    .navbar {
        min-height: 76px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 44px;
    }

    .nav-menu {
        position: fixed;
        top: 84px;
        right: 18px;
        left: 18px;

        max-height: calc(100dvh - 104px);
        padding: 25px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;

        background: rgba(252, 249, 244, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);

        z-index: 1100;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a {
        padding: 13px 8px;
    }

    .nav-menu > a:not(.nav-cta),
    .nav-dropdown-toggle {
        font-size: 0.82rem;
    }

    .nav-menu > a:not(.nav-cta)::after,
    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-cta {
        margin-top: 10px;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 13px 8px;
        justify-content: space-between;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        max-height: 0;
        padding: 0 0 0 14px;
        gap: 1px;

        overflow: hidden;

        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        border: 0;
        border-radius: 0;
        box-shadow: none;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;

        transition:
            max-height 420ms var(--ease-smooth),
            opacity var(--transition-fast),
            visibility var(--transition-fast);
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 360px;
        padding-top: 4px;
        padding-bottom: 8px;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 11px 12px;

        border-left: 1px solid var(--border);
        border-radius: 0 10px 10px 0;

        font-size: 0.78rem;
    }
}


/* =========================================================
   RESULTADOS / TABLET VERTICAL
   Mantiene la evidencia vertical sin recorte panorámico.
========================================================= */

@media (min-width: 521px) and (max-width: 760px) {
    .success-case-media--timeline
    .success-case-figure:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: min(100%, 420px);
        justify-self: center;
    }

    .success-case-media--timeline
    .success-case-figure:last-child:nth-child(odd) img {
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }
}


/* =========================================================
   COMPACT MOBILE
========================================================= */

@media (max-width: 520px) {
    .audience-card p,
    .consultation-item p,
    .location-detail p,
    .contact-section p {
        font-size: 0.86rem;
    }

    .services-secondary-links small {
        font-size: 0.84rem;
    }
}




/* =========================================================
   ACCESSIBILITY

   Siempre al final para que las preferencias de movimiento
   tengan prioridad sobre transiciones y animaciones.
========================================================= */


/* Bundled: css/base/accessibility.css */
/* =========================================================
   ACCESSIBILITY
   Reduced motion
========================================================= */


/* ---------------------------------------------------------
   CLASE CONTROLADA POR JAVASCRIPT
--------------------------------------------------------- */

.reduce-motion {
    scroll-behavior: auto;
}

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
    animation-duration:
        0.01ms !important;

    animation-iteration-count:
        1 !important;

    transition-duration:
        0.01ms !important;

    scroll-behavior:
        auto !important;
}


/* ---------------------------------------------------------
   PREFERENCIA DEL SISTEMA
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}

