/* ========================================
   VitaGlow Health — variables (marca Katrina Duplat)
   ======================================== */
:root {
    --primary-color: #00C6A7;
    --primary-dark: #009B87;
    --primary-light: #00E5C5;
    --secondary-color: #2C3E50;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 198, 167, 0.3);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --transition: all 0.3s ease;
    --tone-taupe: #AFA498;
    --tone-taupe-dark: #8a8278;
}

/* Ocultar sección Destacados: quita vitaglow-bento--hidden del section#destacados y del li.nav-destacados */
section#destacados.vitaglow-bento--hidden,
li.nav-destacados.vitaglow-bento--hidden {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: -0.12em;
}

.fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.fact-icon .icon {
    width: 1.85rem;
    height: 1.85rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    line-height: 0;
    border-radius: 4px;
}

.logo-link:hover .logo-img {
    opacity: 0.92;
}

.logo-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.logo-link picture {
    display: block;
}

.logo-img {
    height: 88px;
    width: auto;
    max-width: min(400px, 82vw);
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: opacity 0.25s ease;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero — imagen local en .hero-overlay + degradado (::after) */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a2520;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-overlay__static {
    position: absolute;
    inset: 0;
}

.hero-overlay__static picture {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
}

.hero-carousel {
    display: none;
    position: absolute;
    inset: 0;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
    pointer-events: none;
    margin: 0;
}

.hero-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel__slide.is-active {
    opacity: 1;
    z-index: 1;
}

@media (min-width: 993px) {
    /* Fallback seguro: si el JS falla, mantenemos el hero estático visible. */
    .hero-carousel {
        display: none;
    }

    /* Solo cuando el carrusel está listo (JS), intercambiamos estático → carrusel. */
    .hero.hero--carousel-ready .hero-overlay__static {
        display: none;
    }

    .hero.hero--carousel-ready .hero-carousel {
        display: block;
    }
}

.hero-overlay__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Debe quedar por encima de todas las fotos (carrusel y estático) */
.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 198, 167, 0.75) 0%, rgba(0, 75, 70, 0.55) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 900px;
}

.hero-brand-logo {
    display: block;
    margin: 0 auto 0.75rem;
    width: min(580px, 94vw);
    max-height: min(300px, 48vw, 42vh);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.75))
        drop-shadow(0 0 28px rgba(255, 255, 255, 0.4))
        drop-shadow(0 6px 22px rgba(0, 0, 0, 0.22));
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.btn-call-hero {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-call-hero:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.btn-whatsapp-hero {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-hero:hover {
    background: #20ba5a;
    transform: translateY(-3px);
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-hero:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Sueros carousel */
.sueros-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.sueros-carousel-wrap {
    position: relative;
    margin-top: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
}

.section-subtitle--sueros {
    margin-bottom: var(--spacing-md);
}

.sueros-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Solo el carril recorta; los puntos quedan fuera y no se cortan */
.sueros-carousel__viewport {
    position: relative;
    overflow: hidden;
    padding: 1.35rem clamp(2.5rem, 5vw, 5.5rem) 0.75rem;
}

.sueros-carousel__dots {
    margin-top: 0.35rem;
    padding: 0 clamp(2.5rem, 5vw, 5.5rem) 1.75rem;
    flex-shrink: 0;
}

@media (min-width: 993px) {
    #sueros .sueros-carousel__viewport .prev-btn {
        left: max(0.65rem, env(safe-area-inset-left));
    }

    #sueros .sueros-carousel__viewport .next-btn {
        right: max(0.65rem, env(safe-area-inset-right));
    }
}

.sueros-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.sueros-track.is-dragging {
    transition: none !important;
    user-select: none;
    -webkit-user-select: none;
}

.suero-card {
    flex: 0 0 calc(100% - 2.5rem);
    max-width: 340px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08);
    background: #f2efec;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(175, 164, 152, 0.45);
}

.suero-card picture {
    display: block;
    width: 100%;
}

/* Imágenes del carrusel: archivos 1200x675 (16:9); recorte uniforme en el slot fijo */
.suero-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.suero-card:hover img {
    transform: scale(1.05);
}

