/* ==========================================================================
   1. RESET & VARIABLES GLOBALES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}
}

:root {
    --color-primario: #a98655;
    --color-oscuro: #302a23;
    --color-claro: #fdfbf7;
    --color-blanco: #ffffff;
    --color-gris: #70675b;
    --color-gris-linea: #e9e2d8;
    --color-nude: #f3ece3;
    --color-hoja: #65765e;
    --color-hoja-suave: #edf1e9;
    --color-hoja-linea: rgba(101, 118, 94, 0.32);
    --color-verde-soft: var(--color-hoja-suave);
    --color-verde-texto: #52634d;
    --sombra-suave: 0 12px 36px rgba(65, 49, 30, 0.055);
    --fuente-titulo: 'Cormorant Garamond', serif;
    --fuente-cuerpo: 'Manrope', sans-serif;
    --transicion: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fuente-cuerpo);
    background-color: var(--color-claro);
    color: var(--color-oscuro);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--color-hoja);
    outline-offset: 3px;
}

.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-ready .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .reveal-ready .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
        will-change: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   1.1 PROMO BAR SUPERIOR (DINÁMICA / CONFIGURABLE)
   ========================================================================== */
.promo-bar {
    background: #312b24;
    color: var(--color-blanco);
    padding: 9px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(245, 220, 174, 0.16);
    position: relative;
    z-index: 1001;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.promo-bar:hover {
    background: #3b342c;
}

.promo-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.promo-badge {
    background: rgba(245, 220, 174, 0.12);
    color: #f5dcae;
    border: 1px solid rgba(245, 220, 174, 0.2);
    font-size: 0.61rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.promo-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.promo-link {
    color: #f5dcae;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transicion);
}

.promo-link:hover {
    color: #f5e4c3;
}

.promo-link i {
    transition: transform 0.25s ease;
}

.promo-link:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   2. HEADER & NAVBAR
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 78px;
    background: linear-gradient(90deg, rgba(253, 251, 247, 0.97), rgba(248, 249, 243, 0.94));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gris-linea);
    box-shadow: none;
    z-index: 1000;
    padding: 10px 0;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.header.is-scrolled {
    background: rgba(253, 251, 247, 0.98);
    border-bottom-color: rgba(101, 118, 94, 0.24);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 58px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-oscuro);
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--fuente-titulo);
    color: var(--color-oscuro);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 0.9;
}

.brand-tagline {
    color: #705f4a;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-top: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link-optional,
.nav-link-faq {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: #51493e;
    font-size: 0.71rem;
    font-weight: 500;
    letter-spacing: 0.035em;
    transition: var(--transicion);
    position: relative;
    padding: 7px 0;
}

.nav-link:hover {
    color: var(--color-hoja);
}

.btn-nav {
    border: 1px solid var(--color-oscuro);
    padding: 10px 17px;
    border-radius: 999px;
    background: var(--color-oscuro);
    color: var(--color-blanco) !important;
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: var(--transicion);
}

.btn-nav:hover {
    background: #495443;
    border-color: #495443;
    color: var(--color-blanco) !important;
}

.nav-mobile-socials {
    display: none;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--color-gris-linea);
    text-align: center;
}

.mobile-socials-title {
    font-size: 0.75rem;
    color: var(--color-gris);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-socials-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mobile-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transicion);
}

.mobile-social-btn.wa {
    background: var(--color-hoja-suave);
    color: var(--color-hoja);
    border: 1px solid var(--color-hoja-linea);
}

.mobile-social-btn.ig {
    background: #f7f1e9;
    color: #765a3b;
    border: 1px solid rgba(118, 90, 59, 0.2);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--color-gris-linea);
    border-radius: 50%;
    font-size: 1.15rem;
    color: var(--color-oscuro);
    cursor: pointer;
    padding: 7px;
}

/* ==========================================================================
   3. HERO SECTION (MINIMALISTA, FEMENINO & ELEGANTE)
   ========================================================================== */
.hero-section {
    position: relative;
    isolation: isolate;
    min-height: clamp(580px, 67vh, 740px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding: 0;
    background: #514638 url('assets/nativa-estetica.png') center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(30, 25, 19, 0.78) 0%, rgba(30, 25, 19, 0.58) 38%, rgba(44, 53, 38, 0.28) 74%, rgba(30, 25, 19, 0.14) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 84px 0 94px;
}

.hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 35px;
    align-items: center;
}

.hero-content {
    max-width: 635px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #e6dece;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 12px; /* 🔽 Reducido de 24px a 12px para acercarlo al título */
    padding: 1px 0;
}

.hero-content h1 {
    font-family: var(--fuente-titulo);
    color: #fffdf9;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem); /* 🔽 Reducido el tamaño máximo para que respire */
    font-weight: 500;
    letter-spacing: -0.02em; /* 🔽 Separado un poquito el tracking para que no se encime */
    line-height: 1.1; /* 🔼 Aumentado de 0.98 a 1.1 para darle aire entre líneas */
    margin-bottom: 16px; /* 🔽 Reducido de 22px a 16px */
    max-width: 620px;
}

.hero-subtitle {
    color: rgba(255, 253, 249, 0.80); /* 🔽 Bajada la opacidad de 0.88 a 0.80 para dar jerarquía visual */
    font-size: 0.88rem; /* 🔽 Reducido sutilmente de 0.94rem a 0.88rem */
    line-height: 1.6; /* 🔽 Ajustado para textos más compactos y limpios */
    margin: 0 0 24px; /* 🔽 Reducido el margen inferior de 33px a 24px */
    max-width: 500px; /* 🔽 Estrechado un poco para que no ocupe tanto ancho */
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto;
}

