:root {
            --gold-primary: #BF953F;
            --gold-mid: #FCF6BA;
            --gold-dark: #8B6914;
            --gold-glow: rgba(191, 149, 63, 0.35);
            --bg-deep: #060606;
            --bg-surface: #0d0d0d;
            --text-bright: #F5F0E8;
            --text-mid: #9A9080;
        }

        * { font-family: 'Open Sans', sans-serif; box-sizing: border-box; }
        h1, h2, h3, h4, h5, h6, .font-montserrat {
            font-family: 'Montserrat', sans-serif !important;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        html, body {
            background-color: var(--bg-deep);
            color: var(--text-bright);
            overflow-x: hidden !important;
            width: 100%;
            line-height: 1.6;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #060606;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #BF953F, #FCF6BA, #BF953F);
            border-radius: 10px;
            border: 2px solid #060606;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #8B6914, #BF953F, #8B6914);
        }

        /* Scroll Reveal Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =============================================
           HERO — REDESIGN COMPLETO
        ============================================= */

        .hero-grain {
            position: absolute; inset: 0; z-index: 2;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 180px 180px;
            opacity: 0.6;
            mix-blend-mode: overlay;
        }

        .hero-dotgrid {
            position: absolute; inset: 0; z-index: 1; pointer-events: none;
            background-image: radial-gradient(circle, rgba(191,149,63,0.12) 1px, transparent 1px);
            background-size: 36px 36px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
        }

        .hero-blob-1 {
            position: absolute; z-index: 1; pointer-events: none;
            width: 700px; height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(191,149,63,0.07) 0%, transparent 70%);
            top: -200px; right: -100px;
            animation: blob-drift 12s ease-in-out infinite alternate;
        }
        .hero-blob-2 {
            position: absolute; z-index: 1; pointer-events: none;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(80,60,20,0.09) 0%, transparent 70%);
            bottom: -150px; left: -100px;
            animation: blob-drift 16s ease-in-out infinite alternate-reverse;
        }
        @keyframes blob-drift {
            from { transform: translate(0,0) scale(1); }
            to   { transform: translate(40px, 30px) scale(1.08); }
        }

        /* =============================================
           GOLD PREMIUM — SISTEMA UNIFICADO
           Todos os yellows/amarelos agora usam este
           gradiente animado idêntico ao hero
        ============================================= */

        /* Texto dourado animado — aplicado em .text-accent E .text-gold-premium */
        .text-gold-premium,
        .text-accent {
            background: linear-gradient(90deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fcf6ba 75%, #bf953f 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shine-gold 5s linear infinite;
            display: inline-block;
            font-weight: 900 !important;
        }
        @keyframes shine-gold { to { background-position: 200% center; } }

        /* Background dourado animado — botões, badges, divisores */
        .bg-accent {
            background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 45%, #BF953F 100%) !important;
            background-size: 200% auto !important;
            transition: background-position 0.5s ease !important;
        }
        .bg-accent:hover {
            background-position: right center !important;
        }

        /* Border dourada */
        .border-accent { border-color: #BF953F !important; }

        /* Divisor vertical dourado (h-10 w-1) */
        .h-10.w-1.bg-accent,
        .h-8.w-1.bg-accent {
            background: linear-gradient(to bottom, #bf953f, #fcf6ba, #bf953f) !important;
            background-size: auto 200% !important;
        }

        /* =============================================
           HERO BADGE
        ============================================= */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(191,149,63,0.08);
            border: 1px solid rgba(191,149,63,0.25);
            border-radius: 100px;
            padding: 6px 16px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #BF953F;
        }
        .hero-badge-dot {
            width: 6px; height: 6px;
            background: #BF953F;
            border-radius: 50%;
            animation: pulse-dot 2.5s ease-in-out infinite;
            box-shadow: 0 0 6px rgba(191,149,63,0.8);
        }
        @keyframes pulse-dot {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.6; }
        }

        /* Main headline */
        .hero-headline-upper {
            font-family: 'Montserrat', sans-serif !important;
            font-size: clamp(4rem, 8vw, 6.5rem);
            font-weight: 900;
            line-height: 0.88;
            letter-spacing: -0.04em;
            color: rgba(245,240,232,0.12);
        }
        .hero-headline-main {
            font-family: 'Montserrat', sans-serif !important;
            font-size: clamp(4rem, 8vw, 6.5rem);
            font-weight: 900;
            line-height: 0.88;
            letter-spacing: -0.04em;
        }
        .hero-headline-sub {
            font-family: 'Montserrat', sans-serif !important;
            font-size: clamp(3.5rem, 7vw, 5.5rem);
            font-weight: 900;
            line-height: 0.88;
            letter-spacing: -0.04em;
        }

        .hero-body {
            font-size: 1.05rem;
            color: var(--text-mid);
            line-height: 1.8;
            max-width: 440px;
        }
        .hero-body strong { color: var(--text-bright); font-weight: 600; }

        /* =============================================
           BOTÃO CTA HERO (PRIMÁRIO) — DOURADO PREMIUM
        ============================================= */
        .btn-hero-primary {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
            background-size: 200% auto;
            color: #000;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 4px;
            overflow: hidden;
            transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 32px rgba(191,149,63,0.25), 0 2px 8px rgba(0,0,0,0.5);
        }
        .btn-hero-primary:hover {
            background-position: right center;
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(191,149,63,0.4), 0 4px 16px rgba(0,0,0,0.5);
        }
        .btn-hero-primary svg { transition: transform 0.3s ease; }
        .btn-hero-primary:hover svg { transform: translateX(4px); }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--text-mid);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 24px;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }
        .btn-hero-secondary:hover {
            color: var(--text-bright);
            border-color: rgba(191,149,63,0.3);
            background: rgba(191,149,63,0.05);
        }

        /* Stats row */
        .stat-item { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
        .stat-number { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; font-weight: 900; line-height: 1; color: var(--text-bright); }
        .stat-number span { color: #BF953F; }
        .stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }
        .stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

        .hero-vertical-label {
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(191,149,63,0.3);
            white-space: nowrap;
        }

        .hero-image-frame {
            position: relative;
            width: 100%;
            max-width: 480px;
            height: 100%;
            max-height: 90vh;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
        .hero-image-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(191,149,63,0.15);
            border-radius: 200px 200px 0 0;
            transform: translate(16px, 0);
            z-index: 1;
            pointer-events: none;
        }
        .hero-image-frame::after {
            content: '';
            position: absolute;
            top: 20px; right: 20px;
            width: 24px; height: 24px;
            border-top: 2px solid rgba(191,149,63,0.5);
            border-right: 2px solid rgba(191,149,63,0.5);
            z-index: 5; pointer-events: none;
        }
        .hero-image-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(175deg, rgba(30,20,5,0.5) 0%, rgba(0,0,0,0.9) 80%);
            border: 1px solid rgba(191,149,63,0.25);
            border-bottom: none;
            border-radius: 200px 200px 0 0;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            box-shadow:
                0 0 0 1px rgba(0,0,0,0.5),
                0 40px 80px rgba(0,0,0,0.7),
                inset 0 1px 0 rgba(191,149,63,0.1),
                0 0 60px rgba(191,149,63,0.05);
            z-index: 2;
        }
        .hero-image-inner::before {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 80%; height: 60%;
            background: radial-gradient(ellipse at bottom, rgba(191,149,63,0.08) 0%, transparent 70%);
            pointer-events: none; z-index: 3;
        }
        .hero-image-inner::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 30%;
            background: linear-gradient(to bottom, rgba(6,6,6,0.6) 0%, transparent 100%);
            z-index: 4; pointer-events: none;
        }
        .hero-img {
            position: relative; z-index: 5;
            width: auto;
            height: 100%;
            max-height: 100%;
            object-fit: contain;
            object-position: bottom center;
            filter: brightness(1.05) contrast(1.08);
            mask-image: linear-gradient(to top, transparent 0%, black 2%);
            -webkit-mask-image: linear-gradient(to top, transparent 0%, black 2%);
            transform: scale(1.1);
            transform-origin: bottom center;
        }

        .metric-card {
            position: absolute;
            background: rgba(10,8,4,0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(191,149,63,0.2);
            border-radius: 12px;
            padding: 14px 18px;
            z-index: 20;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        .metric-card .metric-val { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
        .metric-card .metric-val span { color: #BF953F; }
        .metric-card .metric-tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-top: 3px; }
        .metric-card-left { left: -24px; bottom: 20%; animation: float-card 6s ease-in-out infinite; }
        .metric-card-top { right: -20px; top: 25%; animation: float-card 6s ease-in-out infinite 2s; }
        @keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

        .frame-corner-tl {
            position: absolute;
            bottom: 0; left: 20px;
            width: 24px; height: 24px;
            border-bottom: 2px solid rgba(191,149,63,0.5);
            border-left: 2px solid rgba(191,149,63,0.5);
            z-index: 10; pointer-events: none;
        }

        .scroll-indicator { display: flex; align-items: center; gap: 10px; color: rgba(191,149,63,0.4); font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
        .scroll-line { width: 40px; height: 1px; background: linear-gradient(to right, rgba(191,149,63,0.4), transparent); }
        .scroll-wheel { width: 18px; height: 30px; border: 1px solid rgba(191,149,63,0.3); border-radius: 100px; position: relative; }
        .scroll-wheel::after { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: rgba(191,149,63,0.7); border-radius: 100px; animation: scroll-anim 2s ease-in-out infinite; }
        @keyframes scroll-anim { 0%, 100% { top: 5px; opacity: 1; } 80% { top: 14px; opacity: 0; } }

        /* Reveal animations */
        .reveal { opacity: 0; transform: translateY(20px); }
        .reveal.visible { animation: reveal-up 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
        .reveal-d1.visible { animation-delay: 0.1s; }
        .reveal-d2.visible { animation-delay: 0.22s; }
        .reveal-d3.visible { animation-delay: 0.36s; }
        .reveal-d4.visible { animation-delay: 0.5s; }
        .reveal-d5.visible { animation-delay: 0.64s; }
        .reveal-d6.visible { animation-delay: 0.78s; }
        @keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }

        /* =============================================
           GRID EFFECT FOR WHITE SECTIONS
        ============================================= */
        .grid-bg-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .grid-glow-square {
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.06);
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            pointer-events: none;
            z-index: 1;
        }

        .grid-glow-square.active {
            opacity: 1;
        }

        /* =============================================
           MOBILE CENTRALIZATION
        ============================================= */
        @media (max-width: 767px) {
            .container, section, div, h1, h2, h3, p, span, li, form { text-align: center !important; }
            .flex, .grid { justify-content: center !important; align-items: center !important; }
            .text-left, .md\:text-left { text-align: center !important; }
            .items-start, .md\:items-start { align-items: center !important; }
            .justify-start, .md\:justify-start { justify-content: center !important; }
            ul { display: flex; flex-direction: column; align-items: center; }
            li { justify-content: center; }
            .hero-headline-upper, .hero-headline-main, .hero-headline-sub { text-align: center !important; }
            .hero-body { margin-left: auto; margin-right: auto; }
            .stat-item { align-items: center !important; text-align: center !important; }
            .hero-badge { margin: 0 auto; }
            .reveal-d4, .reveal-d5 { justify-content: center !important; text-align: center !important; }
            .stat-divider { display: none !important; }
            .reveal-d5 { flex-direction: column !important; gap: 20px !important; }
            .hero-vertical-label { display: none !important; }
        }

        /* =============================================
           BOTÃO CTA GERAL — DOURADO PREMIUM
        ============================================= */
        .btn-cta {
            position: relative; overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
            z-index: 50; letter-spacing: 0.05em;
            font-weight: 700; line-height: 1.2;
            /* Override: garante gradiente dourado mesmo quando usado com .bg-accent */
            background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
            background-size: 200% auto;
            color: #000 !important;
        }
        .btn-cta::before {
            content: ''; position: absolute;
            top: 0; left: -150%; width: 40%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-25deg);
            animation: shine-premium 5s infinite linear; z-index: 1;
        }
        @keyframes shine-premium { 0% { left:-150%; } 50% { left:150%; } 100% { left:150%; } }
        .btn-cta:hover {
            background-position: right center;
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(191,149,63,0.35);
        }
        .btn-cta:active { transform: translateY(-2px) scale(0.98); }

        /* Card styles */
        .card-wrapper { position: relative; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
        .card-wrapper:hover { transform: translateY(-12px) scale(1.02); }
        .card-premium {
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 2.5rem; border-radius: 24px;
            position: relative; overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            height: 100%; transition: all 0.4s ease;
            backface-visibility: hidden;
            -webkit-font-smoothing: subpixel-antialiased;
        }
        .card-premium::before {
            content: ''; position: absolute;
            top: 0; left: -150%; width: 100%; height: 100%;
            background: linear-gradient(120deg, transparent, rgba(191,149,63,0.12), transparent);
            transition: all 0.6s ease; z-index: 1; pointer-events: none;
        }
        .card-wrapper:hover .card-premium {
            border-color: rgba(191,149,63,0.6);
            background: rgba(255,255,255,0.06);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(191,149,63,0.1);
        }
        .card-wrapper:hover .card-premium::before { left: 150%; }
        .no-shine::before { display: none !important; }
        .card-featured {
            border-color: rgba(191,149,63,0.3);
            background: linear-gradient(135deg, rgba(191,149,63,0.08) 0%, rgba(0,0,0,0.2) 100%);
        }

        /* Botão outline dos planos */
        .btn-outline-premium {
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
            background: transparent;
        }
        .btn-outline-premium:hover {
            background: rgba(191,149,63,0.08);
            border-color: rgba(191,149,63,0.4);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: #FCF6BA !important;
        }

        /* Floating badges */
        .float-badge { animation: float-premium 5s ease-in-out infinite; }
        .float-badge-delayed-1 { animation: float-premium 5s ease-in-out infinite 0.8s; }
        .float-badge-delayed-2 { animation: float-premium 5s ease-in-out infinite 1.6s; }
        @keyframes float-premium { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.02); } }

        .fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Header */
        #ga-header {
            position: fixed; top: 0; z-index: 100; width: 100%;
            border-bottom: 1px solid transparent; background: transparent;
            transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
        }
        #ga-header.scrolled {
            background: rgba(6,6,6,0.85);
            border-color: rgba(191,149,63,0.1);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.7);
        }
        #ga-header nav { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
        .ga-logo { display: flex; align-items: center; text-decoration: none; z-index: 10; }
        .ga-logo-img { height: 70px; width: auto; display: block; object-fit: contain; transform: scale(1.3); transform-origin: left center; }
        .header-nav-links { display: none; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); }
        @media (min-width: 768px) { .header-nav-links { display: flex; } }
        .header-nav-link { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text-mid); text-decoration: none; padding: 8px 14px; border-radius: 6px; transition: background 0.2s ease, color 0.2s ease; }
        .header-nav-link:hover { background: rgba(255,255,255,0.05); color: var(--text-bright); }
        .header-actions { display: none; align-items: center; gap: 8px; z-index: 10; }
        @media (min-width: 768px) { .header-actions { display: flex; } }
        .btn-header-filled {
            font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700;
            letter-spacing: 0.05em; text-transform: uppercase; color: #000;
            background: linear-gradient(135deg, #BF953F, #FCF6BA, #BF953F);
            background-size: 200% auto;
            border-radius: 6px; padding: 9px 20px; text-decoration: none; cursor: pointer;
            transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 15px rgba(191,149,63,0.25);
        }
        .btn-header-filled:hover { background-position: right center; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(191,149,63,0.35); }

        .header-hamburger { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: transparent; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #f0f0f0; cursor: pointer; transition: background 0.2s ease; }
        @media (min-width: 768px) { .header-hamburger { display: none; } }
        .header-hamburger:hover { background: rgba(255,255,255,0.05); }
        .menu-icon { width: 24px; height: 24px; }

        #mobile-overlay { position: fixed; top: 80px; left: 0; width: 100%; height: calc(100vh - 80px); background: #060606; z-index: 90; padding: 1.5rem; display: none; flex-direction: column; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
        #mobile-overlay.active { display: flex; }
        .mobile-overlay-links { display: flex; flex-direction: column; gap: 0.5rem; }
        .mobile-overlay-link { font-family: 'Montserrat', sans-serif; font-size: 1.125rem; font-weight: 600; color: var(--text-mid); text-decoration: none; padding: 12px; border-radius: 8px; transition: background 0.2s ease, color 0.2s ease; }
        .mobile-overlay-link:hover { background: rgba(255,255,255,0.05); color: var(--text-bright); }
        .mobile-overlay-actions { display: flex; flex-direction: column; gap: 0.75rem; }
        .mobile-btn-filled {
            width: 100%; text-align: center; padding: 14px; border-radius: 8px;
            font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.05em; text-decoration: none;
            background: linear-gradient(135deg, #BF953F, #FCF6BA, #BF953F);
            background-size: 200% auto;
            color: #000;
        }

        /* Accordion */
        .acc-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
        .acc-trigger { width: 100%; display: flex; align-items: flex-start; gap: 1rem; padding: 1.75rem 0; text-align: left; cursor: pointer; }
        .acc-index { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 800; color: rgba(255,255,255,0.1); margin-top: 0.4rem; transition: color 0.3s ease; }
        .acc-title { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; color: rgba(255,255,255,0.18); transition: color 0.35s ease, letter-spacing 0.35s ease; flex: 1; }
        .acc-item.is-open .acc-title { color: #ffffff; letter-spacing: 0em; }
        .acc-item.is-open .acc-index { color: #BF953F; }
        .acc-item:not(.is-open):hover .acc-title { color: rgba(255,255,255,0.45); }
        .acc-item:not(.is-open):hover .acc-index { color: rgba(191,149,63,0.5); }
        .acc-arrow { flex-shrink: 0; width: 22px; height: 22px; margin-top: 0.5rem; color: rgba(255,255,255,0.2); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease; }
        .acc-item.is-open .acc-arrow { transform: rotate(180deg); color: #BF953F; }
        .acc-content { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1); }
        .acc-item.is-open .acc-content { max-height: 400px; }
        .acc-body { padding: 0 0 1.75rem 2.45rem; color: #b8b8b8; font-size: 1rem; line-height: 1.75; max-width: 640px; }
        .acc-item.is-open .acc-body { border-left: 2px solid rgba(191,149,63,0.25); padding-left: 1.25rem; margin-left: 1.2rem; }

        /* Form */
        .form-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1rem 1.5rem; color: #fff; transition: all 0.3s ease; }
        .form-input:focus { outline: none; border-color: #BF953F; background: rgba(255,255,255,0.07); box-shadow: 0 0 20px rgba(191,149,63,0.08); }
        .form-input::placeholder { color: rgba(255, 255, 255, 0.3); }
        select.form-input option { background-color: #1a1a1a; color: #fff; }
        .form-label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }

        /* Plans Section Glows */
        .plans-glow-1 {
            position: absolute; top: 10%; left: -10%; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(191,149,63,0.08) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none; z-index: 1;
            filter: blur(60px);
        }
        .plans-glow-2 {
            position: absolute; bottom: 10%; right: -10%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(191,149,63,0.06) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none; z-index: 1;
            filter: blur(50px);
        }
        .plans-glow-center {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 80%; height: 60%;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, transparent 80%);
            pointer-events: none; z-index: 1;
        }

        /* Custom Select Styles */
        .custom-select-wrapper { position: relative; width: 100%; }
        .custom-select-trigger { 
            width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); 
            border-radius: 12px; padding: 1rem 1.5rem; color: #fff; cursor: pointer; 
            display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
            position: relative;
        }
        .custom-select-trigger:after {
            content: ''; width: 8px; height: 8px; border-right: 2px solid rgba(255,255,255,0.4); 
            border-bottom: 2px solid rgba(255,255,255,0.4); transform: rotate(45deg); 
            position: absolute; right: 20px; transition: all 0.3s ease;
        }
        .custom-select-wrapper.open .custom-select-trigger:after { transform: rotate(-135deg); top: 22px; }
        .custom-select-wrapper.open .custom-select-trigger { border-color: #BF953F; background: rgba(255,255,255,0.07); }
        
        .custom-options {
            position: absolute; top: calc(100% + 8px); left: 0; right: 0; 
            background: #1a1a1a; border: 1px solid rgba(191,149,63,0.2); border-radius: 12px;
            overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-10px);
            transition: all 0.3s ease; z-index: 100; box-shadow: 0 15px 35px rgba(0,0,0,0.5);
        }
        .custom-select-wrapper.open .custom-options { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .custom-option {
            padding: 12px 20px; color: rgba(255,255,255,0.7); cursor: pointer; 
            text-align: center; transition: all 0.2s ease; font-size: 0.95rem;
        }
        .custom-option:hover { background: rgba(191,149,63,0.1); color: #fff; }
        .custom-option.selected { background: rgba(191,149,63,0.2); color: #BF953F; font-weight: 700; }

        /* Dividers */
        .brush-divider { position: absolute; left: 0; width: 100%; height: 80px; z-index: 40; pointer-events: none; }
        .brush-divider-top { top: -1px; transform: rotate(180deg); }
        .brush-divider-bottom { bottom: -1px; }
        .brush-svg { width: 100%; height: 100%; fill: #ffffff; }
        .brush-svg-black { width: 100%; height: 100%; fill: #060606; }

        /* Before/After slider */
        .before-after-slider { position: relative; overflow: hidden; z-index: 10; border-radius: 12px; width: 100%; max-width: 100%; aspect-ratio: 3/4; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
        .before-after-slider img { display: block; width: 100%; height: 100%; object-fit: cover; }
        .after-image { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; border-right: 2px solid #BF953F; }
        .after-image img { width: 100%; height: 100%; object-fit: cover; }
        .slider-handle { position: absolute; top: 0; left: 50%; width: 3px; height: 100%; background: linear-gradient(to bottom, #bf953f, #fcf6ba, #bf953f); cursor: ew-resize; transform: translateX(-50%); }
        .slider-button { position: absolute; top: 50%; left: 50%; width: 45px; height: 45px; background: linear-gradient(135deg, #BF953F, #FCF6BA, #BF953F); background-size: 200% auto; border-radius: 50%; transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; color: #000; font-weight: bold; box-shadow: 0 8px 25px rgba(191,149,63,0.3); transition: all 0.3s ease; }
        .slider-button:hover { transform: translate(-50%,-50%) scale(1.1); background-position: right center; }

        /* =============================================
           BADGE "MAIS VENDIDO" e "ELITE" — dourado
        ============================================= */
        .badge-gold {
            background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
            background-size: 200% auto;
            color: #000 !important;
            font-weight: 900;
        }

        /* Botão selecionar do plano Ouro */
        .btn-plano-ouro {
            background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
            background-size: 200% auto;
            color: #000 !important;
            transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 25px rgba(191,149,63,0.25);
        }
        .btn-plano-ouro:hover {
            background-position: right center;
            transform: scale(1.04);
            box-shadow: 0 12px 35px rgba(191,149,63,0.4);
        }

        /* Botão Premium */
        .btn-plano-premium {
            background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #BF953F 100%);
            background-size: 200% auto;
            color: #000 !important;
            transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(191,149,63,0.2);
        }
        .btn-plano-premium:hover {
            background-position: right center;
            transform: scale(1.02);
            box-shadow: 0 16px 40px rgba(191,149,63,0.4);
        }

        /* Hover footer ícones */
        .footer-icon:hover { color: #BF953F; }

        @media (max-width: 767px) {
            /* Centralização Global Mobile */
            .container, section, div, h1, h2, h3, h4, h5, h6, p, span, li, form, label { 
                text-align: center !important; 
            }
            .flex, .grid { 
                justify-content: center !important; 
                align-items: center !important; 
            }
            .text-left, .md\:text-left { text-align: center !important; }
            .items-start, .md\:items-start { align-items: center !important; }
            .justify-start, .md\:justify-start { justify-content: center !important; }
            
            /* Ajustes Específicos */
            .hero-image-frame { display: none !important; }
            .hero-vertical-label { display: none; }
            .metric-card { display: none; }
            #home { padding-top: 110px !important; padding-bottom: 60px !important; }
            
            /* Garantir que listas e itens flex fiquem centralizados */
            ul { display: flex; flex-direction: column; align-items: center; }
            .stat-item { align-items: center !important; text-align: center !important; }
            .stat-divider { display: none !important; }
            .reveal-d4 { flex-direction: column !important; gap: 20px !important; }
            
            /* Reset de margens para centralização */
            .mx-0, .ml-0, .mr-0 { margin-left: auto !important; margin-right: auto !important; }

            /* Centralizar botões do HERO no mobile */
            .reveal-d3 { 
                display: flex !important; 
                flex-direction: column !important; 
                align-items: center !important; 
                justify-content: center !important; 
                width: 100% !important;
            }
            .btn-hero-primary, .btn-hero-secondary {
                width: 100% !important;
                max-width: 300px !important;
                justify-content: center !important;
            }

            /* Diminuir fonte do botão do formulário no mobile */
            #pre-avaliacao .btn-cta {
                font-size: 0.90rem !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                letter-spacing: 0.05em !important;
            }
        }