.suero-card-body {
    flex: 1;
    padding: 1.15rem 1.35rem 1.35rem;
    background: linear-gradient(
        180deg,
        #faf8f6 0%,
        #f0ebe7 35%,
        rgba(175, 164, 152, 0.35) 70%,
        rgba(175, 164, 152, 0.55) 100%
    );
    color: #3a3632;
    border-top: 1px solid rgba(175, 164, 152, 0.45);
}

.suero-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #2c2825;
    letter-spacing: 0.02em;
}

.suero-card-body p,
.suero-card-lorem {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #4d4844;
    max-height: 11rem;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.suero-card-lorem::-webkit-scrollbar {
    width: 6px;
}

.suero-card-lorem::-webkit-scrollbar-thumb {
    background: rgba(175, 164, 152, 0.65);
    border-radius: 4px;
}

.suero-card-cta {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--tone-taupe);
}

@media (min-width: 600px) {
    .suero-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: none;
    }
}

@media (min-width: 992px) {
    .suero-card {
        flex: 0 0 calc(33.333% - 0.85rem);
    }
}

@media (min-width: 1200px) {
    .suero-card {
        flex: 0 0 calc(25% - 0.95rem);
    }
}

/* Modal */
.procedure-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 3rem 0;
}

.procedure-modal.show {
    display: flex;
}

.procedure-content {
    background: #fff;
    border-radius: 22px;
    padding: 2.2rem 2rem 2.5rem;
    max-width: 640px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeInZoom 0.35s ease;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
    margin: auto;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.modal-header__picture {
    display: flex;
    justify-content: center;
    width: 100%;
}

.modal-img {
    width: 80%;
    max-width: 100%;
    aspect-ratio: 1200 / 675;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.suero-modal-desc {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
}

.suero-modal-desc .modal-text {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
}

.suero-modal-parallax {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    align-self: stretch;
    min-height: 5.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
}

.suero-modal-parallax[hidden] {
    display: none !important;
}

.suero-modal-parallax__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    box-shadow: none;
    transition: opacity 0.2s ease;
}

/* Modal suero: no mostrar la imagen anterior mientras llega la nueva (Netlify / redes lentas). */
#sueroHeroPicture.modal-media--loading img,
#sueroParallaxPicture.modal-media--loading img {
    opacity: 0;
}

#sueroHeroPicture img.modal-img {
    transition: opacity 0.2s ease;
}

.modal-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: left;
    white-space: pre-line;
}

/* Modal suero: móvil — columna, PNG centrado sin fondo; tarjeta sigue siendo .procedure-content */
@media (max-width: 575px) {
    #sueroModal.procedure-modal {
        padding: 1rem 0 1.5rem;
        align-items: flex-start;
    }

    #sueroModal .procedure-content {
        width: calc(100% - 1.25rem);
        max-width: 640px;
        padding: 1.5rem 1.1rem 1.75rem;
        margin-left: auto;
        margin-right: auto;
    }

    #sueroModal .modal-header {
        margin-bottom: 0.85rem;
    }

    #sueroModal .modal-img {
        width: 100%;
        max-width: 100%;
    }

    #sueroModal .modal-title {
        font-size: clamp(1.2rem, 4.8vw, 1.55rem);
        line-height: 1.25;
        padding-right: 2.5rem;
        margin-bottom: 0.65rem;
    }

    .suero-modal-desc {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem 0;
        margin-bottom: 0.85rem;
    }

    .suero-modal-parallax {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        align-self: center;
        min-height: 0;
        max-height: min(46vw, 11rem);
        margin: 0 auto;
    }

    .suero-modal-parallax__img {
        width: auto;
        max-width: min(55vw, 12rem);
        height: auto;
        max-height: min(46vw, 11rem);
        margin: 0 auto;
        display: block;
    }

    .suero-modal-desc .modal-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    #sueroModal .facts {
        gap: 0.65rem;
        margin: 1rem 0 1.35rem;
    }

    #sueroModal .fact {
        min-width: calc(50% - 0.35rem);
        padding: 0.75rem 0.5rem;
    }

    #sueroModal .fact h4 {
        font-size: 0.7rem;
    }

    #sueroModal .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