/* HERO TEMPORAL */
@media (prefers-reduced-motion: no-preference) {
    .hero-content.hero-temporal {
        transition: max-width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-content.hero-temporal .hero-badge,
    .hero-content.hero-temporal h1,
    .hero-content.hero-temporal .hero-subtitle {
        opacity: 0;
        overflow: hidden;
        transform: translateY(8px);
        transition:
            opacity 0.7s ease,
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            max-height 0.7s ease,
            height 0.7s ease,
            margin 0.7s ease,
            padding 0.7s ease;
        will-change: opacity, transform, max-height, height, margin;
    }

    .hero-content.hero-temporal .hero-badge {
        height: 1.5em;
        max-height: 1.5em;
    }

    .hero-content.hero-temporal h1,
    .hero-content.hero-temporal .hero-subtitle {
        max-height: 11em;
    }

    .hero-content.hero-copy-visible .hero-badge,
    .hero-content.hero-copy-visible h1,
    .hero-content.hero-copy-visible .hero-subtitle {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-content.hero-temporal .hero-actions {
        transition:
            width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            max-width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            gap 0.7s ease,
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-content.hero-copy-hidden .hero-badge,
    .hero-content.hero-copy-hidden h1,
    .hero-content.hero-copy-hidden .hero-subtitle {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        pointer-events: none;
        transform: translateY(-8px);
    }

    .hero-content.hero-copy-hidden .hero-badge {
        height: 0;
    }

    .hero-content.hero-copy-hidden {
        max-width: 100%;
    }

    .hero-content.hero-copy-hidden .hero-actions {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        width: min(100%, 470px);
        max-width: 470px;
        margin: 0 auto;
        gap: 8px;
        transform: translateY(0);
    }

    .hero-content.hero-copy-hidden .hero-actions .btn-primary,
    .hero-content.hero-copy-hidden .hero-actions .btn-secondary {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
    }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
    .hero-content.hero-temporal .hero-actions {
        position: relative;
        height: 101px;
        max-width: 360px;
        margin: 0 auto;
        transition:
            height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            max-width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            gap 0.7s ease;
    }

    .hero-content.hero-temporal .hero-actions .btn-primary,
    .hero-content.hero-temporal .hero-actions .btn-secondary {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 0;
        width: 100% !important;
        white-space: nowrap;
        transition:
            top 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            left 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            padding 0.7s ease,
            font-size 0.7s ease,
            gap 0.7s ease;
    }

    .hero-content.hero-temporal .hero-actions .btn-secondary {
        top: 55px;
    }

    .hero-content.hero-copy-hidden .hero-actions {
        height: 46px;
        width: 100% !important;
        max-width: 360px;
        gap: 8px !important;
    }

    .hero-content.hero-copy-hidden .hero-actions .btn-primary,
    .hero-content.hero-copy-hidden .hero-actions .btn-secondary {
        top: 0;
        width: calc(50% - 4px) !important;
        padding: 10px 8px !important;
        font-size: 0.7rem !important;
        gap: 5px;
    }

    .hero-content.hero-copy-hidden .hero-actions .btn-secondary {
        left: calc(50% + 4px);
    }
}

@media (min-width: 768px) {
    .hero-section {
        background-position: 57% center;
    }
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .hero-content.hero-temporal {
        transform: translateY(0);
        transition:
            max-width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-content.hero-temporal .hero-actions {
        width: 100%;
        max-width: 635px;
    }

    .hero-content.hero-copy-hidden {
        max-width: 635px;
        transform: translateY(clamp(120px, 18vh, 185px));
    }

    .hero-content.hero-copy-hidden .hero-badge {
        opacity: 1;
        height: 1.5em;
        max-height: 1.5em;
        margin-bottom: 12px;
        padding: 1px 0;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-content.hero-copy-hidden .hero-actions {
        justify-content: flex-start;
        width: min(100%, 440px);
        max-width: 440px;
        margin: 0;
    }
}

@media (max-width: 350px) and (prefers-reduced-motion: no-preference) {
    .hero-content.hero-copy-hidden .hero-actions {
        gap: 6px !important;
    }

    .hero-content.hero-copy-hidden .hero-actions .btn-primary,
    .hero-content.hero-copy-hidden .hero-actions .btn-secondary {
        width: calc(50% - 3px) !important;
        padding: 10px 6px !important;
        font-size: 0.64rem !important;
        gap: 4px;
    }

    .hero-content.hero-copy-hidden .hero-actions .btn-secondary {
        left: calc(50% + 3px);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: var(--color-oscuro);
    color: var(--color-blanco);
    padding: 13px 21px;
    border: 1px solid var(--color-oscuro);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: var(--transicion);
    box-shadow: none;
}

.btn-primary:hover {
    background: #705f4a;
    border-color: #705f4a;
    color: var(--color-blanco);
    transform: translateY(-1px);
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: transparent;
    color: var(--color-oscuro);
    border: 1px solid var(--color-oscuro);
    padding: 13px 21px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: var(--transicion);
}

.btn-secondary:hover {
    background: var(--color-hoja-suave);
    border-color: var(--color-hoja);
    transform: translateY(-1px);
}

.hero-actions .btn-primary {
    background: #fffdf9;
    border-color: #fffdf9;
    color: var(--color-oscuro);
}

.hero-actions .btn-primary:hover {
    background: #eadac1;
    border-color: #eadac1;
    color: var(--color-oscuro);
}

.hero-actions .btn-secondary {
    border-color: rgba(255, 253, 249, 0.68);
    color: #fffdf9;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 253, 249, 0.13);
    border-color: #fffdf9;
    color: #fffdf9;
}

.hero-image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--color-blanco);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: scale(1.15) translateY(2px);
}

/* ==========================================================================
   4. TÍTULOS DE SECCIÓN & TRAYECTORIA
   ========================================================================== */
.services-section, 
.why-choose-section {
    padding: 104px 0;
    background: #fffefa;
}

.services-section:not(.combos-section) {
    padding-top: 0;
}

.trayectoria-badge {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 64px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 64px auto 88px !important;
    max-width: 1050px !important;
}

.trust-item {
    position: relative !important;
    display: grid !important;
    grid-template-rows: 3.2em 1fr !important;
    align-content: start !important;
    padding: 18px 20px !important;
    margin: 0 !important;
    background: rgba(255, 253, 249, 0.35) !important;
    border: 1px solid rgba(89, 72, 50, 0.08) !important;
    box-shadow: none !important;
    text-align: center !important;
    text-decoration: none !important;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease !important;
}

.trust-item + .trust-item {
    border: 0 !important;
    border: 1px solid rgba(89, 72, 50, 0.08) !important;
}

.trust-item::before,
.trust-item::after {
    display: none !important;
    content: none !important;
}

.trust-item strong {
    font-family: var(--fuente-titulo) !important;
    font-size: clamp(1.7rem, 2vw, 2rem) !important;
    font-weight: 500 !important;
    color: var(--color-oscuro) !important;
    line-height: 1 !important;
    letter-spacing: -0.015em !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 3.2em !important;
}

.trust-item span {
    font-family: var(--fuente-cuerpo) !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    color: var(--color-gris) !important;
    line-height: 1.65 !important;
    max-width: 260px !important;
    margin: 7px auto 0 !important;
    display: block !important;
}

@media (hover: hover) and (pointer: fine) {
    .trust-item:hover {
        transform: translateY(-3px) !important;
        background: rgba(255, 250, 240, 0.75) !important;
        border-color: var(--color-primario) !important;
        box-shadow: 0 8px 24px rgba(89, 72, 50, 0.06) !important;
    }
}

.section-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-primario);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.section-title-container h2 {
    font-family: var(--fuente-titulo);
    font-size: clamp(2.25rem, 3.7vw, 3.45rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-oscuro);
    line-height: 1.02;
}

.section-desc {
    font-size: 0.84rem;
    color: var(--color-gris);
    line-height: 1.75;
    margin-top: 14px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================================================
   DISPONIBILIDAD: DEPILACIÓN DEFINITIVA
   =========================================================================== */
.depilation-promo-section {
    padding: 42px 0 0;
    background: #fffefa;
}

.depilation-promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 22px 26px;
    color: var(--color-oscuro);
    text-decoration: none;
    background: rgba(243, 236, 227, 0.68);
    border: 1px solid rgba(169, 134, 85, 0.42);
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(65, 49, 30, 0.025);
    transition: var(--transicion);
}

.depilation-promo-content {
    min-width: 0;
}

.depilation-promo-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: var(--color-primario);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.3;
}

.depilation-promo-eyebrow .fa-circle {
    font-size: 0.42rem;
}

.depilation-promo-title {
    display: block;
    font-family: var(--fuente-titulo);
    font-size: clamp(1.8rem, 3.1vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
}

.depilation-promo-content p {
    max-width: 620px;
    margin-top: 7px;
    color: var(--color-gris);
    font-size: 0.81rem;
    line-height: 1.55;
}

.depilation-promo-cta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: var(--color-primario);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .depilation-promo-banner:hover {
        border-color: var(--color-primario);
        box-shadow: 0 8px 18px rgba(65, 49, 30, 0.06);
        transform: translateY(-2px);
    }

    .depilation-promo-banner:hover .depilation-promo-cta {
        transform: translateX(3px);
    }
}

#depilacion-definitiva {
    scroll-margin-top: 130px;
    transition: border-color 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

#depilacion-definitiva.is-depilation-highlight {
    border-color: rgba(169, 134, 85, 0.75) !important;
    background: #fffaf2 !important;
    box-shadow: 0 12px 30px rgba(169, 134, 85, 0.20), 0 0 0 3px rgba(169, 134, 85, 0.10) !important;
    transform: translateY(-2px) !important;
}

.depilation-whatsapp-direct {
    text-decoration: none;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    #depilacion-definitiva .depilation-whatsapp-direct:hover {
        color: #856740;
        transform: translateX(2px);
    }
}

