/* GERADO AUTOMATICAMENTE — não edite. Fonte:
 *   frontend/static/css/landing-variante5.full.css
 * Gerador:
 *   scripts/build_landing_variante5_css.mjs
 * → landing-variante5-critical.css
 */

/* Fonte canônica do CSS da landing variante 5.
 * Ordem importante: PILHA FIXA + RESPONSIVE + tail global antes da secção Savings
 * (critical bloqueante; savings + pilha fixa típicamente em folha deferida).
 * Rode após editar esta folha: `npm run build:landing-css` ou `npm run build`.
 * Sai: landing-variante5-{critical,deferred}.css.
 * Em `index_variante5.html`: critical.css bloqueante + deferred.css (media=print onload).
 * Reordenar blocos no .full.css (uso raro): `node scripts/reorder_landing_variante5_responsive.mjs`.
 */
        :root {
            --blue-dark: #0A1E36;
            --blue-mid: #16365D;
            --blue-light: #1E4D8C;
            --orange: #FF6B1A;
            --orange-dark: #E05107;
            --green: #10B981;
            --green-dark: #059669;
            --light-bg: #F0F4F8;
            --white: #FFFFFF;
            --text: #0F172A;
            --text-muted: #475569;
            --border: rgba(10, 30, 54, 0.08);
            --radius: 16px;
            --radius-lg: 24px;
            /* Hero carrossel 1 — mobile (referência layout) */
            --hero-m-blue: #4292D1;
            --hero-m-navy: #1D2E4D;
            /* Quadros hero desktop: mesmo recuo até as bordas (arredondadas) */
            --hero-desktop-split-pad-inline: 0.55rem;
            --hero-desktop-split-pad-block: 1.2rem;
            /* Desktop: altura útil acima da pilha fixa (navbar + área da arte) */
            --v5-navbar-h: 64px;
            /* Pilha fixa real ~Whatsapp+gap+barra; valor menor = hero mais alto = some faixa do hero-info */
            --v5-sticky-stack-h: calc(88px + env(safe-area-inset-bottom, 0px));
            /* Altura útil acima da pilha fixa (navbar + arte / mobile e desktop no carrossel) */
            --v5-hero-desktop-slide-h: calc(100dvh - var(--v5-navbar-h) - var(--v5-sticky-stack-h));
            --v5-hero-mobile-slide-h: var(--v5-hero-desktop-slide-h);
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html { 
            scroll-behavior: smooth; 
            overflow-x: hidden;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background: var(--light-bg);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
        }

        /* ─── NAVBAR ─── */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            transition: transform 0.3s ease;
            will-change: transform;
        }

        .navbar.navbar--hidden {
            transform: translateY(-100%);
        }

        body.page-variante5 {
            padding-top: var(--v5-navbar-h);
        }

        .navbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo { height: 36px; display: block; }
        .logo-link { display: inline-flex; align-items: center; text-decoration: none; cursor: pointer; }

        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .desktop-menu a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 700;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .desktop-menu a:hover {
            color: var(--blue-dark);
        }

        .btn-login {
            background: var(--green);
            color: var(--white) !important;
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .btn-login:hover {
            background: var(--green-dark);
        }

        button.btn-login { border: 0; cursor: pointer; font: inherit; }

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

        .login-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 200px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(10, 30, 54, 0.15);
            border: 1px solid var(--border);
            opacity: 0;
            transform: translateY(-10px) scale(0.95);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
            padding: 6px 0;
            z-index: 220;
        }

        .login-dropdown.hidden { display: none; }
        .login-dropdown.show {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .login-dropdown a {
            display: block;
            padding: 10px 16px;
            color: var(--text);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            transition: background 0.15s;
        }

        .login-dropdown a:hover { background: var(--light-bg); }

        .mobile-login-wrapper {
            margin-top: 1rem;
        }

        .login-dropdown-mobile {
            margin-top: 0.5rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .login-dropdown-mobile.hidden { display: none; }

        .login-dropdown-mobile a {
            display: block;
            padding: 1rem 1.25rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            transition: background 0.15s;
        }

        .login-dropdown-mobile a:hover { background: var(--light-bg); }
        .login-dropdown-mobile a + a { border-top: 1px solid var(--border); }

        button.mobile-menu-login {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 1rem 1.25rem;
            border: 0;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            background: var(--green) !important;
            color: var(--white) !important;
            border-radius: var(--radius) !important;
            transition: background 0.2s;
        }

        button.mobile-menu-login:hover {
            background: var(--green-dark) !important;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            color: var(--white);
            text-decoration: none;
            padding: 10px 22px;
            border-radius: 100px;
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
            transition: transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(16,185,129,0.35);
        }

        /* ─── HERO CAROUSEL ─── */
        .hero {
            background: #FFFFFF;
            padding: 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Mobile var.5: arte longa do slide 2 pode crescer o hero sem cortar imagem */
        @media (max-width: 900px) {
            body.page-variante5 .hero {
                overflow-x: hidden;
                overflow-y: visible;
            }
        }

        .hero-carousel {
            position: relative;
            width: 100%;
            display: flex;
            /* Permite scroll vertical nativo, mas deixa o JS capturar o swipe horizontal. */
            touch-action: pan-y;
            -webkit-user-select: none;
            user-select: none;
        }

        .hero-slide {
            width: 100%;
            flex-shrink: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
            z-index: 0;
        }

        .hero-slide.active {
            opacity: 1;
            position: relative;
            visibility: visible;
            z-index: 1;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1.5rem 5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            box-sizing: border-box;
            border: 1px solid var(--white);
            background: rgba(10, 30, 54, 0.15);
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .carousel-dot:hover {
            background: rgba(10, 30, 54, 0.3);
        }

        .carousel-dot.active {
            background: var(--blue-dark);
            transform: scale(1.3);
        }

        /* Variante 5: faixa horizontal; largura do track e dos slides definida em JS (px — evita %/flex inconsistente no mobile) */
        body.page-variante5 #heroCarousel {
            overflow-x: hidden;
            overflow-y: visible;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        body.page-variante5 #heroCarouselTrack {
            display: flex;
            flex-direction: row;
            transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            backface-visibility: hidden;
        }

        @media (prefers-reduced-motion: reduce) {
            body.page-variante5 #heroCarouselTrack {
                transition: none;
            }
        }

        /* Micro-animações por slide (JS ao ativar): fundo zoom-out + cards sobem */
        @keyframes heroCarouselBgZoomOut {
            from {
                transform: scale(1.078);
            }
            to {
                transform: scale(1);
            }
        }

        @keyframes heroCarouselCardRise {
            from {
                opacity: 0.908;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        body.page-variante5 #heroCarousel .hero-desktop-bg-img,
        body.page-variante5 #heroCarousel .hero-mobile-bg-img {
            transform-origin: center center;
        }

        body.page-variante5 #heroCarousel .hero-slide {
            position: relative;
            inset: auto;
            top: auto;
            left: auto;
            flex-grow: 0;
            flex-shrink: 0;
            box-sizing: border-box;
            min-width: 0;
            opacity: 1;
            visibility: visible;
            transition: none;
            z-index: auto;
        }

        /* Slide 1: desktop vs mobile (mobile markup no HTML) */
        .hero-slide-1-mobile {
            display: none;
        }

        /* Slide 2 desktop: arte full bleed; mobile = só imagem (.hero-mobile-stack) */
        .hero-slide-2-desktop {
            display: block;
        }

        .hero-slide-2-mobile {
            display: none;
        }

        .hero-slide-4-desktop {
            display: block;
        }

        .hero-slide-4-mobile {
            display: none;
        }

        .hero-slide-5-desktop {
            display: block;
        }

        .hero-slide-5-mobile {
            display: none;
        }

        .hero-slide-3-mobile {
            display: none;
        }

        .hero-slide-3-desktop {
            display: block;
        }

        /* Slide 1 desktop — altura pelo aspecto da arte; line-height 0 evita gap subpixel sob <img> */
        .hero-slide-1-desktop .hero-desktop-stack,
        .hero-slide-2-desktop .hero-desktop-stack,
        .hero-slide-3-desktop .hero-desktop-stack,
        .hero-slide-4-desktop .hero-desktop-stack,
        .hero-slide-5-desktop .hero-desktop-stack {
            position: relative;
            width: 100%;
            aspect-ratio: 1920 / 800;
            overflow: hidden;
            background: #0c1929;
            line-height: 0;
        }

        /* Carrossel 1 desktop: ancora pelo rodapé da arte */
        #slide-1 .hero-slide-1-desktop .hero-desktop-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        #slide-3 .hero-slide-3-desktop .hero-desktop-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .hero-slide-2-desktop .hero-desktop-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        /* Slide 4 desktop: foto de fundo + card promocional (layout vertical) */
        .hero-slide-4-desktop .hero-desktop-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left center;
            display: block;
        }

        /* Slide 5 desktop: paciente à direita, área livre à esquerda para o card */
        .hero-slide-5-desktop .hero-desktop-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .hero-slide-5-desktop .hero-slide-5-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 2rem clamp(2rem, 5vw, 4.5rem);
            box-sizing: border-box;
            pointer-events: none;
            line-height: normal;
        }

        .hero-slide-5-desktop .hero-slide-5-overlay > * {
            pointer-events: auto;
        }

        /* padding-right menor que o esquerdo — menos vazio à direita do texto. */
        .hero-slide-5-message-card {
            width: min(100%, max(calc(19rem * 0.8), calc(44vw * 0.8)));
            max-width: calc(36rem * 0.8);
            background: #3483c1;
            border-radius: 22px;
            padding-top: clamp(1.85rem, 2.6vw, 2.75rem);
            padding-right: clamp(1.48rem, 2.2vw, 2.28rem);
            padding-bottom: clamp(1.85rem, 2.6vw, 2.75rem);
            padding-left: clamp(1.85rem, 2.75vw, 2.85rem);
            box-shadow:
                0 8px 24px rgba(0, 0, 0, 0.18),
                0 20px 48px rgba(0, 0, 0, 0.12);
            box-sizing: border-box;
        }

        /* Desktop: largura segue o bloco de texto (sem faixa azul vazia à direita). */
        .hero-slide-5-desktop .hero-slide-5-message-card {
            width: fit-content;
            max-width: min(100%, 27rem);
            padding-right: clamp(1.05rem, 1.55vw, 1.75rem);
        }

        .hero-slide-5-headline {
            margin: 0 0 1rem;
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: 0.03em;
            color: var(--white);
            text-align: left;
            text-transform: uppercase;
        }

        .hero-slide-5-desktop .hero-slide-5-headline {
            font-size: clamp(1.85rem, 3.55vw, 2.85rem) !important;
        }

        .hero-slide-5-sub {
            margin: 0;
            font-weight: 500;
            line-height: 1.38;
            color: var(--white);
            text-align: left;
        }

        .hero-slide-5-desktop .hero-slide-5-sub {
            font-size: clamp(1.15rem, 1.9vw, 1.65rem) !important;
        }

        .hero-slide-5-sub strong {
            font-weight: 800;
        }

        .hero-slide-4-desktop .hero-slide-4-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 2rem clamp(3rem, 11vw, 9rem) 2rem max(1rem, 2.5vw);
            box-sizing: border-box;
            pointer-events: none;
            line-height: normal;
        }

        .hero-slide-4-desktop .hero-slide-4-overlay > * {
            pointer-events: auto;
        }

        .hero-slide-4-promo-card {
            width: min(472px, 52vw);
            max-width: 100%;
            border-radius: 22px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-self: center;
            box-shadow:
                0 8px 24px rgba(0, 0, 0, 0.18),
                0 20px 48px rgba(0, 0, 0, 0.12);
            container-type: inline-size;
        }

        .hero-slide-4-promo-head {
            background: #3483C1;
            padding: 1.35rem 1.5rem 1.45rem;
            text-align: center;
        }

        .hero-slide-4-promo-title {
            margin: 0;
            font-weight: 800;
            font-size: clamp(1.55rem, 2.5vw, 2.15rem) !important;
            letter-spacing: -0.02em;
            color: var(--white);
            line-height: 1.15;
        }

        .hero-slide-4-promo-body {
            background: #F2F2F2;
            padding: 1.45rem 1.35rem 1.65rem;
            text-align: center;
        }

        .hero-slide-4-promo-text {
            margin: 0;
            font-weight: 800;
            font-size: clamp(1.05rem, 2.2vw, 2.32rem) !important;
            line-height: 1.28;
            letter-spacing: -0.01em;
            color: #0a0a0a;
        }

        .hero-slide-4-promo-more {
            margin: 0.85rem 0 0;
            padding: 0;
            font-weight: 700;
            font-size: clamp(0.95rem, 2vw, 1.18rem);
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: #0a0a0a;
        }

        .hero-slide-4-promo-price-line {
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            justify-content: center;
            gap: 0.2rem 0.1rem;
            font-weight: 900;
            color: var(--orange);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .hero-slide-4-promo-rs {
            font-size: clamp(0.85rem, 1.9vw, 1rem);
            font-weight: 700;
            opacity: 0.85;
            vertical-align: baseline;
        }

        .hero-slide-4-promo-price-line [data-clareamento-int] {
            font-size: clamp(1.85rem, 4.6vw, 2.55rem);
            font-weight: 900;
        }

        .hero-slide-4-promo-dec {
            font-size: clamp(0.82rem, 2vw, 1rem);
            font-weight: 700;
            opacity: 0.85;
            vertical-align: baseline;
        }

        .hero-slide-3-desktop .hero-desktop-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 2rem min(1.25rem, 3vw) 4.5rem min(4vw, 3.5rem);
            box-sizing: border-box;
            pointer-events: none;
            line-height: normal;
            margin-top: 100px;
            margin-left: 0;
            margin-right: 30px;
        }

        .hero-slide-1-desktop .hero-desktop-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 2rem min(1.25rem, 3vw) 2rem min(4vw, 3.5rem);
            box-sizing: border-box;
            pointer-events: none;
            line-height: normal;
            margin-top: 0;
            margin-left: 0;
            margin-right: 30px;
        }

        .hero-slide-1-desktop .hero-desktop-overlay > *,
        .hero-slide-3-desktop .hero-desktop-overlay > * {
            pointer-events: auto;
        }

        .hero-slide-1-desktop .hero-desktop-split-card,
        .hero-slide-1-mobile .hero-desktop-split-card,
        .hero-slide-3-desktop .hero-desktop-split-card,
        .hero-slide-3-mobile .hero-desktop-split-card {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            border-radius: 22px;
            overflow: visible;
            /* Tipografia igual ao desktop: escalar pelo card, não pela viewport inteira */
            container-type: inline-size;
            filter:
                drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22))
                drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28))
                drop-shadow(0 32px 56px rgba(0, 0, 0, 0.18));
        }

        .hero-slide-1-desktop .hero-desktop-split-left,
        .hero-slide-1-mobile .hero-desktop-split-left,
        .hero-slide-3-desktop .hero-desktop-split-left,
        .hero-slide-3-mobile .hero-desktop-split-left {
            /*
             * Largura = conteúdo + mesmo padding-inline que o quadro escuro.
             * Conteúdo centralizado para recuo visual equilibrado até as bordas.
             */
            flex: 0.3 0 auto;
            width: max-content;
            max-width: 58%;
            min-width: 0;
            min-height: 168px;
            background: var(--hero-m-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--hero-desktop-split-pad-block) var(--hero-desktop-split-pad-inline);
            border-radius: 22px 0 0 22px;
            position: relative;
            z-index: 2;
            margin-right: -12px;
            box-shadow: 6px 0 20px rgba(0, 0, 0, 0.14);
        }

        /* Desktop: título alinhado à direita na faixa azul */
        .hero-slide-1-desktop .hero-desktop-split-left,
        .hero-slide-3-desktop .hero-desktop-split-left {
            justify-content: center;
            align-items: center;
        }

        .hero-slide-1-desktop .hero-desktop-split-right,
        .hero-slide-1-mobile .hero-desktop-split-right,
        .hero-slide-3-desktop .hero-desktop-split-right,
        .hero-slide-3-mobile .hero-desktop-split-right {
            flex: 0.5 1 auto;
            min-width: 0;
            background: var(--hero-m-navy);
            padding: var(--hero-desktop-split-pad-block) var(--hero-desktop-split-pad-inline);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0 22px 22px 0;
            position: relative;
            z-index: 1;
        }

        .hero-slide-1-desktop .hero-desktop-headline,
        .hero-slide-1-mobile .hero-desktop-headline,
        .hero-slide-3-desktop .hero-desktop-headline,
        .hero-slide-3-mobile .hero-desktop-headline {
            margin: 0;
            font-weight: 800;
            color: var(--white);
            text-align: center;
            letter-spacing: -0.02em;
            width: max-content;
            max-width: 100%;
        }

        /* Uma linha lógica por <span>; evita quebra “O melhor” / “plano”.
         * Fallback vw; com cqi o tamanho segue a largura do próprio quadro (iguais ao desktop quando o card ~500px). */
        .hero-slide-1-desktop .hero-desktop-headline-line,
        .hero-slide-1-mobile .hero-desktop-headline-line {
            display: block;
            font-weight: 800;
            line-height: 0.7;
            text-align: center;
            white-space: nowrap;
            font-size: clamp(1.22rem, 2.15vw, 1.78rem);
        }

        .hero-slide-3-desktop .hero-desktop-headline-line,
        .hero-slide-3-mobile .hero-desktop-headline-line {
            display: block;
            font-weight: 800;
            line-height: 1.15;
            text-align: center;
            white-space: normal;
            font-size: clamp(1.22rem, 2.15vw, 1.78rem);
        }

        @supports (width: 1cqi) {
            .hero-slide-1-desktop .hero-desktop-headline-line,
            .hero-slide-1-mobile .hero-desktop-headline-line {
                font-size: clamp(1.22rem, 6.5cqi, 1.78rem);
            }

            .hero-slide-3-desktop .hero-desktop-headline-line,
            .hero-slide-3-mobile .hero-desktop-headline-line {
                font-size: clamp(1.22rem, 6.5cqi, 1.78rem);
            }

            .hero-slide-1-desktop .hero-desktop-bullets li,
            .hero-slide-1-mobile .hero-desktop-bullets li {
                font-size: clamp(0.8rem, 3.75cqi, 0.95rem);
            }

            .hero-slide-3-desktop .hero-desktop-card-plain,
            .hero-slide-3-mobile .hero-desktop-card-plain {
                font-size: clamp(1.05rem, 4.5cqi, 1.2rem) !important;
            }

            .hero-slide-3-desktop .hero-desktop-headline-sub,
            .hero-slide-3-mobile .hero-desktop-headline-sub {
                font-size: clamp(0.7rem, 3.25cqi, 0.9rem);
            }
        }

        .hero-slide-1-desktop .hero-desktop-headline {
            text-align: right;
        }

        .hero-slide-1-desktop .hero-desktop-headline-line {
            text-align: right;
        }

        .hero-slide-3-desktop .hero-desktop-headline {
            text-align: right;
        }

        .hero-slide-3-desktop .hero-desktop-headline-line {
            text-align: right;
        }

        .hero-slide-3-mobile .hero-desktop-headline {
            text-align: right;
        }

        .hero-slide-3-mobile .hero-desktop-headline-line {
            text-align: right;
        }

        .hero-slide-3-desktop .hero-desktop-headline-sub {
            display: block;
            margin-top: 0.35rem;
            font-weight: 700;
            font-size: clamp(0.7rem, 1.05vw, 0.88rem);
            line-height: 1.12;
            color: var(--white);
            text-align: right;
            letter-spacing: 0.02em;
        }

        .hero-slide-3-mobile .hero-desktop-headline-sub {
            display: block;
            margin-top: 0.12rem;
            font-weight: 700;
            font-size: clamp(0.7rem, 1.05vw, 0.88rem);
            line-height: 1;
            color: var(--white);
            text-align: right;
            letter-spacing: 0.02em;
        }

        .hero-slide-3-desktop .hero-desktop-card-plain,
        .hero-slide-3-mobile .hero-desktop-card-plain {
            margin: 0;
            margin-left: 1.5rem;
            padding: 0;
            padding-right: 0.5rem;
            font-size: clamp(0.95rem, 1.12vw, 1.75rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.45;
            letter-spacing: 0.01em;
            text-align: left;
            max-width: 100%;
        }

        .hero-slide-1-desktop .hero-desktop-bullets,
        .hero-slide-1-mobile .hero-desktop-bullets {
            list-style: none;
            margin-left: 1rem;
            padding-right: 0.5rem;
            width: fit-content;
            max-width: 100%;
            text-align: left;
        }

        .hero-slide-1-desktop .hero-desktop-bullets li,
        .hero-slide-1-mobile .hero-desktop-bullets li {
            position: relative;
            padding-left: 0.75rem;
            margin-bottom: 0.38rem;
            font-size: clamp(0.8rem, 1vw, 1.5rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.4;
            letter-spacing: 0.01em;
        }

        .hero-slide-1-desktop .hero-desktop-bullets li:last-child,
        .hero-slide-1-mobile .hero-desktop-bullets li:last-child {
            margin-bottom: 0;
        }

        .hero-slide-1-desktop .hero-desktop-bullets li::before,
        .hero-slide-1-mobile .hero-desktop-bullets li::before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 107, 26, 0.1);
            border: 1px solid rgba(255, 107, 26, 0.2);
            color: var(--orange-dark);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        .hero-visual .hero-badge {
            display: none; /* Hidden on desktop */
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            background: var(--orange);
            border-radius: 50%;
            animation: blink 1.2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }

        .hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--blue-dark);
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(90deg, #FF7B33, #FFB085);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ─── HERO INFO SECTION ─── */
        .hero-info {
            background: #3A8DCD;
            padding: 4rem 1.5rem 2rem; /* Reduced bottom padding */
            color: var(--white);
            text-align: center;
        }

        .hero-info-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 1rem !important;
            /* main.css define h2 { color: #232323 !important } — precisa vencer */
            color: #ffffff !important;
        }

        .hero-info-inner {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-info .hero-sub {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            max-width: 100%;
            margin-bottom: 2.5rem;
        }

        .hero-info .hero-checks {
            align-items: center;
            margin-bottom: 1.5rem; /* Reduced margin */
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.25rem 2rem;
            max-width: 900px;
        }

        .hero-info .hero-checks li {
            color: var(--white);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
        }

        .white-check-icon {
            width: 24px;
            height: 24px;
            background: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .white-check-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--green);
            stroke-width: 4;
            fill: none;
        }

        .hero-info .hero-actions {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .check-icon svg {
            width: 11px;
            height: 11px;
            stroke: white;
            stroke-width: 3;
            fill: none;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            color: var(--white);
            text-decoration: none;
            border: none;
            cursor: pointer;
            padding: 16px 32px;
            border-radius: 100px;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.3px;
            transition: all 0.25s;
            animation: pulse-green 2.5s infinite;
            white-space: nowrap;
        }

        .btn-orange {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            animation: pulse-orange 2.1s infinite !important;
        }

        @keyframes pulse-orange {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.4); }
            50% { box-shadow: 0 0 0 12px rgba(255, 107, 26, 0); }
        }

        @keyframes pulse-green {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
            50% { box-shadow: 0 0 0 14px rgba(16,185,129,0); }
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(16,185,129,0.4);
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 700;
            transition: color 0.2s;
        }

        .btn-whatsapp:hover { color: var(--white); }

        /* ─── HERO IMAGE COLUMN ─── */
        .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 3rem;
        }

        .hero-img {
            width: 100%;
            max-width: 520px;
            border-radius: var(--radius-lg);
            display: block;
            object-fit: cover;
            object-position: center top;
            height: 420px;
        }

        .price-card {
            position: absolute;
            bottom: 2rem;
            left: -1rem;
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.1rem 1.4rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            min-width: 190px;
        }

        .price-card-label {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
        }

        .price-old {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-decoration: line-through;
            font-weight: 600;
        }

        .price-main {
            font-size: 2rem;
            font-weight: 900;
            color: var(--blue-dark);
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .price-main span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0;
        }

        .price-tag {
            margin-top: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(16,185,129,0.1);
            color: var(--green-dark);
            font-size: 0.72rem;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 100px;
        }

        .urgency-card {
            position: absolute;
            top: 1.5rem;
            right: -1rem;
            background: var(--orange);
            border-radius: var(--radius);
            padding: 0.8rem 1.1rem;
            box-shadow: 0 12px 30px rgba(255,107,26,0.35);
            text-align: center;
        }

        .urgency-card .uc-label {
            font-size: 0.65rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 4px;
        }

        .urgency-card .uc-timer {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        /* ─── TRUST BAR ─── */
        .trust-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .trust-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
        }

        .trust-item svg {
            color: var(--green);
            flex-shrink: 0;
        }

        .trust-ans { height: 28px; opacity: 0.6; }

        /* ─── SECTION WRAPPER ─── */
        .section {
            padding: 5rem 1.5rem;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16,185,129,0.1);
            color: var(--green-dark);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 5px 13px;
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 900;
            color: var(--blue-dark);
            line-height: 1.2;
            letter-spacing: -0.3px;
            margin-bottom: 0.75rem;
        }

        .section-sub {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            line-height: 1.7;
            max-width: 520px;
        }

        /* ─── HAMBURGER MENU ─── */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 10px;
            transition: background 0.2s;
        }

        .hamburger:hover { background: var(--light-bg); }
        .hamburger span {
            display: block;
            width: 100%;
            height: 2.5px;
            background: var(--blue-dark);
            border-radius: 3px;
            transition: all 0.3s;
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 64px 0 0 0;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 300;
            padding: 2rem 1.5rem;
            flex-direction: column;
            gap: 0.5rem;
            overflow-y: auto;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 1rem 1.25rem;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1rem;
            color: var(--text);
            text-decoration: none;
            transition: background 0.2s;
        }

        .mobile-menu a:hover { background: var(--light-bg); }
        .mobile-menu a svg { flex-shrink: 0; }

        .mobile-menu-cta {
            margin-top: 1rem;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
            color: var(--white) !important;
            justify-content: center;
            font-size: 1rem !important;
        }