.facts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.4rem 0 1.8rem;
}

.fact {
    flex: 1;
    min-width: 30%;
    background: var(--bg-light);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}

.fact h4 {
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.close-btn:hover {
    background: #f0f0f0;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff !important;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin-top: 0;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.03);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
    padding: 6rem 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-track.is-dragging {
    transition: none !important;
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 992px) {
    .sueros-carousel__viewport,
    .testimonials-slider {
        touch-action: pan-y;
    }
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--tone-taupe);
}

.testimonial-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--tone-taupe);
    border: 4px solid var(--tone-taupe);
    font-size: 1.75rem;
    box-sizing: border-box;
}

.testimonial-author-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rating {
    display: flex;
    gap: 0.2rem;
    color: #FFC107;
    font-size: 1rem;
    margin: 0.25rem 0;
}

.location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    font-size: 3rem;
    color: rgba(0, 198, 167, 0.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 198, 167, 0.35);
    z-index: 30;
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.06);
}

#testimonios .testimonials-slider .slider-btn {
    background: var(--tone-taupe);
    box-shadow: 0 8px 18px rgba(175, 164, 152, 0.45);
}

#testimonios .testimonials-slider .slider-btn:hover {
    background: var(--tone-taupe-dark);
    transform: translateY(-50%) scale(1.06);
}

.sueros-carousel__viewport .slider-btn {
    top: 42%;
}

.prev-btn {
    left: 4px;
}

.next-btn {
    right: 4px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 28px;
    border-radius: 6px;
    background: var(--primary-color);
}