@media (max-width: 767px) {
    #depilacion-definitiva .depilation-whatsapp-direct {
        display: flex !important;
        align-items: center;
        min-height: 30px;
        padding: 3px 0;
    }
}

/* ==========================================================================
   5. TRATAMIENTOS & PRECIOS REALES (AIRY & MINIMAL)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-gris-linea);
    border-radius: 0;
    padding: 0 0 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
    transition: var(--transicion);
    box-shadow: none;
}

.service-card:hover {
    border-color: var(--color-hoja-linea);
    transform: translateY(-2px);
    box-shadow: none;
}

.card-image-wrapper {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.35s ease;
}

.service-card:hover .card-image-wrapper img {
    transform: scale(1.02);
}

.card-info {
    flex-grow: 1;
}

.card-badge {
    display: inline-block;
    background: transparent;
    color: #856740;
    font-size: 0.58rem;
    font-weight: 600;
    padding: 0;
    margin-bottom: 7px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.card-badge.highlight-badge {
    background: transparent;
    color: var(--color-hoja);
}

.card-badge.seasonal-badge {
    background: transparent;
    color: #9c6338;
}

.seasonal-card {
    border-color: rgba(156, 99, 56, 0.38);
}

.service-card h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 4px;
    color: var(--color-oscuro);
}

.card-problem {
    font-size: 0.8rem;
    color: var(--color-gris);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.card-price-row {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-ref {
    color: #91877b;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.25;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(112, 103, 91, 0.72);
}

.price-single {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-oscuro);
}

.price-pack {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primario);
}

.solo-pack, .solo-single {
    font-size: 0.92rem;
}

.price-seasonal {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ea580c;
}

.btn-card-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.76rem;
    color: var(--color-primario);
    font-weight: 600;
    transition: var(--transicion);
}

.service-card:hover .btn-card-more {
    color: var(--color-hoja);
    transform: translateX(3px);
}

/* ==========================================================================
   6. COMBOS EXCLUSIVOS & PACKS
   ========================================================================== */
.combos-section {
    padding: 104px 0;
    background: #f4ede4;
}

.combos-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 25px 5px;
    -webkit-overflow-scrolling: touch;
}

.combos-grid::-webkit-scrollbar {
    height: 6px;
}
.combos-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.combos-grid::-webkit-scrollbar-thumb {
    background: var(--color-primario);
    border-radius: 10px;
}

.combo-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: var(--color-blanco);
    border-radius: 2px;
    padding: 29px;
    border: 1px solid rgba(89, 72, 50, 0.1);
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: var(--color-hoja-linea);
}

.combo-card.combo-featured {
    border-color: rgba(159, 127, 76, 0.34);
    box-shadow: none;
}

.combo-badge {
    align-self: flex-start;
    background: var(--color-nude);
    color: var(--color-primario);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.combo-badge.highlight-badge {
    background: var(--color-hoja-suave);
    color: var(--color-hoja);
}

.combo-title {
    font-family: var(--fuente-titulo);
    font-size: 1.35rem;
    color: var(--color-oscuro);
    line-height: 1.2;
    margin-bottom: 6px;
    min-height: 3.24rem; 
}

.combo-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primario);
    margin-bottom: 10px;
}

.combo-price small {
    font-size: 0.78rem;
    font-weight: normal;
    display: block;
    color: var(--color-gris);
}

.combo-desc {
    font-size: 0.82rem;
    color: var(--color-gris);
    margin-bottom: 16px;
    line-height: 1.4;
}

.combo-card .card-actions {
    margin-top: auto; 
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swipe-hint {
    text-align: center;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--color-gris);
}

