:root {
            --primary: #2C4364;
            --primary-foreground: #FFFFFF;
            --brand-yellow: #FFCD00;
            --brand-yellow-bright: #FFF112;
            --brand-navy: #2C4364;
            --brand-gray-text: #64748B;
            --brand-success: #10B981;
            --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
            --shadow-card-hover: 0 12px 36px rgba(0,0,0,0.13);
        }

        

        body {
            font-family: "Poppins", sans-serif;
            background: #fff;
            color: var(--brand-navy);
        }

        /* ──────────────── HEADER ──────────────── */
        

        

        

        

        

        
        

        

        

        

        
        

        

        

        /* ──────────────── BACKGROUND ──────────────── */
        #bg-canvas {
            position: fixed; top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0; pointer-events: none;
        }

        .bg-orb {
            position: fixed; border-radius: 50%;
            pointer-events: none; z-index: 0;
            filter: blur(80px);
            animation: orbFloat linear infinite;
        }

        .bg-orb-1 {
            width: 560px; height: 560px;
            background: radial-gradient(circle, rgba(255,205,0,0.14) 0%, transparent 70%);
            top: -120px; left: -120px;
            animation-duration: 20s; animation-delay: 0s;
        }

        .bg-orb-2 {
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(44,67,100,0.10) 0%, transparent 70%);
            bottom: 8%; right: -100px;
            animation-duration: 24s; animation-delay: -9s;
        }

        .bg-orb-3 {
            width: 320px; height: 320px;
            background: radial-gradient(circle, rgba(255,241,18,0.11) 0%, transparent 70%);
            top: 42%; left: 52%;
            animation-duration: 28s; animation-delay: -16s;
        }

        @keyframes orbFloat {
            0%   { opacity: 0.6; transform: translate(0px,   0px)  scale(1);    }
            25%  { opacity: 0.8; transform: translate(28px, -22px) scale(1.05); }
            50%  { opacity: 0.6; transform: translate(14px,  32px) scale(0.97); }
            75%  { opacity: 0.75;transform: translate(-22px, 10px) scale(1.03); }
            100% { opacity: 0.6; transform: translate(0px,   0px)  scale(1);    }
        }

        .hero, section { position: relative; z-index: 1; }

        /* ──────────────── HERO ──────────────── */
        .hero {
            position: relative;
            overflow: hidden;
            background: #fff;
            padding: 4.5rem 0 5rem;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -120px; left: -120px;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(255,205,0,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: -80px; right: -80px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(44,67,100,0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-container {
            position: relative; z-index: 1;
            max-width: 860px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Eyebrow badge */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(44,67,100,0.06);
            border: 1px solid rgba(44,67,100,0.12);
            color: var(--brand-navy);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            margin-bottom: 1.25rem;
            animation: fadeUp 0.5s ease both;
        }

        .eyebrow-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--brand-yellow);
            flex-shrink: 0;
        }

        /* H1 */
        .hero-h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 0;
        }

        .hero-h1 .line-plain {
            display: block;
            color: var(--brand-navy);
        }

        .hero-h1 .line-badge {
            display: inline-block;
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            padding: 0.05em 0.35em;
            border-radius: 0.5rem;
            margin: 0.08em 0;
        }

        /* Divisor decorativo */
        .hero-rule {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 1.45rem auto 1.6rem;
            width: 100%;
            max-width: 520px;
            animation: fadeUp 0.55s ease 0.82s both;
        }

        .hero-rule-line {
            flex: 1; height: 2px;
            background: linear-gradient(90deg, rgba(44,67,100,0.15) 0%, rgba(44,67,100,0.05) 100%);
        }

        .hero-rule-line.rev {
            background: linear-gradient(90deg, rgba(44,67,100,0.05), rgba(44,67,100,0.15));
        }

        /* Sub-headline */
        .hero-subline {
            font-size: clamp(1rem, 4vw, 2.2rem);
            font-weight: 800;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            width: 100%;
        }

        .hero-subline .sl-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
            justify-content: center;
        }

        .tag-yellow {
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            padding: 0.1em 0.4em;
            border-radius: 0.4rem;
            display: inline-block;
        }

        .tag-navy {
            background: var(--brand-navy);
            color: #fff;
            padding: 0.1em 0.4em;
            border-radius: 0.4rem;
            display: inline-block;
        }

        /* Descrição */
        .hero-desc {
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: var(--brand-gray-text);
            max-width: 580px;
            line-height: 1.7;
            text-align: center;
            animation: fadeUp 0.55s ease 1.4s both;
        }

        /* Bullets */
        .hero-features {
            list-style: none;
            margin-top: 1.25rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            justify-content: center;
            max-width: 640px;
            animation: fadeUp 0.55s ease 1.6s both;
        }

        .hero-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--brand-navy);
            background: #F0F4F9;
            border: 1px solid #DDE5EF;
            border-radius: 999px;
            padding: 0.35rem 0.85rem 0.35rem 0.5rem;
        }

        .feat-icon {
            flex-shrink: 0;
            width: 1.6rem; height: 1.6rem;
            border-radius: 50%;
            background: rgba(255,205,0,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-navy);
        }

        /* Botão CTA principal */
        .hero-cta-wrap {
            margin-top: 2.25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            animation: fadeUp 0.55s ease 1.8s both;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 1rem 2.5rem;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,205,0,0.35);
            transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
            text-decoration: none;
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(255,205,0,0.45);
            background: #ffe800;
        }

        .btn-hero-primary svg { flex-shrink: 0; }

        .hero-cta-note {
            font-size: 0.75rem;
            color: var(--brand-gray-text);
            font-weight: 500;
        }

        /* Título de transição */
        .plan-intro-heading {
            margin-top: 2rem;
            width: 100%;
            animation: fadeUp 0.55s ease 2.0s both;
        }

        .plan-intro-title {
            font-size: clamp(1.45rem, 3vw, 2.5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.04em;
            text-align: center;
            color: var(--brand-navy);
            text-transform: uppercase;
        }

        .plan-intro-rule {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 1rem auto 0;
            width: 100%;
            max-width: 520px;
        }

        .plan-intro-rule-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, rgba(44,67,100,0.15) 0%, rgba(44,67,100,0.05) 100%);
        }

        .plan-intro-rule-line.rev {
            background: linear-gradient(90deg, rgba(44,67,100,0.05), rgba(44,67,100,0.15));
        }

        .plan-intro-rule-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ──────────────── ANIMAÇÕES ──────────────── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideFromLeft {
            from { opacity: 0; transform: translateX(-60px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideFromRight {
            from { opacity: 0; transform: translateX(60px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        @keyframes dropBounce {
            0%   { opacity: 0; transform: translateY(-55px) scale(1.08); }
            60%  { opacity: 1; transform: translateY(6px)   scale(1.02); }
            80%  { transform: translateY(-3px) scale(0.99); }
            100% { opacity: 1; transform: translateY(0)     scale(1); }
        }

        @keyframes floatGentle {
            0%   { transform: translateY(0px); }
            50%  { transform: translateY(-5px); }
            100% { transform: translateY(0px); }
        }

        /* Clube+ — entrada especial: escala + flash amarelo */
        /* ── Clube+ — animações cinematográficas ── */

        /* Borda superior que se "desenha" da esquerda para direita */
        @keyframes upgradeBorderDraw {
            from { background-size: 0% 4px; }
            to   { background-size: 100% 4px; }
        }

        /* Reveal de texto: desce e aparece */
        @keyframes upgradeRevealDown {
            0%   { opacity: 0; transform: translateY(-28px); }
            60%  { opacity: 1; transform: translateY(4px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Reveal do highlight CLUBE+: clip-path que abre da esquerda */
        @keyframes upgradeClipReveal {
            from { clip-path: inset(0 100% 0 0); opacity: 1; }
            to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
        }

        /* Fade up suave para descrição e divisor */
        @keyframes upgradeFadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Bounce de entrada dos cards */
        @keyframes upgradeCardBounce {
            0%   { opacity: 0; transform: translateY(30px) scale(0.92); }
            55%  { opacity: 1; transform: translateY(-6px) scale(1.02); }
            78%  { transform: translateY(3px) scale(0.99); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Pulso no preço */
        @keyframes upgradePriceIn {
            0%   { opacity: 0; transform: scale(0.7); }
            65%  { opacity: 1; transform: scale(1.08); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Shake no CTA */
        @keyframes upgradeCtaIn {
            0%   { opacity: 0; transform: translateY(16px); }
            70%  { opacity: 1; transform: translateY(-4px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* ── Classes de scroll-animação por seção ── */
        .sect-anim-label {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
        }
        .sect-anim-label.visible { opacity: 1; transform: translateX(0); }

        .sect-anim-content {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s;
        }
        .sect-anim-content.visible { opacity: 1; transform: translateY(0); }

        .item-anim {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .item-anim.visible { opacity: 1; transform: translateY(0); }

        /* Clube+ — estado inicial: tudo invisível */
        .upg-pretitle   { opacity: 0; }
        .upg-title-main { opacity: 0; }
        .upg-highlight  { opacity: 0; }
        .upg-rule       { opacity: 0; }
        .upg-desc       { opacity: 0; }
        .upg-card       { opacity: 0; }
        .upg-price      { opacity: 0; }
        .upg-btn        { opacity: 0; }

        /* Clube+ — estado visível: cada peça com seu timing */
        .upgrade-section.playing .upg-pretitle {
            animation: upgradeRevealDown 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both;
        }
        .upgrade-section.playing .upg-title-main {
            animation: upgradeRevealDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both;
        }
        .upgrade-section.playing .upg-highlight {
            animation: upgradeClipReveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.75s both;
        }
        .upgrade-section.playing .upg-rule {
            animation: upgradeFadeUp 0.55s ease 1.0s both;
        }
        .upgrade-section.playing .upg-desc {
            animation: upgradeFadeUp 0.55s ease 1.15s both;
        }
        .upgrade-section.playing .upg-card:nth-child(1) { animation: upgradeCardBounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.30s both; }
        .upgrade-section.playing .upg-card:nth-child(2) { animation: upgradeCardBounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.42s both; }
        .upgrade-section.playing .upg-card:nth-child(3) { animation: upgradeCardBounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.54s both; }
        .upgrade-section.playing .upg-card:nth-child(4) { animation: upgradeCardBounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.66s both; }
        .upgrade-section.playing .upg-card:nth-child(5) { animation: upgradeCardBounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.78s both; }
        .upgrade-section.playing .upg-card:nth-child(6) { animation: upgradeCardBounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.90s both; }
        .upgrade-section.playing .upg-price {
            animation: upgradePriceIn 0.65s cubic-bezier(0.22,1,0.36,1) 2.10s both;
        }
        .upgrade-section.playing .upg-btn {
            animation: upgradeCtaIn 0.6s cubic-bezier(0.22,1,0.36,1) 2.30s both;
        }

        /* Borda superior se desenha ao entrar */
        .upgrade-section {
            background-repeat: no-repeat;
            background-position: top left;
            background-image: linear-gradient(var(--brand-yellow-bright), var(--brand-yellow-bright));
            background-size: 0% 4px;
            border-top: none;
        }
        .upgrade-section.playing {
            animation: upgradeBorderDraw 0.7s ease 0s both;
            background-size: 100% 4px;
        }

        .tag-yellow-pulse {
            white-space: normal;
            animation:
                dropBounce  0.85s cubic-bezier(0.22,1,0.36,1) 1.20s both,
                floatGentle 1.2s  ease-in-out                  2.70s 1;
            display: inline-block;
        }

        .line-plain.anim-left  { animation: slideFromLeft  0.9s cubic-bezier(0.22,1,0.36,1) both; }
        .line-badge.anim-right { animation: slideFromRight 0.9s cubic-bezier(0.22,1,0.36,1) both; }

        .h1-l1 { animation-delay: 0.08s; }
        .h1-l2 { animation-delay: 0.32s; }
        .h1-l3 { animation-delay: 0.56s; }

        .sl-from-right { animation: slideFromRight 0.8s cubic-bezier(0.22,1,0.36,1) both; }
        .sl-from-left  { animation: slideFromLeft  0.8s cubic-bezier(0.22,1,0.36,1) both; }

        .sl-d1 { animation-delay: 1.00s; }
        .sl-d2 { animation-delay: 1.20s; }
        .sl-d3 { animation-delay: 1.42s; }

        /* ──────────────── MODAL MULTI-STEP ──────────────── */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(13,24,37,0.75);
            backdrop-filter: blur(5px);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .modal-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-card {
            background: #fff;
            border-radius: 1.5rem;
            box-shadow: 0 24px 64px rgba(0,0,0,0.28);
            width: 100%;
            max-width: 460px;
            overflow: hidden;
            transform: translateY(28px) scale(0.97);
            transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
        }

        .modal-overlay.open .modal-card {
            transform: translateY(0) scale(1);
        }

        /* Header */
        .modal-header {
            background: var(--brand-navy);
            padding: 1.5rem 1.75rem 1.25rem;
            position: relative;
        }

        .modal-badge {
            display: inline-block;
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.2rem 0.75rem;
            border-radius: 999px;
            margin-bottom: 0.6rem;
        }

        .modal-title {
            font-size: 1.2rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        .modal-subtitle {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            margin-top: 0.3rem;
        }

        .modal-close {
            position: absolute;
            top: 1rem; right: 1rem;
            background: rgba(255,255,255,0.12);
            border: none;
            border-radius: 0.4rem;
            color: rgba(255,255,255,0.7);
            width: 2rem; height: 2rem;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            font-size: 1.1rem;
            line-height: 1;
        }

        .modal-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

        /* Indicador de progresso */
        .modal-steps {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 0 1.75rem 1.25rem;
            background: var(--brand-navy);
        }

        .modal-step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            flex: 1;
        }

        .modal-step-dot {
            width: 2rem; height: 2rem;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.2);
            background: transparent;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.72rem;
            font-weight: 800;
            color: rgba(255,255,255,0.35);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .modal-step-dot.active {
            border-color: var(--brand-yellow-bright);
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
        }

        .modal-step-dot.done {
            border-color: var(--brand-yellow-bright);
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
        }

        .modal-step-label {
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            transition: color 0.3s;
        }

        .modal-step-item.active .modal-step-label,
        .modal-step-item.done  .modal-step-label {
            color: rgba(255,255,255,0.75);
        }

        .modal-step-line {
            flex: 1;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-bottom: 1.1rem;
            transition: background 0.3s;
            position: relative;
            top: -0.55rem;
        }

        .modal-step-line.done { background: var(--brand-yellow-bright); }

        /* Body e steps */
        .modal-body {
            padding: 0;
            overflow: hidden;
        }

        .modal-steps-wrap {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
            will-change: transform;
        }

        .modal-step-panel {
            min-width: 100%;
            padding: 1.5rem 1.75rem 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .modal-step-heading {
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--brand-gray-text);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding-bottom: 0.6rem;
            border-bottom: 1.5px solid #F1F5F9;
        }

        /* Campos */
        .modal-field label {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--brand-navy);
            margin-bottom: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .modal-field input {
            width: 100%;
            border-radius: 0.7rem;
            border: 1.5px solid #E2E8F0;
            background: #FAFBFD;
            padding: 0.75rem 0.9rem;
            font-size: 0.9rem;
            color: var(--brand-navy);
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .modal-field input:focus {
            outline: none;
            border-color: var(--brand-yellow);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255,205,0,0.22);
        }

        .modal-field input::placeholder { color: #A0AABA; }

        .modal-field input.error {
            border-color: #E24B4A;
            box-shadow: 0 0 0 3px rgba(226,75,74,0.15);
        }

        .modal-field-error {
            font-size: 0.72rem;
            color: #E24B4A;
            font-weight: 600;
            margin-top: -0.4rem;
            display: none;
        }

        .modal-field-error.show { display: block; }

        /* Input com ícone de senha */
        .modal-field-pw {
            position: relative;
        }

        .modal-field-pw input { padding-right: 2.75rem; }

        .modal-pw-toggle {
            position: absolute;
            right: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #A0AABA;
            padding: 0;
            display: flex;
            transition: color 0.2s;
        }

        .modal-pw-toggle:hover { color: var(--brand-navy); }

        /* Botões de navegação */
        .modal-nav {
            display: flex;
            gap: 0.65rem;
            margin-top: 0.25rem;
        }

        .modal-btn-back {
            flex-shrink: 0;
            background: #F1F5F9;
            border: none;
            border-radius: 0.7rem;
            color: var(--brand-navy);
            font-family: inherit;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 0.85rem 1.1rem;
            cursor: pointer;
            transition: background 0.18s;
        }

        .modal-btn-back:hover { background: #E2E8F0; }

        .modal-btn-next {
            flex: 1;
            background: var(--brand-navy);
            border: none;
            border-radius: 0.7rem;
            color: #fff;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: background 0.18s, transform 0.18s;
        }

        .modal-btn-next:hover { background: #1e3250; transform: translateY(-1px); }

        .modal-btn-submit {
            flex: 1;
            background: var(--brand-yellow-bright);
            border: none;
            border-radius: 0.7rem;
            color: var(--brand-navy);
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 4px 16px rgba(255,205,0,0.35);
            transition: transform 0.18s, box-shadow 0.18s;
        }

        .modal-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,205,0,0.45);
        }

        .modal-note {
            text-align: center;
            font-size: 0.7rem;
            color: var(--brand-gray-text);
        }

        @media (max-width: 768px) {
            .modal-card { border-radius: 1.25rem; }
            .modal-step-panel { padding: 1.25rem; }
        }

        /* ──────────────── PLACEHOLDER SECTIONS ──────────────── */
        .section-placeholder {
            padding: 5rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            border-top: 1px dashed #DDE5EF;
        }

        .section-placeholder-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(44,67,100,0.05);
            border: 1.5px dashed rgba(44,67,100,0.2);
            color: var(--brand-gray-text);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.5rem 1.25rem;
            border-radius: 999px;
        }

        /* ──────────────── FEATURES WRAP ──────────────── */
        .features-wrap {
            background: var(--brand-navy);
            position: relative;
            z-index: 1;
        }

        .feat-section {
            border-bottom: 1px solid rgba(255,255,255,0.07);
            position: relative;
            overflow: hidden;
        }

        .feat-section::before {
            content: "";
            position: absolute;
            top: -100px; left: -100px;
            width: 480px; height: 480px;
            background: radial-gradient(circle, rgba(255,205,0,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .feat-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* Coluna esquerda */
        .feat-label-col {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .feat-number {
            font-size: 2.75rem;
            font-weight: 900;
            letter-spacing: 0.05em;
            color: var(--brand-yellow);
            text-transform: uppercase;
            line-height: 1;
        }

        .feat-title {
            font-size: clamp(1.75rem, 3vw, 2.75rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            max-width: 320px;
        }

        .feat-title-highlight {
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            padding: 0.05em 0.35em;
            border-radius: 0.25rem;
        }

        .feat-rule {
            width: 56px;
            height: 3px;
            background: var(--brand-yellow-bright);
            border-radius: 999px;
            margin: 0.4rem 0;
        }

        .feat-subtitle {
            font-size: 1rem;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
            margin-top: 0.35rem;
            line-height: 1.5;
        }

        /* Card taxa */
        .taxa-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1.5rem;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .taxa-compare {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .taxa-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .taxa-badge-label {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            width: fit-content;
        }

        .taxa-badge-yellow {
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
        }

        .taxa-value-wrap {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .taxa-value {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .taxa-value-old {
            color: rgba(255,255,255,0.3);
            text-decoration: line-through;
            text-decoration-color: rgba(255,255,255,0.2);
        }

        .taxa-value-new {
            color: var(--brand-yellow-bright);
        }

        .taxa-bar-track {
            height: 6px;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            overflow: hidden;
        }

        .taxa-bar {
            height: 100%;
            border-radius: 999px;
            transition: width 1s ease;
        }

        .taxa-bar-old {
            width: 100%;
            background: rgba(255,255,255,0.2);
        }

        .taxa-bar-new {
            width: 80%;
            background: var(--brand-yellow-bright);
        }

        .taxa-desc {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            font-weight: 500;
        }

        .taxa-arrow {
            flex-shrink: 0;
            color: rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -1rem;
        }

        .taxa-saving {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,241,18,0.08);
            border: 1px solid rgba(255,241,18,0.2);
            border-radius: 0.75rem;
            padding: 0.85rem 1.1rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
        }

        .taxa-saving svg {
            color: var(--brand-yellow-bright);
            flex-shrink: 0;
        }

        .taxa-saving strong {
            color: var(--brand-yellow-bright);
        }

        /* Responsivo */

        /* ──────────────── SEÇÃO FRETES ──────────────── */
        .fretes-section {
            background: #fff;
            border-top: 1px solid #E8EFF7;
            position: relative;
            overflow: hidden;
        }

        .fretes-section::before {
            content: "";
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(255,205,0,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .fretes-section::after {
            content: "";
            position: absolute;
            top: -80px;
            left: -80px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(44,67,100,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .fretes-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .fretes-content { display: flex; flex-direction: column; gap: 1rem; }

        .fretes-card {
            background: #F8FAFC;
            border: 1px solid #E8EFF7;
            border-radius: 1.5rem;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .fretes-compare {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .fretes-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.85rem;
            text-align: center;
        }

        .fretes-badge {
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
        }

        .fretes-badge-starter {
            background: #E8EFF7;
            color: #64748B;
        }

        .fretes-badge-clube {
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
        }

        .fretes-icon-wrap {
            width: 5rem; height: 5rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fretes-icon-old {
            background: #F1F5F9;
            color: #94A3B8;
        }

        .fretes-icon-new {
            background: rgba(44,67,100,0.08);
            color: var(--brand-navy);
            box-shadow: 0 4px 16px rgba(44,67,100,0.15);
        }

        .fretes-label-val {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--brand-navy);
        }

        .fretes-col-old .fretes-label-val { color: #94A3B8; }

        .fretes-label-desc {
            font-size: 0.78rem;
            color: var(--brand-gray-text);
            line-height: 1.5;
        }

        .fretes-arrow {
            flex-shrink: 0;
            color: var(--brand-yellow);
            opacity: 0.8;
        }

        .fretes-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            padding-top: 1.25rem;
            border-top: 1px solid #E8EFF7;
        }

        .fretes-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #fff;
            border: 1px solid #DDE5EF;
            border-radius: 999px;
            padding: 0.35rem 0.85rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--brand-navy);
        }

        .fretes-pill svg { color: var(--brand-success); }


        /* ──────────────── SEÇÃO ÁREA DE MEMBROS ──────────────── */
        .membros-section {
            background: var(--brand-navy);
            border-top: 1px solid rgba(255,255,255,0.06);
            position: relative;
            overflow: hidden;
        }

        .membros-section::before {
            content: "";
            position: absolute;
            top: -100px; left: -100px;
            width: 480px; height: 480px;
            background: radial-gradient(circle, rgba(255,205,0,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .membros-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .membros-content {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .membros-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1.5rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .membros-item {
            display: flex;
            align-items: flex-start;
            gap: 1.1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .membros-item:first-child { padding-top: 0; }
        .membros-item:last-child { padding-bottom: 0; border-bottom: none; }

        .membros-icon {
            flex-shrink: 0;
            width: 2.6rem; height: 2.6rem;
            border-radius: 0.75rem;
            background: rgba(255,241,18,0.1);
            border: 1px solid rgba(255,241,18,0.2);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand-yellow-bright);
        }

        .membros-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .membros-text strong {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }

        .membros-text span {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.55;
        }


        /* ──────────────── FOOTER ──────────────── */
        

        

        

        

        

        

        

        

        

        
        /* ──────────────── SEÇÃO SUPORTE ──────────────── */
        .suporte-section {
            background: #fff;
            border-top: 1px solid #E8EFF7;
            position: relative;
            overflow: hidden;
        }

        .suporte-section::before {
            content: "";
            position: absolute;
            top: -80px; right: -80px;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(255,205,0,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .suporte-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .suporte-content {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .suporte-hero-card {
            background: var(--brand-navy);
            border-radius: 1.25rem;
            padding: 1.75rem;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .suporte-quote-icon {
            flex-shrink: 0;
            width: 2.6rem; height: 2.6rem;
            border-radius: 0.75rem;
            background: var(--brand-yellow-bright);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand-navy);
        }

        .suporte-quote {
            font-size: 0.92rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            line-height: 1.65;
            font-style: italic;
        }

        .suporte-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .suporte-item {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            background: #F8FAFC;
            border: 1px solid #E8EFF7;
            border-radius: 1rem;
            padding: 1.1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .suporte-item:hover {
            border-color: var(--brand-yellow);
            box-shadow: 0 4px 16px rgba(255,205,0,0.12);
        }

        .suporte-icon {
            flex-shrink: 0;
            width: 2.4rem; height: 2.4rem;
            border-radius: 0.65rem;
            background: rgba(44,67,100,0.07);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand-navy);
        }

        .suporte-item-text {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .suporte-item-text strong {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--brand-navy);
        }

        .suporte-item-text span {
            font-size: 0.76rem;
            color: var(--brand-gray-text);
            line-height: 1.5;
        }

        /* ──────────────── SEÇÃO LEILÃO DE FRETES ──────────────── */
        .leilao-section {
            background: var(--brand-navy);
            border-top: 1px solid rgba(255,255,255,0.06);
            position: relative;
            overflow: hidden;
        }

        .leilao-section::before {
            content: "";
            position: absolute;
            bottom: -80px; right: -80px;
            width: 440px; height: 440px;
            background: radial-gradient(circle, rgba(255,205,0,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .leilao-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .leilao-content {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .leilao-flow {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 1.5rem;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .leilao-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.1rem 0;
        }

        .leilao-step-destaque {
            background: rgba(255,241,18,0.05);
            border: 1px solid rgba(255,241,18,0.15);
            border-radius: 1rem;
            padding: 1.1rem;
            margin-top: 0.25rem;
        }

        .leilao-connector {
            display: flex;
            justify-content: center;
            color: rgba(255,255,255,0.2);
            padding: 0.1rem 0;
            margin-left: 1.15rem;
        }

        .leilao-step-num {
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.3);
            padding-top: 0.15rem;
            min-width: 1.5rem;
        }

        .leilao-step-num-yellow { color: var(--brand-yellow-bright); }

        .leilao-step-icon {
            flex-shrink: 0;
            width: 2.8rem; height: 2.8rem;
            border-radius: 0.75rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.6);
        }

        .leilao-step-icon-yellow {
            background: var(--brand-yellow-bright);
            border-color: var(--brand-yellow-bright);
            color: var(--brand-navy);
        }

        .leilao-step-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .leilao-step-text strong {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }

        .leilao-step-text span {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.55;
        }

        .leilao-note {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,241,18,0.07);
            border: 1px solid rgba(255,241,18,0.18);
            border-radius: 0.75rem;
            padding: 0.85rem 1.1rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: rgba(255,255,255,0.75);
        }

        .leilao-note svg { color: var(--brand-yellow-bright); flex-shrink: 0; }

        /* ──────────────── SEÇÃO INTEGRAÇÕES ──────────────── */
        .integ-section {
            background: #fff;
            border-top: 1px solid #E8EFF7;
            position: relative;
            overflow: hidden;
        }

        .integ-section::before {
            content: "";
            position: absolute;
            bottom: -80px; left: -80px;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(255,205,0,0.14) 0%, transparent 70%);
            pointer-events: none;
        }

        .integ-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .integ-cards {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        @media (min-width: 1024px) {
            .integ-cards { flex-direction: row; align-items: flex-start; gap: 1.25rem; }
        }

        /* Reutiliza .integrations-card, .logo-grid, .logo-item, .logo-img-wrapper, .logo-img, .logo-badge, .integrations-card-title */
        .integrations-card {
            background: #fff;
            border: 1px solid #E8EFF7;
            border-radius: 1.25rem;
            padding: 1.75rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            text-align: center;
        }

        .integrations-card-title {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--brand-navy);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .integrations-card-title::before,
        .integrations-card-title::after {
            content: "";
            flex: 1;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, rgba(44,67,100,0.15));
        }

        .integrations-card-title::after {
            background: linear-gradient(90deg, rgba(44,67,100,0.15), transparent);
        }

        .card-integrations { flex: 1.5; }
        .card-partners     { flex: 1; }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .card-integrations .logo-grid { grid-template-columns: repeat(3, 1fr); }

        .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 0.5rem;
            border-radius: 0.75rem;
            border: 1px solid #F1F5F9;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .logo-item:hover {
            border-color: rgba(44,67,100,0.2);
            box-shadow: 0 2px 12px rgba(44,67,100,0.08);
        }

        .logo-img-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 3rem;
            width: 100%;
        }

        .logo-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .logo-badge {
            font-size: 0.58rem;
            font-weight: 800;
            color: var(--brand-navy);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: rgba(255,205,0,0.2);
            border: 1px solid rgba(255,205,0,0.4);
            padding: 0.1rem 0.5rem;
            border-radius: 999px;
            white-space: nowrap;
        }

        /* ──────────────── CHAMADA CLUBE+ ──────────────── */
        .upgrade-section {
            background: #111318;
            border-top: 4px solid var(--brand-yellow-bright);
            position: relative;
            overflow: hidden;
        }

        .upgrade-section::before {
            content: "";
            position: absolute;
            top: -120px; left: 50%;
            transform: translateX(-50%);
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(255,241,18,0.06) 0%, transparent 65%);
            pointer-events: none;
        }

        .upgrade-inner {
            max-width: 720px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .upgrade-badge {
            display: inline-block;
            background: rgba(255,241,18,0.12);
            border: 1px solid rgba(255,241,18,0.25);
            color: var(--brand-yellow-bright);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.3rem 1rem;
            border-radius: 999px;
        }

        .upgrade-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2em;
            line-height: 1.05;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .upgrade-pretitle {
            font-size: clamp(0.85rem, 2vw, 1.1rem);
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.08em;
        }

        .upgrade-title-main {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.3em;
            flex-wrap: wrap;
            justify-content: center;
        }

        .upgrade-title-highlight {
            background: var(--brand-yellow-bright);
            color: #111318;
            padding: 0.05em 0.3em;
            border-radius: 0.4rem;
        }

        .upgrade-rule {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            width: 100%;
            max-width: 380px;
        }

        .upgrade-rule-line {
            flex: 1; height: 2px;
            background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,241,18,0.2));
        }

        .upgrade-rule-line.rev {
            background: linear-gradient(90deg, rgba(255,241,18,0.2), rgba(255,255,255,0.02));
        }

        .upgrade-rule-symbol {
            width: 32px;
            height: 32px;
            display: block;
            flex-shrink: 0;
        }

        .upgrade-desc {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            max-width: 560px;
        }

        .upgrade-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            width: 100%;
            max-width: 640px;
        }

        .upgrade-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            background: #1a1d24;
            border: 1px solid #2a2d35;
            border-radius: 1rem;
            padding: 1.1rem 0.75rem;
            text-align: center;
            transition: background 0.2s, border-color 0.2s;
        }

        .upgrade-card:hover {
            background: #1f2330;
            border-color: rgba(255,241,18,0.3);
        }

        .upgrade-card-icon {
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 0.65rem;
            background: rgba(255,241,18,0.1);
            border: 1px solid rgba(255,241,18,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-yellow-bright);
            flex-shrink: 0;
        }

        .upgrade-card-label {
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            line-height: 1.3;
        }

        .upgrade-cta-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
            margin-top: 0.5rem;
        }

        .upgrade-price {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.1rem;
        }

        .upgrade-price-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .upgrade-price-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--brand-yellow-bright);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .upgrade-price-period {
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
        }

        .upgrade-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--brand-yellow-bright);
            color: #111318;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 1rem 2.5rem;
            border-radius: 0.75rem;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(255,241,18,0.2);
            transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
        }

        .upgrade-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255,241,18,0.35);
            background: #ffe800;
        }

        /* ══════════════ RESPONSIVE ══════════════ */
        @media (max-width: 768px) {

            /* HERO */
            .hero { padding: 3rem 0 3.5rem; }
            .hero-h1 { font-size: clamp(1.75rem, 8vw, 2.6rem); }
            .hero-subline { font-size: clamp(0.95rem, 5vw, 1.4rem); }
            .hero-subline .sl-row { flex-wrap: wrap; justify-content: center; }
            .btn-hero-primary {
                font-size: 0.85rem;
                padding: 0.85rem 1.5rem;
                width: 100%;
                justify-content: center;
            }
            .proof-pill { font-size: 0.72rem; }
            .hero-proof-pills { gap: 0.4rem; }

            /* MODAL */
            .modal-card { border-radius: 1rem; }
            .modal-body { padding: 1.25rem; }

            /* FEAT LABEL COL (todos) */
            .feat-label-col {
                align-items: center;
                text-align: center;
            }
            .feat-title {
                font-size: clamp(1.4rem, 6vw, 2rem);
                max-width: 100%;
            }
            .feat-number { font-size: 2.25rem; }
            .feat-subtitle { font-size: 0.92rem; }
            .feat-rule { margin: 0.4rem auto; }

            /* TAXA DE RECARGA */
            .feat-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.25rem;
            }
            .taxa-card { padding: 1.25rem; }
            .taxa-compare {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            .taxa-arrow { transform: rotate(90deg); }
            .taxa-item { width: 100%; align-items: center; text-align: center; }
            .taxa-value { font-size: 3rem; }
            .taxa-bar-track { max-width: 180px; margin: 0 auto; }

            /* TABELAS EXCLUSIVAS */
            .fretes-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.25rem;
            }
            .fretes-card { padding: 1.25rem; }
            .fretes-compare {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            .fretes-arrow { transform: rotate(90deg); }
            .fretes-col { width: 100%; }

            /* ÁREA DE MEMBROS */
            .membros-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.25rem;
            }
            .membros-card { padding: 1.25rem; }

            /* SUPORTE HUMANO */
            .suporte-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.25rem;
            }
            .suporte-grid { grid-template-columns: 1fr; }
            .suporte-hero-card { flex-direction: column; gap: 0.75rem; }

            /* LEILÃO DE FRETES */
            .leilao-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.25rem;
            }
            .leilao-flow { padding: 1.25rem; }

            /* INTEGRAÇÕES */
            .integ-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.25rem;
            }
            .card-integrations .logo-grid { grid-template-columns: repeat(2, 1fr); }

            /* CHAMADA CLUBE+ */
            .upgrade-inner { padding: 3.5rem 1.25rem; gap: 1rem; }
            .upgrade-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
            .upgrade-btn { width: 100%; justify-content: center; }
            .upgrade-grid { grid-template-columns: repeat(2, 1fr); }

            /* FOOTER */
            .footer-mission-card { padding: 0.85rem 1rem; }
            .footer-social { flex-wrap: wrap; justify-content: center; }
        }

        @media (max-width: 420px) {
            .hero-h1 { font-size: clamp(1.5rem, 9vw, 2rem); }
            .feat-title { font-size: clamp(1.25rem, 7vw, 1.65rem); }
            .feat-number { font-size: 2rem; }
            .taxa-value { font-size: 2.4rem; }
            .btn-hero-primary { font-size: 0.8rem; letter-spacing: 0.02em; }
            .upgrade-grid { gap: 0.5rem; }
            .upgrade-card { padding: 0.85rem 0.5rem; }
        }


        /* ── Canvas exclusivo Clube+ ── */
        .upgrade-section {
            position: relative;
        }
        #upgrade-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.9;
        }
        .upgrade-inner {
            position: relative;
            z-index: 1;
        }

        /* ──────────────── SEÇÃO CTA FINAL CLUBE DE ENVIOS ──────────────── */
        .cta-final-section {
            background: var(--brand-navy);
            border-top: 1px solid rgba(255,255,255,0.06);
            position: relative;
            overflow: hidden;
        }

        .cta-final-section::before {
            content: "";
            position: absolute;
            top: -100px; right: -100px;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(255,205,0,0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-final-inner {
            max-width: 780px;
            margin: 0 auto;
            padding: 5rem 1.5rem 5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-final-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,241,18,0.1);
            border: 1px solid rgba(255,241,18,0.22);
            color: var(--brand-yellow-bright);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.35rem 1rem;
            border-radius: 999px;
        }

        .cta-final-eyebrow-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--brand-yellow-bright);
            flex-shrink: 0;
        }

        .cta-final-title {
            font-size: clamp(1.9rem, 4.5vw, 3.2rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.08;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .cta-final-title .highlight {
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            padding: 0.05em 0.35em;
            border-radius: 0.4rem;
        }

        .cta-final-desc {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            max-width: 560px;
        }

        /* Bullets de reforço */
        .cta-final-bullets {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            justify-content: center;
            max-width: 620px;
        }

        .cta-final-bullet {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 999px;
            padding: 0.45rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
        }

        .cta-final-bullet-icon {
            flex-shrink: 0;
            width: 1.5rem; height: 1.5rem;
            border-radius: 50%;
            background: rgba(255,241,18,0.15);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand-yellow-bright);
        }

        /* Preço + CTA */
        .cta-final-cta-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.85rem;
        }

        .cta-final-price {
            display: flex;
            align-items: baseline;
            gap: 0.2rem;
        }

        .cta-final-price-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-right: 0.4rem;
        }

        .cta-final-price-value {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--brand-yellow-bright);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .cta-final-price-period {
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
        }

        .cta-final-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            font-family: inherit;
            font-size: 1.05rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 1.05rem 2.75rem;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(255,205,0,0.3);
            transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
        }

        .cta-final-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255,205,0,0.45);
            background: #ffe800;
        }

        .cta-final-note {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.35);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .cta-final-inner { padding: 3.5rem 1.25rem 3.5rem; gap: 1.1rem; }
            .cta-final-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
            .cta-final-btn { width: 100%; justify-content: center; }
            .cta-final-hook { flex-direction: column; text-align: center; padding: 1.25rem; gap: 0.85rem; }
            .cta-final-hook-btn { width: 100%; justify-content: center; }
        }
        /* ──────────────── FAQ ──────────────── */
        .faq-section {
            position: relative;
            padding: 5rem 0 5.5rem;
            background: #fff;
            z-index: 1;
        }

        .faq-inner {
            max-width: 780px;
            margin: 0 auto;
            padding: 0 1.5rem;
            text-align: center;
        }

        .faq-title {
            font-size: clamp(1.75rem, 3vw, 2.75rem);
            font-weight: 900;
            color: var(--brand-navy);
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .faq-title-highlight {
            background: var(--brand-yellow-bright);
            color: var(--brand-navy);
            padding: 0.05em 0.35em;
            border-radius: 0.25rem;
            display: inline-block;
        }

        .faq-title-main {
            display: inline-block;
        }

        .faq-rule {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 1.1rem auto 2.5rem;
            width: 100%;
            max-width: 420px;
            justify-content: center;
        }

        .faq-rule-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, rgba(44,67,100,0.03) 0%, rgba(44,67,100,0.18) 100%);
        }

        .faq-rule-line.rev {
            background: linear-gradient(90deg, rgba(44,67,100,0.18) 0%, rgba(44,67,100,0.03) 100%);
        }

        .faq-rule-diamonds {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .faq-rule-diamonds span {
            display: block;
            transform: rotate(45deg);
        }

        .faq-rule-diamonds span:nth-child(1),
        .faq-rule-diamonds span:nth-child(3) {
            width: 7px; height: 7px;
            background: var(--brand-navy);
            opacity: 0.35;
        }

        .faq-rule-diamonds span:nth-child(2) {
            width: 11px; height: 11px;
            background: var(--brand-navy);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            text-align: left;
        }

        .faq-item {
            background: #fff;
            border: 1.5px solid #E8EFF7;
            border-radius: 0.9rem;
            overflow: hidden;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .faq-item.open {
            border-color: rgba(44,67,100,0.3);
            box-shadow: var(--shadow-card);
        }

        .faq-question-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.25rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
        }

        .faq-question-text {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--brand-navy);
            line-height: 1.4;
        }

        .faq-chevron {
            flex-shrink: 0;
            width: 1.1rem;
            height: 1.1rem;
            color: var(--brand-gray-text);
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
            color: var(--brand-navy);
        }

        .faq-answer {
            display: none;
            padding: 0.85rem 1.25rem 1.1rem;
            font-size: 0.85rem;
            color: var(--brand-gray-text);
            line-height: 1.7;
            border-top: 1px solid #F1F5F9;
        }

        .faq-item.open .faq-answer { display: block; }

        .faq-anim {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .faq-anim.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 640px) {
            .faq-title {
                font-size: clamp(1.45rem, 6.3vw, 1.9rem);
                line-height: 1.06;
            }

            .faq-title-main {
                white-space: nowrap;
            }

            .faq-rule {
                margin-top: 1rem;
            }
        }