/* CTA / Contact — mismo tono que #moleculas */
.cta-vision {
    background: #f9f7f2;
    padding: 6rem 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cta-left h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.cta-left p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.info-item a {
    color: var(--primary-dark);
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
}

.cta-buttons .call {
    background: var(--primary-color);
    color: #fff;
}

.cta-buttons .call:hover {
    background: var(--primary-dark);
}

.cta-buttons .whatsapp {
    background: #25d366;
    color: #fff;
}

.cta-buttons .whatsapp:hover {
    background: #1eb358;
}

.cta-form {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cta-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.02em;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group .label-req,
.checkbox-group label .label-req {
    color: #c0392b;
    font-weight: 700;
    margin-left: 0.15em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    outline: none;
    color: #333;
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 198, 167, 0.15);
    background: #fff;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.phone-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.6rem;
    min-width: 0;
}

.phone-group select {
    flex: 0 1 auto;
    min-width: min(11rem, 42%);
    max-width: min(14rem, 48%);
    padding: 0.9rem 0.5rem;
}

.phone-group input {
    flex: 1 1 0;
    min-width: 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #555;
    gap: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
    accent-color: var(--primary-color);
}

.form-alt-mailto {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

.form-alt-mailto a {
    color: var(--primary-dark);
    font-weight: 600;
}

#form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-info {
    max-width: 300px;
}

.footer-logo-link {
    display: block;
    line-height: 0;
    margin-bottom: var(--spacing-sm);
    border-radius: 4px;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0.94;
}

.footer-logo-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.footer-logo {
    width: 100%;
    max-width: 300px;
    height: 108px;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: opacity 0.25s ease;
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

.footer-tagline {
    width: 100%;
    max-width: 300px;
    font-size: 0.95rem;
    opacity: 0.92;
    line-height: 1.45;
}

.footer-links h4,
.footer-legal h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: var(--spacing-sm);
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.9;
    max-width: 720px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float__label {
    display: none;
}

@media (min-width: 769px) {
    .whatsapp-float {
        width: auto;
        height: auto;
        min-height: 52px;
        padding: 0.65rem 1.35rem 0.65rem 1.1rem;
        border-radius: 9999px;
        gap: 0.65rem;
        justify-content: center;
        font-size: 1.65rem;
        line-height: 1;
        background: linear-gradient(90deg, #3adb7a 0%, #168a45 100%);
        box-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
    }

    .whatsapp-float .icon {
        flex-shrink: 0;
    }

    .whatsapp-float__label {
        display: inline;
        font-family: var(--font-primary);
        font-size: 0.9375rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .whatsapp-float:hover {
        background: linear-gradient(90deg, #32cf70 0%, #147a3d 100%);
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .whatsapp-float:hover {
        background-color: #20BA5A;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .sueros-track,
    .testimonial-track,
    .whatsapp-float {
        animation: none;
        transition: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .sueros-carousel__viewport {
        padding: 1.15rem 2.5rem 0.65rem;
    }

    .sueros-carousel__dots {
        padding: 0 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 72px;
        max-width: min(360px, 85vw);
    }

    .footer-logo {
        height: 64px;
        max-width: min(300px, 90vw);
    }

    .nav-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-brand-logo {
        width: min(440px, 94vw);
        max-height: min(220px, 52vw, 38vh);
        margin-bottom: 0.65rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .sueros-carousel__viewport {
        padding: 1rem 0.5rem 0.5rem;
    }

    .sueros-carousel__dots {
        padding: 0 0.5rem 1.25rem;
    }

    .sueros-carousel__viewport .prev-btn {
        left: 0;
    }

    .sueros-carousel__viewport .next-btn {
        right: 0;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .cta-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .phone-group {
        gap: 0.45rem;
    }

    .phone-group select {
        flex: 0 0 auto;
        width: 5rem;
        min-width: 4.75rem;
        max-width: 6rem;
        padding: 0.7rem 0.28rem;
        font-size: 0.8125rem;
        line-height: 1.25;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 1.55rem;
    }
}

/* ========================================
   Sección bento (Katrina WOOA) — VitaGlow
   ======================================== */
.vitaglow-bento {
    background-color: #f6f3ef;
    padding: 6rem 0 1rem;
    font-family: var(--font-primary);
}

.vitaglow-bento .container {
    max-width: 1320px;
}

.vitaglow-bento .section-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.vitaglow-bento .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.vitaglow-bento .wooa-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 160px;
    gap: 28px;
}

.vitaglow-bento .tile {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.5s ease;
}

.vitaglow-bento .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.97) contrast(1.02);
}

.vitaglow-bento .tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.vitaglow-bento .tile-caption {
    position: absolute;
    left: 32px;
    bottom: 28px;
    z-index: 2;
    pointer-events: none;
}

.vitaglow-bento .tile-caption span {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.5px;
}

.vitaglow-bento .tile:hover img {
    transform: scale(1.06);
}

.vitaglow-bento .tile:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.vitaglow-bento .tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.12);
}

.vitaglow-bento .tile-a {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
}

.vitaglow-bento .tile-b {
    grid-column: 8 / span 5;
    grid-row: 1 / span 2;
}

.vitaglow-bento .tile-c {
    grid-column: 1 / span 5;
    grid-row: 3 / span 2;
}

.vitaglow-bento .tile-d {
    grid-column: 6 / span 7;
    grid-row: 3 / span 1;
}

.vitaglow-bento .tile-e {
    grid-column: 6 / span 7;
    grid-row: 4 / span 1;
}

.vitaglow-bento .tile-oferta::before {
    display: none;
}

.vitaglow-bento .tile-oferta {
    grid-column: 1 / span 12;
    grid-row: 5 / span 2;
    background: linear-gradient(0deg, #e8e4df 0%, #c4bfb6 100%);
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem;
    min-height: 240px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 3rem;
}

.vitaglow-bento .tile-oferta:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 46px rgba(175, 164, 152, 0.35);
}

.vitaglow-bento .tile-oferta-content {
    z-index: 2;
    max-width: 720px;
    width: 100%;
}

.vitaglow-bento .tile-oferta-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.02em;
}

.vitaglow-bento .tile-oferta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.vitaglow-bento .btn-cta-grid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    color: #5c5752;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.vitaglow-bento .btn-cta-grid:hover {
    background: #fafafa;
    transform: translateY(-2px);
}

.vitaglow-bento .tile-oferta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: all 1s ease;
}

.vitaglow-bento .tile-oferta:hover::after {
    left: 100%;
}

@media (max-width: 992px) {
    .vitaglow-bento .wooa-grid {
        grid-auto-rows: 140px;
        gap: 22px;
    }

    .vitaglow-bento .tile-caption span {
        font-size: 1.3rem;
    }

    .vitaglow-bento .tile-a {
        grid-column: 1 / span 8;
        grid-row: 1 / span 2;
    }

    .vitaglow-bento .tile-b {
        grid-column: 9 / span 4;
        grid-row: 1 / span 1;
    }

    .vitaglow-bento .tile-c {
        grid-column: 1 / span 6;
        grid-row: 3 / span 1;
    }

    .vitaglow-bento .tile-d {
        grid-column: 7 / span 6;
        grid-row: 3 / span 1;
    }

    .vitaglow-bento .tile-e {
        grid-column: 1 / span 12;
        grid-row: 4 / span 1;
    }

    .vitaglow-bento .tile-oferta {
        grid-column: 1 / span 12;
        padding: 2rem 1.4rem;
        min-height: 200px;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 680px) {
    .vitaglow-bento .wooa-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 18px;
    }

    .vitaglow-bento .tile:not(.tile-oferta) {
        aspect-ratio: 16 / 9;
    }

    .vitaglow-bento .tile-a,
    .vitaglow-bento .tile-b,
    .vitaglow-bento .tile-c,
    .vitaglow-bento .tile-d,
    .vitaglow-bento .tile-e {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    .vitaglow-bento .tile-caption {
        left: 20px;
        bottom: 18px;
    }

    .vitaglow-bento .tile-caption span {
        font-size: 1.15rem;
    }
}

/* ========================================
   Proceso — Tu tratamiento, paso a paso
   ======================================== */
.proceso-zigzag {
    background: #f9f7f2;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.proceso-zigzag__intro {
    max-width: 920px;
    margin: 0 auto var(--spacing-md);
    text-align: center;
}

.proceso-zigzag__intro .section-subtitle {
    margin-bottom: 0;
}

.proceso-zigzag > .zigzag-block:first-of-type {
    padding-top: var(--spacing-sm);
}

.proceso-zigzag__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.proceso-zigzag__subtitle {
    max-width: 640px;
    margin: 0.85rem auto 0;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.zigzag-wa-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-color);
    background: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.zigzag-wa-cta:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transform: none;
    box-shadow: none;
}

.zigzag-wa-cta:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 3px;
    border-radius: 2px;
}

.zigzag-heading-wa {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.zigzag-heading-wa:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.zigzag-heading-wa:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 4px;
    border-radius: 2px;
}

.zigzag-block {
    padding: var(--spacing-lg) 0;
}

.zigzag-block--alt {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.zigzag-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.zigzag-block__grid--reverse .zigzag-block__media {
    order: 2;
}

.zigzag-block__grid--reverse .zigzag-block__text {
    order: 1;
}

.zigzag-block__media {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(44, 62, 80, 0.1),
        0 4px 20px rgba(0, 155, 135, 0.08);
}

.zigzag-block__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.zigzag-block__heading {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.18;
    color: var(--secondary-color);
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0, 155, 135, 0.22);
    letter-spacing: 0.02em;
}

.zigzag-block__lede {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.zigzag-block__body {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 1.02rem;
}

.zigzag-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zigzag-block__list li {
    position: relative;
    padding-left: 0.25rem;
    margin-bottom: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    font-size: 1.02rem;
}

.zigzag-check {
    color: var(--primary-dark);
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 900px) {
    .zigzag-block__grid {
        grid-template-columns: 1fr;
    }

    .zigzag-block__grid--reverse .zigzag-block__media,
    .zigzag-block__grid--reverse .zigzag-block__text {
        order: unset;
    }

    .proceso-zigzag {
        padding: clamp(2.5rem, 8vw, 3.5rem) 0 var(--spacing-md);
    }

    .zigzag-block {
        padding: var(--spacing-md) 0;
    }

    .proceso-zigzag > .zigzag-block:first-of-type {
        padding-top: var(--spacing-xs);
    }

    .zigzag-block__heading {
        font-size: clamp(1.45rem, 5vw, 1.65rem);
    }

    .zigzag-block__media {
        border-radius: 18px;
        max-width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   Moléculas (bloque v2)
   ======================================== */
.moleculas-section--v2-premium {
    position: relative;
    background: #f9f7f2;
    color: var(--text-dark);
    padding: 0;
    overflow-x: hidden;
}

.moleculas-premium__shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f7f2;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    box-sizing: border-box;
}

.moleculas-premium__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    min-height: min(72vh, 820px);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

@media (min-width: 993px) {
    .moleculas-premium__shell {
        max-width: none;
        width: 100%;
        margin: 0;
        padding-left: max(1rem, calc((100vw - 1200px) / 2 + 1rem));
        padding-right: 0;
    }

    .moleculas-premium__grid {
        grid-template-columns: minmax(280px, 1fr) 50vw;
        gap: clamp(1.5rem, 2.5vw, 2.25rem);
        align-items: center;
        min-height: min(78vh, 920px);
        padding: clamp(2.5rem, 4vw, 3.75rem) 0;
    }

    .moleculas-premium__visual {
        min-height: min(50vh, 640px);
        width: 100%;
        justify-content: center;
    }
}

.moleculas-premium__copy {
    padding: 0;
    max-width: 640px;
    background: transparent;
}

.moleculas-premium__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--secondary-color);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0, 155, 135, 0.22);
}