.combos-more {
    margin-top: 10px;
    border-top: 1px solid var(--color-gris-linea);
}

.combos-more summary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--color-oscuro);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    list-style: none;
}

.combos-more summary::-webkit-details-marker {
    display: none;
}

.combos-more summary i {
    color: var(--color-hoja);
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.combos-more[open] summary i {
    transform: rotate(90deg);
}

.combos-more-content {
    overflow: hidden;
}

.combos-more[open] .combos-more-content {
    animation: disclosure-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.combos-grid-more {
    margin-top: 14px;
}

@keyframes disclosure-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================================================
   6.2 EL ESPACIO
   ========================================================================== */
.space-section {
    padding: 104px 0;
    background: #332e27;
    color: #fffdf9;
}

.space-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.space-image-wrapper {
    overflow: hidden;
}

.space-image-wrapper img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    filter: saturate(0.86) brightness(0.86);
    transition: transform 0.45s ease;
}

.space-image-wrapper:hover img {
    transform: scale(1.02);
}

.space-content {
    max-width: 480px;
}

.space-content .subtitle {
    color: #cdd8c2;
}

.space-content h2 {
    font-family: var(--fuente-titulo);
    color: #fffdf9;
    font-size: clamp(2.35rem, 4vw, 3.65rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.space-content > p {
    color: rgba(255, 253, 249, 0.74);
    font-size: 0.88rem;
    line-height: 1.75;
}

.space-points {
    display: grid;
    gap: 8px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.space-points li {
    color: #f1ece2;
    font-size: 0.78rem;
}

.space-points li::before {
    content: '—';
    color: #c4d0b9;
    margin-right: 9px;
}

.space-content .btn-secondary {
    width: auto;
    border-color: rgba(255, 253, 249, 0.62);
    color: #fffdf9;
}

.space-content .btn-secondary:hover {
    background: rgba(205, 216, 194, 0.13);
    border-color: #cdd8c2;
}

/* ==========================================================================
   6.3 ANTES Y DESPUÉS (GALERÍA DE CASOS REALES)
   ========================================================================== */
.before-after-section {
    padding: 104px 0;
    background: #3b342d;
}

.before-after-section .section-title-container h2 {
    color: #fffdf9;
}

.before-after-section .section-desc {
    color: rgba(255, 253, 249, 0.7);
}

.before-after-section .subtitle {
    color: #cbd7bf;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ba-card {
    background: var(--color-blanco);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(89, 72, 50, 0.09);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: var(--transicion);
}

.ba-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
    border-color: var(--color-hoja-linea);
}

.ba-image-container {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ba-card:hover .ba-image-container img {
    transform: scale(1.02);
}

.ba-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #302a23;
    color: var(--color-blanco);
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ba-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ba-content h4 {
    font-family: var(--fuente-titulo);
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--color-oscuro);
}

.ba-content p {
    font-size: 0.82rem;
    color: var(--color-gris);
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
}

.ba-pill {
    align-self: flex-start;
    background: var(--color-verde-soft);
    color: var(--color-verde-texto);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}



/* ==========================================================================
   7. CONSULTA DE DISPONIBILIDAD
   ========================================================================== */
.booking-section {
    padding: 108px 0;
    background: #f4ede4;
}

.booking-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: #fffefa;
    border: 1px solid rgba(89, 72, 50, 0.12);
    border-radius: 2px;
    padding: 34px;
}

.consultation-wrapper {
    display: grid;
    gap: 24px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
}

.booking-service-field {
    width: 100%;
    max-width: 680px;
}

.booking-details {
    display: grid;
    gap: 18px;
    max-height: 1600px;
    margin-top: 18px;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
    visibility: visible;
}

.booking-details.hidden {
    display: grid !important;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.25s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    visibility: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.form-group label {
    color: var(--color-oscuro);
    font-size: 0.82rem;
    font-weight: 600;
}

.form-group label span {
    color: var(--color-gris);
    font-weight: 400;
}

.form-control {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(89, 72, 50, 0.13);
    border-radius: 8px;
    background: #fdfaf5;
    color: var(--color-oscuro);
    font-family: var(--fuente-cuerpo);
    font-size: 0.88rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-hoja);
    background: #fffefa;
    box-shadow: 0 0 0 3px rgba(101, 118, 94, 0.12);
}

.consultation-summary {
    display: grid;
    gap: 4px;
    padding: 13px 15px;
    border-left: 2px solid var(--color-hoja);
    background: var(--color-hoja-suave);
}

.consultation-summary span,
.consultation-deposit-eyebrow {
    color: var(--color-verde-texto);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.consultation-summary strong {
    color: var(--color-oscuro);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

.consultation-form-feedback {
    display: none;
    margin: -4px 0 0;
    color: #a4362a;
    font-size: 0.8rem;
    font-weight: 600;
}

.consultation-form-feedback.is-visible {
    display: block;
}

.consultation-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 50px;
}

.consultation-deposit-card {
    padding: 22px;
    border-top: 1px solid var(--color-gris-linea);
    background: #fdfaf5;
}

.consultation-deposit-card > p {
    color: var(--color-gris);
    font-size: 0.84rem;
    line-height: 1.65;
}

.consultation-deposit-card > p strong {
    color: var(--color-oscuro);
}

.consultation-bank-details {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--color-gris-linea);
}

.consultation-bank-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--color-gris);
    font-size: 0.8rem;
}

.consultation-bank-item > strong,
.alias-container > strong {
    color: var(--color-oscuro);
    font-size: 0.88rem;
}

.alias-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy {
    padding: 5px 10px;
    border: 1px solid var(--color-primario);
    border-radius: 6px;
    background: var(--color-blanco);
    color: var(--color-primario);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transicion);
}

.btn-copy:hover,
.btn-copy:focus-visible {
    border-color: var(--color-primario);
    background: var(--color-primario);
    color: var(--color-blanco);
}

/* ==========================================================================
   8. TESTIMONIOS, FAQ & QUIÉN SOY
   ========================================================================== */
.testimonials-section {
    padding: 104px 0;
    background: #fffefa;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 280px;
    flex: 0 0 calc(100% - 32px);
    scroll-snap-align: center;
    background: var(--color-blanco);
    padding: 20px;
    border-radius: 2px;
    border: 1px solid var(--color-gris-linea);
}

.stars {
    color: var(--color-primario);
    margin-bottom: 8px;
}