/* alinhado à home */
body.modal-open { overflow: hidden; }

/* Modais da home (z-50) devem ficar acima da navbar/sticky desta variante (z-200/250) */
#contrato-modal,
#politica-privacidade-modal,
#termos-servico-modal,
#promo-bem-vindo-modal {
    z-index: 400 !important;
}

/*
 * Espaço para a pilha fixa (redes + gap + barra de preço).
 * Valor alinhado à altura real da pilha para não sobrar faixa clara após o rodapé.
 */
body.page-variante5 {
    padding-bottom: calc(45px + 0.65rem + 5.75rem + env(safe-area-inset-bottom, 0px));
}

/*
 * Banner de cookies (Tailwind z-50) ficava atrás da pilha fixa (z-index 250).
 * Sobe o banner para ficar imediatamente acima da sticky-bar + safe area.
 */
body.page-variante5 #cookie-banner {
    z-index: 280 !important;
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px)) !important;
    left: 0 !important;
    right: 0 !important;
}

@media (max-width: 900px) {
    body.page-variante5 #cookie-banner {
        bottom: env(safe-area-inset-bottom, 0px) !important;
    }
}

/* Botão WhatsApp duplicado do bloco copiado do index.html */
body.page-variante5 a.whatsapp-btn {
    display: none !important;
}
        /* ─── RESPONSIVE ─── */
        @media (max-width: 900px) {
            .hero-content .hero-badge { display: none; }
            .hero-visual .hero-badge { display: inline-flex; align-self: flex-start; }

            /* Só mostra mobile; evita desktop vencer por ordem de regras */
            body.page-variante5 #slide-1 .hero-slide-1-desktop,
            body.page-variante5 #slide-2 .hero-slide-2-desktop,
            body.page-variante5 #slide-3 .hero-slide-3-desktop,
            body.page-variante5 #slide-4 .hero-slide-4-desktop,
            body.page-variante5 #slide-5 .hero-slide-5-desktop {
                display: none !important;
            }

            body.page-variante5 #slide-1 .hero-slide-1-mobile {
                display: block !important;
                width: 100%;
                height: 100%;
                min-height: 0;
            }

            body.page-variante5 #slide-3 .hero-slide-3-mobile {
                display: block !important;
                width: 100%;
                height: 100%;
                min-height: 0;
            }

            body.page-variante5 #slide-2 .hero-slide-2-mobile {
                display: block !important;
                width: 100%;
                height: 100%;
                min-height: 0;
            }

            body.page-variante5 #slide-4 .hero-slide-4-mobile {
                display: block !important;
                width: 100%;
                height: 100%;
                min-height: 0;
            }

            body.page-variante5 #slide-5 .hero-slide-5-mobile {
                display: block !important;
                width: 100%;
                height: 100%;
                min-height: 0;
            }

            /*
             * Mesma altura em todos os slides (como no desktop): uma transição cubic-bezier em qualquer salto.
             * Slide 2 usa recorte cover dentro desta altura fixa.
             */
            body.page-variante5 #heroCarouselTrack {
                align-items: stretch;
            }

            body.page-variante5 #heroCarouselTrack .hero-slide {
                height: var(--v5-hero-mobile-slide-h);
                min-height: var(--v5-hero-mobile-slide-h);
                max-height: var(--v5-hero-mobile-slide-h);
                overflow: hidden;
                align-self: stretch;
            }

            body.page-variante5 #heroCarousel {
                min-height: var(--v5-hero-mobile-slide-h);
            }

            .hero-mobile-stack {
                position: relative;
                width: 100%;
                height: 100%;
                min-height: 0;
                max-height: 100%;
                border-radius: 0;
                overflow: hidden;
                background: var(--hero-m-navy);
            }

            /* Carrossel mobile (1, 3, 4): recorte cover ancorado na base */
            #slide-1 .hero-slide-1-mobile .hero-mobile-bg-img,
            #slide-3 .hero-slide-3-mobile .hero-mobile-bg-img,
            #slide-4 .hero-slide-4-mobile .hero-mobile-bg-img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center bottom;
                display: block;
            }

            #slide-5 .hero-slide-5-mobile .hero-mobile-bg-img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                display: block;
            }

            .hero-mobile-overlay {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                padding: 0 0.85rem 2.7rem;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                pointer-events: none;
            }

            .hero-mobile-overlay * {
                pointer-events: auto;
            }

            /*
             * Slide 2 mobile: mesma altura viewport do carrossel; imagem em cover (transição idêntica à do desktop).
             */
            #slide-2 .hero-slide-2-mobile .hero-mobile-stack {
                height: 100%;
                min-height: 0;
                overflow: hidden;
                line-height: 0;
            }

            #slide-4 .hero-slide-4-mobile .hero-mobile-stack,
            #slide-5 .hero-slide-5-mobile .hero-mobile-stack {
                line-height: normal;
            }

            #slide-2 .hero-slide-2-mobile .hero-mobile-bg-img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                display: block;
            }

            body.page-variante5 section.hero:has(#slide-2.hero-slide.active) {
                background-color: #3A8DCD;
            }

            .hero-slide-4-mobile .hero-mobile-overlay {
                align-items: center;
            }

            .hero-slide-4-mobile .hero-slide-4-promo-card {
                width: 100%;
                max-width: min(18.25rem, 82%);
                border-radius: 18px;
                align-self: center;
            }

            .hero-slide-4-mobile .hero-slide-4-promo-head {
                padding: 1.15rem 1.1rem 1.2rem;
            }

            .hero-slide-4-mobile .hero-slide-4-promo-body {
                padding: 1.25rem 1.1rem 1.4rem;
            }

            .hero-slide-4-mobile .hero-slide-4-promo-title {
                font-size: clamp(1.45rem, 4.8vw, 2rem);
            }

            .hero-slide-4-mobile .hero-slide-4-promo-text {
                font-size: clamp(1.02rem, 3.4vw, 1.22rem);
            }

            .hero-slide-4-mobile .hero-slide-4-promo-more {
                margin-top: 0.65rem;
                font-size: clamp(0.88rem, 3.2vw, 1.05rem);
            }

            .hero-slide-4-mobile .hero-slide-4-promo-price-line [data-clareamento-int] {
                font-size: clamp(2rem, 11vw, 2.45rem);
            }

            .hero-slide-5-mobile .hero-mobile-overlay {
                align-items: center;
            }

            .hero-slide-5-mobile .hero-slide-5-message-card {
                width: 100%;
                max-width: min(calc(18.5rem * 0.8), 74.8%);
                padding: 1.35rem calc(1.2rem * 0.2) 1.45rem 1.2rem;
                align-self: center;
                border-radius: 18px;
            }

            .hero-slide-5-mobile .hero-slide-5-headline {
                font-size: clamp(1.22rem, 6.7vw, 1.75rem) !important;
                margin-bottom: 0.75rem;
            }

            .hero-slide-5-mobile .hero-slide-5-sub {
                font-size: clamp(1.02rem, 3.8vw, 1.22rem) !important;
            }

            /* Mesmo card bipartido do desktop (classes hero-desktop-split-*) */
            .hero-slide-1-mobile .hero-desktop-split-card,
            .hero-slide-3-mobile .hero-desktop-split-card {
                width: 100%;
                max-width: 100%;
                align-self: stretch;
            }

            .hero-slide-1-mobile .hero-desktop-split-left {
                justify-content: flex-end;
                align-items: center;
            }

            .hero-slide-3-mobile .hero-desktop-split-left {
                justify-content: flex-end;
                align-items: center;
            }

            .hero-slide-1-mobile .hero-desktop-headline {
                text-align: right;
            }

            .hero-slide-3-mobile .hero-desktop-headline {
                text-align: right;
            }

            .hero-slide-1-mobile .hero-desktop-headline-line {
                text-align: right;
                line-height: 0.5;
            }

            .hero-slide-3-mobile .hero-desktop-headline-line {
                text-align: right;
                line-height: 1.05;
                padding: 1rem 1rem 0.5rem 0.3rem;
            }

            .hero-slide-3-mobile .hero-desktop-headline-sub {
                padding: 0 1rem 0.25rem;
                margin-top: 0;
                text-align: right;
                line-height: 1;
            }

            .desktop-menu { display: none; }
            .hamburger { display: flex; }

            /* Header mobile compacto: 55px */
            body.page-variante5 { --v5-navbar-h: 55px; padding-top: 55px; }
            .navbar-inner { height: 55px; padding: 0 1rem; }
            .logo { width: 110px; height: auto; }
            .hamburger { width: 36px; height: 36px; gap: 4px; padding: 5px; }
            .hamburger span { height: 2px; }
            .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
            .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
            .mobile-menu { inset: 55px 0 0 0; }

            .hero-inner {
                grid-template-columns: 1fr;
                padding: 1rem 1.25rem 2.5rem;
                gap: 2rem;
            }

            /* Hero colado ao navbar no mobile (flex center criava faixa acima do carrossel) */
            body.page-variante5 section.hero {
                align-items: stretch;
            }

            /*
             * Indicadores — mobile: canto superior esquerdo do hero —
             * 3px abaixo do header (assume hero logo abaixo da navbar), 3px da borda esquerda.
             */
            body.page-variante5 section.hero .carousel-indicators {
                position: absolute;
                top: 3px;
                left: calc(3px + env(safe-area-inset-left, 0px));
                right: auto;
                bottom: auto;
                transform: none;
                justify-content: flex-start;
                z-index: 30;
            }

            .hero h1 { font-size: 2rem; }
            .hero-sub { font-size: 0.95rem; }

            .hero-visual {
                order: -1;
                align-items: stretch;
                margin-top: 0;
            }

            .hero-img {
                height: 280px;
                max-width: 100%;
                border-radius: var(--radius-lg);
                object-position: center 15%;
            }

            .benefits-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .plans-grid { grid-template-columns: 1fr; max-width: 400px; }

            .hero-actions { flex-direction: column; align-items: flex-start; }

            .trust-bar-inner { gap: 1.25rem; }

            /* Hero Info Mobile Styles */
            .hero-info { padding: 2rem 1.25rem 1.2rem; }
            .hero-info .hero-sub { font-size: 1.05rem; text-align: left; margin-bottom: 2rem; }
            .hero-info .hero-checks { align-items: flex-start; }
            .hero-info .hero-checks li { font-size: 0.95rem; text-align: left; }
            .hero-info .hero-actions { align-items: center; justify-content: center; }

            .footer-inner { flex-direction: column; align-items: center; text-align: center; }
        }

        @media (max-width: 640px) {
            .section { padding: 1.5rem 1.25rem; }

            /* Hamburger and nav visibility handled at 900px */

            .trust-item span { display: none; }
            .trust-bar-inner { gap: 1rem; }
        }

        @media (min-width: 901px) {
            .hero-slide-1-desktop .hero-desktop-split-card,
            .hero-slide-3-desktop .hero-desktop-split-card {
                width: min(500px, 52vw);
                max-width: 100%;
            }

            .hero-inner { min-height: 560px; }
            .hero-content { padding-bottom: 5rem; }

            section.hero {
                margin-bottom: 0;
                align-items: stretch;
            }

            .hero-carousel {
                align-self: stretch;
            }

            /*
             * Slide 1 desktop: hero ocupa viewport útil acima da pilha fixa (evita faixa azul do hero-info).
             * dvh/svh + !important vence aspect-ratio base; sticky subtraído com folga conservadora.
             */
            section.hero:has(#slide-1.hero-slide.active),
            section.hero:has(#slide-2.hero-slide.active),
            section.hero:has(#slide-3.hero-slide.active),
            section.hero:has(#slide-4.hero-slide.active),
            section.hero:has(#slide-5.hero-slide.active) {
                flex-direction: column;
                min-height: var(--v5-hero-desktop-slide-h);
                background-color: #0a1628;
            }

            section.hero:has(#slide-1.hero-slide.active) .hero-carousel,
            section.hero:has(#slide-2.hero-slide.active) .hero-carousel,
            section.hero:has(#slide-3.hero-slide.active) .hero-carousel,
            section.hero:has(#slide-4.hero-slide.active) .hero-carousel,
            section.hero:has(#slide-5.hero-slide.active) .hero-carousel {
                flex: 1 1 auto;
                align-self: stretch;
                width: 100%;
                min-height: var(--v5-hero-desktop-slide-h);
                display: flex;
                flex-direction: column;
            }

            body.page-variante5 #heroCarousel .hero-slide {
                display: flex;
                flex-direction: column;
                min-height: var(--v5-hero-desktop-slide-h);
            }

            #slide-1 .hero-slide-1-desktop,
            #slide-2 .hero-slide-2-desktop,
            #slide-3 .hero-slide-3-desktop,
            #slide-4 .hero-slide-4-desktop,
            #slide-5 .hero-slide-5-desktop {
                display: flex;
                flex-direction: column;
                flex: 1 1 auto;
                min-height: 0;
            }

            #slide-1 .hero-slide-1-desktop .hero-desktop-stack,
            #slide-2 .hero-slide-2-desktop .hero-desktop-stack,
            #slide-3 .hero-slide-3-desktop .hero-desktop-stack,
            #slide-4 .hero-slide-4-desktop .hero-desktop-stack,
            #slide-5 .hero-slide-5-desktop .hero-desktop-stack {
                aspect-ratio: unset !important;
                flex: 1 1 auto;
                width: 100%;
                min-height: var(--v5-hero-desktop-slide-h) !important;
                height: var(--v5-hero-desktop-slide-h);
                max-height: none;
            }

            body.page-variante5 #heroCarousel {
                overflow: hidden;
                position: relative;
                height: var(--v5-hero-desktop-slide-h);
                min-height: var(--v5-hero-desktop-slide-h);
            }

            body.page-variante5 #heroCarouselTrack {
                height: 100%;
            }

            .hero-info {
                margin-top: 0;
                padding-top: 4rem;
            }

            /* Barra fixa: preço + CTA agrupados e centralizados */
            body.page-variante5 .sticky-bar {
                justify-content: center;
                gap: 2rem;
                flex-wrap: wrap;
            }

            body.page-variante5 .sticky-btn {
                flex: 0 0 auto;
                max-width: none;
            }
        }

        /* ─── PILHA FIXA: WhatsApp + barra de preço (viewport) ─── */
        .sticky-bottom-stack {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 250;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.65rem;
            /* sem padding inferior aqui — senão fica faixa vazia abaixo da barra branca */
            padding: 0;
            box-sizing: border-box;
            pointer-events: none;
        }

        .sticky-bottom-stack > * {
            pointer-events: auto;
        }

        .sticky-bottom-stack .wa-float {
            position: relative;
            bottom: auto;
            right: auto;
            align-self: flex-end;
            margin-right: 0.75rem;
            /* ~20% menor que 56×56 */
            width: 45px;
            height: 45px;
            z-index: 1;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(37,211,102,0.4);
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .sticky-bottom-stack .wa-float:hover {
            transform: scale(1.08);
        }

        .sticky-bottom-stack .wa-float svg {
            width: 22px;
            height: 22px;
        }

        .sticky-bottom-stack .sticky-social-row {
            align-self: flex-end;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
            margin-right: 1.3rem;
            margin-bottom: -22px
        }

        .sticky-bottom-stack .sticky-social-row .wa-float {
            margin-right: 0;
        }

        .sticky-bottom-stack .ig-float {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            box-shadow: 0 6px 18px rgba(188, 24, 136, 0.35);
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            z-index: 300;
        }

        .sticky-bottom-stack .ig-float:hover {
            transform: scale(1.08);
        }

        .sticky-bottom-stack .tiktok-float {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            z-index: 300;
        }

        .sticky-bottom-stack .tiktok-float:hover {
            transform: scale(1.08);
        }

        /* ─── STICKY MOBILE BAR ─── */
        .sticky-bar {
            display: flex;
            position: relative;
            width: 100%;
            left: auto;
            right: auto;
            bottom: auto;
            z-index: 0;
            background: var(--white);
            border-top: 1px solid var(--border);
            padding: 0.9rem 1.25rem calc(0.9rem + env(safe-area-inset-bottom, 0px)) 1.25rem;
            gap: 0.75rem;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
            border-radius: 0;
        }

        .sticky-price {
            display: flex;
            flex-direction: column;
        }

        .sticky-price .s-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
        .sticky-price .s-amount { font-size: 2.1rem; font-weight: 900; color: var(--orange); letter-spacing: -0.5px; line-height: 1; }
        .sticky-price .s-amount small { font-size: 0.9rem; font-weight: 700; vertical-align: baseline; opacity: 0.8; }
        .sticky-price .s-period { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

        .sticky-btn {
            flex: 1;
            max-width: 220px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            color: var(--white);
            border: none;
            border-radius: 100px;
            padding: 13px 20px;
            font-family: 'Raleway', sans-serif;
            font-size: 0.88rem;
            font-weight: 800;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            text-align: center;
        }

        /* Passo 4 apenas (Como funciona): estica o card branco à altura da linha do grid — desktop */
        @media (min-width: 768px) {
            body.page-variante5 #como-funciona .v5-como-passo4-col {
                display: flex;
                flex-direction: column;
                align-items: center;
                align-self: stretch;
                min-height: 0;
                height: 100%;
            }

            body.page-variante5 #como-funciona .v5-como-passo4-card {
                flex: 1 1 auto;
                display: flex;
                flex-direction: column;
                width: 100%;
                min-height: 0;
            }
        }