.moleculas-premium__lede {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.moleculas-premium__block {
    margin-top: 1.35rem;
}

.moleculas-premium__block h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.moleculas-premium__block p {
    font-size: 0.98rem;
    line-height: 1.78;
    color: var(--text-light);
}

.moleculas-premium__refs {
    margin-top: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-light);
}

.moleculas-premium__refs a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.moleculas-premium__refs a:hover {
    color: var(--primary-color);
}

.moleculas-premium__disclaimer {
    margin-top: 1.15rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--tone-taupe-dark);
    padding: 0.85rem 1rem;
    background: rgba(0, 198, 167, 0.08);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.moleculas-premium__visual {
    position: relative;
    min-height: min(42vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    background: transparent;
}

.moleculas-premium__parallax {
    position: relative;
    z-index: 2;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moleculas-premium__parallax picture {
    display: flex;
    justify-content: center;
    width: 100%;
}

.moleculas-premium__img {
    width: 100%;
    max-width: 400px;
    max-height: min(70vh, 420px);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 28px 48px rgba(0, 155, 135, 0.18))
        drop-shadow(0 12px 32px rgba(44, 62, 80, 0.08));
    transition: transform 0.2s ease-out;
}

@media (min-width: 993px) {
    .moleculas-premium__img {
        width: 100%;
        max-width: min(46vw, 504px);
        max-height: min(88vh, 504px);
    }
}

@media (max-width: 992px) {
    .moleculas-premium__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 2rem 0 2.75rem;
    }

    .moleculas-premium__copy {
        padding: 0;
        max-width: none;
        text-align: center;
    }

    .moleculas-premium__block h3,
    .moleculas-premium__block p,
    .moleculas-premium__refs {
        text-align: left;
    }

    .moleculas-premium__visual {
        order: -1;
        min-height: min(52vw, 320px);
        padding: 1rem 0 0.5rem;
    }

    .moleculas-premium__img {
        max-width: min(320px, 88vw);
        max-height: min(52vw, 340px);
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .moleculas-premium__title {
        font-size: clamp(1.55rem, 7vw, 1.95rem);
    }

    .moleculas-premium__lede,
    .moleculas-premium__block p {
        font-size: 0.94rem;
    }
}

/* ========================================
   FAQs
   ======================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    color: var(--secondary-color);
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-item__btn:hover {
    background: var(--bg-light);
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--primary-dark);
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__panel {
    padding: 0 1.25rem 1.15rem;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
}

.faq-item__panel[hidden] {
    display: none;
}

.faq-item.is-open .faq-item__btn {
    background: rgba(0, 198, 167, 0.06);
}

.faq-section--v2 {
    background: var(--bg-light);
}

.faq-section--v2 .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