.testimonial-author {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
}

.testimonial-author strong {
    color: var(--color-oscuro);
}

.testimonial-author span {
    color: var(--color-gris);
    font-size: 0.75rem;
}

.review-source-google {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--color-gris);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.review-source-google i {
    color: var(--color-primario);
    font-size: 0.72rem;
}

.testimonials-google-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonials-google-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid var(--color-primario);
    border-radius: 999px;
    color: var(--color-primario);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: var(--transicion);
}

.testimonials-google-write {
    background: var(--color-primario);
    color: var(--color-blanco);
}

@media (hover: hover) and (pointer: fine) {
    .testimonials-google-view:hover {
        background: var(--color-nude);
        transform: translateY(-1px);
    }

    .testimonials-google-write:hover {
        background: #8f7045;
        border-color: #8f7045;
        transform: translateY(-1px);
    }
}

@media (max-width: 767px) {
    .testimonials-google-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
        margin-top: 22px;
    }

    .testimonials-google-action {
        width: 100%;
        min-height: 42px;
        padding: 10px 14px;
    }
}

/* Estilos de Botones de Flecha de Navegación */
.carousel-arrow {
    background: var(--color-blanco);
    border: 1px solid var(--color-gris-linea);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-oscuro);
    box-shadow: none;
    transition: var(--transicion);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--color-hoja);
    color: var(--color-blanco);
    border-color: var(--color-hoja);
}

.left-arrow {
    margin-right: -15px;
}

.right-arrow {
    margin-left: -15px;
}

/* FAQ */
.faq-section {
    padding: 104px 0;
    background: #f5efe7;
}

.faq-editorial {
    max-width: 820px;
    margin: 0 auto;
    padding: 10px 28px;
    background: rgba(255, 254, 250, 0.72);
    border: 1px solid rgba(89, 72, 50, 0.1);
    border-radius: 10px;
}

.faq-item {
    border-bottom: 1px solid var(--color-gris-linea);
    padding: 4px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 15px 0;
    transition: color 0.25s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: var(--color-hoja);
}

.faq-icon {
    color: var(--color-hoja);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer-wrapper {
    overflow: hidden;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, padding 0.25s ease;
    color: var(--color-gris);
    font-size: 0.85rem;
}

.faq-item.active .faq-answer {
    max-height: 260px;
    margin-top: 0;
    padding: 0 0 18px;
    opacity: 1;
    transform: translateY(0);
}

/* Quién Soy / Experiencia */
.experience-section {
    padding: 108px 0;
    background: #fffefa;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.experience-image-wrapper {
    position: relative;
    display: inline-block;
}

.experience-image-wrapper img {
    width: 100%;
    max-width: 320px;
    border-radius: 2px;
    box-shadow: none;
    display: block;
}

.experience-badge-float {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: var(--color-hoja);
    color: var(--color-blanco);
    padding: 10px 16px;
    border-radius: 2px;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.exp-years {
    font-family: var(--fuente-titulo);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.experience-content h2 {
    font-family: var(--fuente-titulo);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    color: var(--color-oscuro);
    margin-bottom: 12px;
    line-height: 1.2;
}

.highlight-text {
    font-weight: 600;
    color: var(--color-oscuro);
    margin: 10px 0;
    font-size: 0.95rem;
}

.experience-content p {
    font-size: 0.88rem;
    color: var(--color-gris);
    line-height: 1.5;
    margin-bottom: 14px;
}

.experience-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.exp-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-oscuro);
}

.exp-point i {
    color: var(--color-hoja);
    font-size: 0.7rem;
    background: var(--color-hoja-suave);
    padding: 5px;
    border-radius: 50%;
}

/* ==========================================================================
   9. MODAL INTERACTIVO & CONFIRMACIÓN
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 28, 22, 0.5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transicion);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--color-blanco);
    padding: 26px;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(35, 29, 23, 0.18);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-gris);
    transition: var(--transicion);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-oscuro);
}

.modal-content h3 {
    font-family: var(--fuente-titulo);
    font-size: 1.6rem;
    color: var(--color-oscuro);
    margin-bottom: 10px;
    padding-right: 25px;
}

.modal-pricing-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-nude);
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.modal-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primario);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-price-tag {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--color-oscuro);
}

.modal-section-box {
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--color-gris);
}

.modal-section-box strong {
    color: var(--color-oscuro);
    display: block;
    margin-bottom: 4px;
    font-size: 0.84rem;
}

.modal-section-box p {
    color: #444;
    line-height: 1.45;
}

.modal-info-box {
    background: var(--color-claro);
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 12px;
    font-size: 0.84rem;
    border: 1px solid var(--color-gris-linea);
}

.modal-info-box strong {
    color: var(--color-oscuro);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.modal-info-box.benefits-box {
    background: var(--color-verde-soft);
    border-color: var(--color-hoja-linea);
}

.modal-info-box.benefits-box strong {
    color: var(--color-verde-texto);
}

.modal-info-box.benefits-box ul {
    list-style: none;
    margin-top: 6px;
    padding-left: 0;
}

.modal-info-box.benefits-box li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
    font-size: 0.82rem;
    color: var(--color-verde-texto);
}

.modal-info-box.benefits-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--color-verde-texto);
}

.modal-info-box.care-box {
    background: #fff7ed;
    border-color: #ffedd5;
}

.modal-info-box.care-box strong {
    color: #c2410c;
}

.modal-info-box.care-box p {
    color: #9a3412;
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.4;
}

.modal-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--color-gris-linea);
}

#modalActionsGrid {
    width: 100%;
}

.btn-whatsapp-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--color-blanco);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transicion);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-action:hover {
    background: #1eb855;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

#modalWhatsappBtn {
    display: flex !important;
    flex: 1 1 100% !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 13px 20px !important;
    box-sizing: border-box !important;
    gap: 7px !important;
    border-radius: 999px !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: normal !important;
    box-shadow: 0 5px 16px rgba(37, 211, 102, 0.18) !important;
}

#modalWhatsappBtn.hidden,
#modalWhatsappBtn[style*="display: none"] {
    display: none !important;
}

@media (hover: hover) and (pointer: fine) {
    #modalWhatsappBtn:hover {
        background: #1eb855;
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.24) !important;
        transform: translateY(-2px);
    }
}

/* ==========================================================================
   10. WIDGET FLOTANTE WHATSAPP & MICRO-GLOBO
   ========================================================================== */
.whatsapp-widget-container {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-bubble {
    background: var(--color-blanco);
    color: var(--color-oscuro);
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-gris-linea);
    animation: fadeInBubble 0.5s ease-out;
    max-width: 250px;
}

.bubble-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.bubble-close:hover {
    color: #333;
}

@keyframes fadeInBubble {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.whatsapp-float {
    background: #4f8f6a;
    color: var(--color-blanco);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 8px 22px rgba(49, 96, 69, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: var(--color-blanco);
}

/* ==========================================================================
   11. FOOTER CON SEO LOCAL & MULTICOLUMNA
   ========================================================================== */
.footer {
    background: #2c2823;
    color: var(--color-blanco);
    padding: 64px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.footer-brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: inherit;
    text-decoration: none;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-brand-title {
    font-family: var(--fuente-titulo);
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-blanco);
}

.footer-tagline {
    color: #ede5d7;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 7px;
}

.footer-bio {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
    max-width: 285px;
}

.footer-col-title {
    font-family: var(--fuente-cuerpo);
    font-size: 0.67rem;
    color: #cbd7bf;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact-links a,
.footer-map-link,
.footer-text-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.5;
    transition: var(--transicion);
}

.footer-map-link {
    display: block;
    margin-bottom: 10px;
}

.footer-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #cbd7bf;
    font-weight: 600;
}

.footer-links a:hover,
.footer-contact-links a:hover,
.footer-map-link:hover,
.footer-text-link:hover {
    color: #cbd7bf;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-legal {
    display: grid;
    gap: 8px;
    max-width: 780px;
    margin: 0 auto 22px;
}

.footer-legal-details {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
}

.footer-legal-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.77rem;
    font-weight: 600;
    list-style: none;
}

.footer-legal-details summary::-webkit-details-marker {
    display: none;
}

.footer-legal-details summary::after {
    content: '+';
    color: #cbd7bf;
    font-size: 1rem;
    font-weight: 400;
}

.footer-legal-details[open] summary::after {
    content: '–';
}

.footer-legal-content {
    max-width: 74ch;
    padding: 12px 0 3px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.73rem;
    line-height: 1.6;
}

.footer-legal-content p + p {
    margin-top: 8px;
}

.footer-legal-content strong {
    color: rgba(255, 255, 255, 0.9);
}

.copyright {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* ==========================================================================
   12. MEDIA QUERIES (ADAPTABILIDAD RESPONSIVA GENERAL)
   ========================================================================== */
@media (min-width: 768px) {
    .hero-actions { flex-direction: row; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary, .btn-primary, .btn-secondary { width: auto; }
    .trayectoria-badge { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { flex-direction: row; align-items: center; }
    .card-image-wrapper { width: 100px; height: 100px; }
    .before-after-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-group.full { grid-column: span 2; }
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
    .experience-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
    .space-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 64px; }
    .space-image-wrapper img { min-height: 470px; }
    .modal-actions-grid { flex-direction: row; }
    .modal-actions-grid .btn-primary, .modal-actions-grid .btn-secondary { flex: 1; }
    .footer-grid { grid-template-columns: 1.5fr 1.1fr 1.1fr 1fr; }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .service-card { flex-direction: column; align-items: flex-start; padding: 0 0 20px; }
    .card-image-wrapper { width: 100%; height: 172px; }
    .before-after-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .combo-card { flex-basis: min(370px, 36vw); }
    .testimonial-card { flex: 0 0 calc(33.333% - 11px); }
}

@media (max-width: 767px) {
    .header, .header-content { min-height: 68px; }
    .logo-icon { width: 34px; height: 34px; }
    .brand-name { font-size: 1.38rem; }
    .promo-bar { padding: 8px 0; }
    .promo-bar-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 3px 9px; text-align: left; }
    .promo-badge { display: inline-flex; align-self: center; order: 1; padding: 3px 8px; font-size: 0.52rem; letter-spacing: 0.075em; }
    .promo-link { align-self: center; order: 2; margin-left: auto; font-size: 0.64rem; white-space: nowrap; }
    .promo-text { flex-basis: 100%; order: 3; font-size: 0.64rem; line-height: 1.35; }
    .nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255, 254, 250, 0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); flex-direction: column; padding: 20px; box-shadow: 0 14px 30px rgba(48, 42, 35, 0.09); border-bottom: 1px solid var(--color-gris-linea); max-height: 80vh; overflow-y: auto; -webkit-overflow-scrolling: touch; gap: 4px; z-index: 1100; }
    .nav.active { display: flex; }
    .nav-link { color: var(--color-oscuro); font-size: 0.78rem; padding: 12px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.04); width: 100%; text-align: left; }
    .nav-link-optional { display: none; }
    .nav-link-faq { display: block; order: 4; }
    .nav-link-about { order: 3; }
    .nav-link-contact { order: 5; }
    .btn-nav { order: 6; width: 100%; text-align: center; margin-top: 8px; padding: 12px 20px; }
    .nav-mobile-socials { order: 7; }
    .nav-mobile-socials, .mobile-toggle { display: block; }
    .hero-section { min-height: clamp(540px, 70svh, 620px); background-position: 53% center; background-size: cover; }
    .hero-overlay { background: linear-gradient(180deg, rgba(30, 25, 19, 0.3) 0%, rgba(30, 25, 19, 0.48) 42%, rgba(30, 25, 19, 0.84) 100%); }
    .hero-container { align-items: flex-end; padding: 58px 20px 52px; }
    .hero-content { width: 100%; min-width: 0; max-width: 470px; text-align: center; }
    .hero-badge { font-size: 0.55rem; letter-spacing: 0.1em; margin-bottom: 15px; padding: 1px 0 1px 9px; }
    .hero-content h1 { font-size: clamp(2.5rem, calc(1.5rem + 4.5vw), 3.1rem); line-height: 0.98; margin-bottom: 15px; }
    .hero-subtitle { font-size: 0.8rem; line-height: 1.62; margin-bottom: 22px; }
    .hero-actions { gap: 10px; max-width: 360px; margin: 0 auto; width: 100%; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { min-height: 46px; width: 100%; }
    .services-section, .combos-section, .space-section, .before-after-section, .experience-section, .testimonials-section, .faq-section, .booking-section { padding: 68px 0; }
    .services-section:not(.combos-section) { padding-top: 0; }
    .depilation-promo-section { padding-top: 26px; }
    .depilation-promo-banner { align-items: flex-start; flex-direction: column; gap: 15px; padding: 18px; }
    .depilation-promo-content { align-self: stretch; }
    .depilation-promo-title { font-size: clamp(1.62rem, 7vw, 2rem); }
    .depilation-promo-content p { display: block; max-width: 34ch; margin-top: 6px; font-size: 0.75rem; white-space: normal; overflow-wrap: anywhere; }
    .depilation-promo-cta { font-size: 0.73rem; }
    .section-title-container { margin-bottom: 32px; }
    .section-title-container h2 { font-size: clamp(2.15rem, 8vw, 2.5rem); }
    .services-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
    .service-card { align-items: stretch; flex-direction: row; gap: 12px; padding: 10px; background: var(--color-blanco); border: 1px solid var(--color-gris-linea); border-radius: 8px; }
    .card-image-wrapper { align-self: stretch; width: clamp(90px, 27vw, 104px); height: auto; min-height: 112px; }
    .card-image-wrapper img { border-radius: 4px; }
    .card-info { display: flex; flex-direction: column; min-width: 0; }
    .card-badge { overflow: hidden; font-size: 0.52rem; line-height: 1.25; margin-bottom: 4px; text-overflow: ellipsis; white-space: nowrap; }
    .service-card h3 { font-size: clamp(1.13rem, 4.7vw, 1.35rem); line-height: 1.05; margin-bottom: 4px; }
    .card-problem { font-size: 0.7rem; line-height: 1.35; -webkit-line-clamp: 2; line-clamp: 2; }
    .card-price-row { gap: 1px; margin-top: 6px; }
    .price-ref { font-size: 0.61rem; }
    .price-single, .price-pack, .price-seasonal { font-size: 0.75rem; }
    .solo-pack, .solo-single { font-size: 0.77rem; }
    .btn-card-more { margin-top: 5px; font-size: 0.68rem; }
    #modalWhatsappBtn { width: 100% !important; min-height: 50px !important; padding: 13px 16px !important; font-size: 0.84rem !important; }
    .combo-card { flex-basis: 87%; padding: 25px; }
    .experience-grid { gap: 46px; }
    .experience-image-wrapper img { max-width: 300px; }
    .testimonial-card { min-width: 0; padding: 24px; }
    .booking-wrapper { padding: 24px 16px; }
    .whatsapp-widget-container { bottom: 15px; right: 14px; }
    .whatsapp-bubble { max-width: 205px; font-size: 0.72rem; }
    .faq-editorial { padding: 6px 18px; border-radius: 8px; }
    .footer { padding-top: 52px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; row-gap: 28px; }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 340px) {
    .promo-text, .promo-link { font-size: 0.56rem; }
    .hero-content h1 { font-size: 2.55rem; }
    .section-title-container h2 { font-size: 2.3rem; }
}

@media (max-width: 375px) {
    .card-problem { display: none; }
}
/* ==========================================================================
   Reglas móviles consolidadas en las media queries anteriores.
   ========================================================================== */
/* ==========================================================================
   NATIVA — RESCATE VISUAL MOBILE FINAL
   SOLO PRESENTACIÓN — NO ALTERA LÓGICA
   ========================================================================== */

@media (max-width: 767px) {

    /* =========================================================
       1. HEADER NATIVA — SIEMPRE PRESENTE
       ========================================================= */

    .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1500 !important;

        min-height: 66px !important;
        padding: 6px 0 !important;

        background: rgba(253, 251, 247, 0.97) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;

        border-bottom: 1px solid rgba(48, 42, 35, 0.08) !important;
        box-shadow: 0 4px 18px rgba(48, 42, 35, 0.04) !important;
    }

    .header-content {
        min-height: 54px !important;
    }

    .logo-icon {
        width: 34px !important;
        height: 34px !important;
    }

    .brand-name {
        font-size: 1.42rem !important;
    }

    .brand-tagline {
        font-size: 0.54rem !important;
    }


    /* =========================================================
       2. PROMO 15% — FLOTANTE SIN TAPAR LA WEB
       ========================================================= */

    .promo-bar {
        position: fixed !important;

        top: 76px !important;
        right: 12px !important;
        left: auto !important;

        width: auto !important;
        max-width: calc(100vw - 24px) !important;

        z-index: 1400 !important;

        padding: 0 !important;
        margin: 0 !important;

        background: rgba(66, 54, 41, 0.96) !important;

        border: 1px solid rgba(232, 207, 166, 0.28) !important;
        border-radius: 999px !important;

        box-shadow:
            0 7px 18px rgba(48, 42, 35, 0.14),
            0 2px 6px rgba(48, 42, 35, 0.06) !important;

        overflow: hidden !important;

        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    .promo-bar-content {
        width: auto !important;
        min-height: 38px !important;

        padding: 8px 12px !important;

        display: flex !important;
        flex-wrap: nowrap !important;

        justify-content: center !important;
        align-items: center !important;

        gap: 8px !important;

        text-decoration: none !important;
        white-space: nowrap !important;
    }

    .promo-badge {
        padding: 0 !important;

        background: transparent !important;
        border: 0 !important;

        color: #f1d9aa !important;

        flex: 0 0 auto !important;

        font-size: 0.64rem !important;
        line-height: 1 !important;
        letter-spacing: 0.04em !important;
    }

    .promo-text {
        margin: 0 !important;

        color: rgba(255,255,255,0.96) !important;

        flex: 0 1 auto !important;
        min-width: 0 !important;

        font-size: 0.68rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .promo-text strong {
        color: #f5d69c !important;
        font-weight: 700 !important;
    }

    .promo-link {
        margin: 0 !important;

        flex: 0 0 auto !important;

        color: #f5d69c !important;

        font-size: 0.66rem !important;
        font-weight: 700 !important;

        white-space: nowrap !important;
    }

    .promo-link::before {
        content: '';
        position: absolute;
        inset: 0;
    }

    .promo-bar:active {
        transform: scale(0.98) !important;
    }

    /* =========================================================
       3. HERO — AIRE + FOTO PROTAGONISTA
       ========================================================= */

    .hero-section {
        min-height: 76svh !important;

        background-size: cover !important;
        background-position: center 22% !important;
        background-attachment: scroll !important;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(30,25,19,0.06) 0%,
                rgba(30,25,19,0.15) 30%,
                rgba(30,25,19,0.52) 62%,
                rgba(30,25,19,0.88) 100%
            ) !important;
    }

    .hero-container {
        min-height: 76svh !important;

        display: flex !important;
        align-items: flex-end !important;

        padding-top: 100px !important;
        padding-bottom: 48px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-badge {
        margin-bottom: 11px !important;

        font-size: 0.62rem !important;
        letter-spacing: 0.12em !important;
    }

    .hero-content h1 {
        max-width: 94% !important;

        margin-bottom: 14px !important;

        font-size: clamp(2.5rem, 10.5vw, 3.15rem) !important;
        line-height: 0.98 !important;
    }

    .hero-subtitle {
        max-width: 94% !important;

        margin-bottom: 22px !important;

        font-size: 0.84rem !important;
        line-height: 1.55 !important;
    }

    .hero-actions {
        width: 100% !important;
        gap: 9px !important;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        min-height: 46px !important;

        padding: 12px 17px !important;

        font-size: 0.8rem !important;
    }


    /* =========================================================
       4. TRAYECTORIA — COMPACTA
       ========================================================= */

    .trayectoria-badge {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-items: stretch !important;
        gap: 6px !important;
        margin: 34px 14px 48px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .trust-item {
        min-width: 0 !important;
        grid-template-rows: 3.4em 1fr !important;
        padding: 12px 6px !important;
        margin: 0 !important;
        background: rgba(255, 253, 249, 0.35) !important;
        border: 1px solid rgba(89, 72, 50, 0.08) !important;
        box-shadow: none !important;
        text-align: center !important;
    }

    .trust-item + .trust-item {
        border: 1px solid rgba(89, 72, 50, 0.08) !important;
    }

    .trust-item::before,
    .trust-item::after {
        display: none !important;
        content: none !important;
    }

    .trust-item strong {
        display: block !important;
        font-family: var(--fuente-titulo) !important;
        font-size: clamp(0.98rem, 4vw, 1.16rem) !important;
        font-weight: 500 !important;
        line-height: 1.05 !important;
        letter-spacing: -0.015em !important;
        min-height: 3.4em !important;
        margin: 0 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .trust-item span {
        display: block !important;
        font-family: var(--fuente-cuerpo) !important;
        font-size: clamp(0.58rem, 2.25vw, 0.66rem) !important;
        font-weight: 400 !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
        margin: 7px auto 0 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    /* =========================================================
       5. TRATAMIENTOS — 2 COLUMNAS MOBILE
       ========================================================= */

    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .service-card {
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 10px !important;
        text-align: left !important;
        background: #ffffff !important;
        border: 1px solid rgba(48,42,35,0.08) !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 14px rgba(48,42,35,0.04) !important;
    }

    .card-image-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1.35 / 1 !important;
        flex: none !important;
        margin: 0 0 9px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .card-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .card-info {
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .card-badge {
        margin-bottom: 5px !important;
        font-size: 0.58rem !important;
        line-height: 1.25 !important;
        letter-spacing: 0.05em !important;
    }

    .service-card h3 {
        min-height: 2.25em !important;
        margin-bottom: 6px !important;
        font-size: clamp(0.96rem, 4.1vw, 1.08rem) !important;
        line-height: 1.06 !important;
        text-align: left !important;
    }

    /* En mobile priorizamos escaneo rápido */
    .card-problem {
        display: none !important;
    }

    .card-price-row {
        margin-top: auto !important;
        padding-top: 5px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        text-align: left !important;
    }

    del.price-ref {
        display: block !important;
        margin-bottom: 1px !important;
        color: #9d958a !important;
        font-size: 0.7rem !important;
        font-weight: 400 !important;
        line-height: 1.25 !important;
    }

    .price-single,
    .price-pack,
    .solo-pack,
    .solo-single,
    .price-seasonal {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    .price-single {
        color: var(--color-oscuro) !important;
        font-weight: 700 !important;
    }

    .price-pack {
        color: var(--color-primario) !important;
        font-weight: 700 !important;
    }

    .btn-card-more {
        display: block !important;
        width: 100% !important;
        margin-top: 7px !important;
        font-size: 0.69rem !important;
        line-height: 1.25 !important;
        text-align: left !important;
    }

    /* =========================================================
       6. FOOTER — 2 COLUMNAS REALES
       ========================================================= */

    .footer {
        padding-top: 46px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        column-gap: 12px !important;
        row-gap: 24px !important;
    }

    .footer-brand-col {
        grid-column: 1 / -1 !important;
        margin-bottom: 3px !important;
        text-align: left !important;
    }

    .footer-bio {
        max-width: 100% !important;
        margin: 0 !important;
        font-size: 0.77rem !important;
    }

    .footer-tagline {
        font-size: 0.78rem !important;
    }

    .footer-col-title {
        margin-bottom: 9px !important;
        font-size: 0.62rem !important;
    }

    .footer-links a,
    .footer-contact-links a,
    .footer-map-link,
    .footer-text-link {
        font-size: 0.68rem !important;
        line-height: 1.45 !important;
        overflow-wrap: anywhere !important;
    }

    .footer-links,
    .footer-contact-links {
        gap: 6px !important;
    }


}


/* ==========================================================================
   CELULARES MUY ANGOSTOS
   ========================================================================== */

@media (max-width: 350px) {
    .depilation-promo-section { padding-top: 20px; }
    .depilation-promo-banner { gap: 12px; padding: 15px; }
    .depilation-promo-eyebrow { font-size: 0.56rem; }
    .depilation-promo-title { font-size: 1.52rem; }
    .depilation-promo-content p { font-size: 0.7rem; }

    .trayectoria-badge {
        gap: 5px !important;
    }

    .trust-item {
        padding: 12px 2px !important;
    }

    .trust-item strong {
        font-size: 0.88rem !important;
    }

    .services-grid {
        gap: 8px !important;
    }

    .service-card {
        padding: 8px !important;
    }

    .card-image-wrapper {
        margin-bottom: 7px !important;
    }

    .service-card h3 {
        font-size: 0.92rem !important;
    }

    .price-single,
    .price-pack,
    .solo-pack,
    .solo-single,
    .price-seasonal {
        font-size: 0.73rem !important;
    }

    .promo-text {
        display: none !important;
    }

    .promo-bar-content {
        min-height: 38px !important;
        padding: 7px 10px !important;
    }
}

#antes-despues {
    display: none !important;
}
