/* --- 0. BACKGROUND CANVAS & RESET --- */
:root {
    --bg-main: #141414;
    --bg-surface: rgba(30, 30, 30, 0.1);
    --border-color: rgba(242, 240, 235, 0.1); 
    --text-main: #F2F0EB;
    --text-muted: rgba(242, 240, 235, 0.6);   
    --accent: #D99559;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#hero-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: #141414 !important; /* PRETO PURO */

}


/* =========================================
   SPOTLIGHT FIXO (Fundo Preto Central)
   ========================================= */
#static-spotlight {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
        circle, 
        rgba(20, 20, 20, 0.75) 0%,
        rgba(20, 20, 20, 0.75) 40%,
        rgba(20, 20, 20, 0.0) 70%
    );
    z-index: 0; 
    pointer-events: none;
}

.hero-section, .section, .container, .footer {
    position: relative;
    z-index: 2 !important; 
}

/* --- 1. NAV SYSTEM (DESKTOP) --- */
.nav-container {
    position: fixed; top: 24px; left: 0; width: 100%;
    display: flex; justify-content: center; z-index: 1000; pointer-events: none;
}

.glass-nav {
    pointer-events: auto; display: flex; gap: 6px; padding: 12px;
    background: rgba(30, 30, 30, 0.5); 
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link {
    text-decoration: none; color: var(--text-muted);
    font-family: var(--font-mono); font-size: 0.8rem;
    padding: 10px 22px; border-radius: 40px;
    transition: all 0.3s ease; white-space: nowrap;
}

.nav-link:hover { color: var(--text-main); background: rgba(242, 240, 235, 0.05); }

.nav-link.active {
    background: rgba(217, 149, 89, 0.2); 
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(217, 149, 89, 0.3);
}

.nav-btn-primary {
    background: var(--accent) !important; color: var(--bg-main) !important;
    font-weight: 700; margin-left: 4px;
    box-shadow: 0 4px 15px rgba(217, 149, 89, 0.3);
}

/* --- MOBILE HEADER & TOGGLE --- */
.mobile-header { display: none; }

/* --- 2. GERAL & TIPOGRAFIA --- */
h1, h2, h3, h4 { color: var(--text-main); font-weight: 700; line-height: 1.2; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.small-container { max-width: 800px; }
.section { padding: 120px 0; background: transparent; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mono-label { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.text-glow { color: var(--accent); text-shadow: 0 0 20px rgba(217, 149, 89, 0.4); }

/* --- 3. ELEMENTOS INTERATIVOS --- */
.case-card, .step-card, .bento-box, .social-item, .contact-photo, .pricing-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.case-card.visible:hover, .step-card.visible:hover, .bento-box.visible:hover, .social-item:hover, .contact-photo:hover, .pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* --- 4. HERO SECTION --- */
.hero-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-container { position: relative; z-index: 1; }
.badge-tech { display: inline-flex; align-items: center; gap: 8px; background: rgba(242, 240, 235, 0.05); border: 1px solid var(--border-color); padding: 6px 16px; border-radius: 50px; font-family: var(--font-mono); font-size: 0.8rem; margin-bottom: 30px; }
.pulse-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }
.hero-section h1 { font-size: 4rem; letter-spacing: -2px; margin-bottom: 24px; }
.hero-sub { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }
.btn { display: inline-block; padding: 16px 36px; font-family: var(--font-sans); font-weight: 600; text-decoration: none; border-radius: 6px; transition: all 0.3s ease; }
.btn-primary { background-color: var(--accent); color: var(--bg-main); box-shadow: 0 4px 14px 0 rgba(217, 149, 89, 0.25); }
.btn-primary:hover { background-color: var(--text-main); color: var(--bg-main); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; margin-top: 30px; }

.section-title { font-size: 2.5rem; letter-spacing: -1px; margin-top: 10px; }

/* --- CASES SECTION (CORRIGIDA) --- */
.cases-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; /* Força 2 colunas no Desktop */
    gap: 30px; 
}

.case-card { 
    display: block; /* Garante que o link funcione como caixa */
    text-decoration: none; /* Remove sublinhado */
    background: var(--bg-surface); 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    overflow: hidden; 
    color: inherit;
}

.case-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.case-card:hover .case-image img { transform: scale(1.1); }
.case-overlay { position: absolute; inset: 0; background: rgba(20, 20, 20, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(4px); }
.case-card:hover .case-overlay { opacity: 1; }
.case-info { padding: 24px; }
.case-info h4 { margin-bottom: 8px; color: var(--text-main); }
.case-info p { color: var(--text-muted); font-size: 0.9rem; }

/* --- BENTO GRID & PROCESS --- */
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bento-box { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; position: relative; }
.bento-header { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; margin-bottom: 15px; color: var(--text-main); }
.icon-muted { stroke: var(--text-muted); transition: stroke 0.3s ease; }
.bento-box:hover .icon-muted { stroke: var(--accent); }
.icon-accent { stroke: var(--accent); fill: rgba(217, 149, 89, 0.1); }
.span-2 { grid-column: span 2; }
.highlight-box { background: linear-gradient(180deg, rgba(217, 149, 89, 0.05) 0%, rgba(20, 20, 20, 0) 100%); border-color: rgba(217, 149, 89, 0.4); }

.process-steps { display: flex; flex-direction: column; gap: 20px; }
.step-card { background: var(--bg-surface); border: 1px solid var(--border-color); padding: 30px; border-radius: 12px; position: relative; overflow: hidden; }
.step-number { position: absolute; top: 30px; right: 30px; font-size: 0.8rem; color: var(--text-muted); opacity: 0.5; transition: 0.3s ease; }
.step-card:hover .step-number { color: var(--accent); opacity: 1; }

/* --- PRICING, SOCIAL & FAQ --- */
.pricing-card { position: relative; max-width: 600px; margin: 0 auto; border-radius: 24px; background: linear-gradient(180deg, rgba(217, 149, 89, 0.6) 0%, var(--bg-main) 100%); padding: 1px; }
.pricing-card-inner { background: var(--bg-surface); border-radius: 23px; padding: 60px 50px; text-align: center; }
.mono-price { font-family: var(--font-mono); font-size: 4rem; font-weight: 700; display: block; margin-top: 20px; color: var(--text-main); }
.terminal-list { list-style: none; text-align: left; margin-top: 40px; }
.terminal-list li { margin-bottom: 15px; font-size: 1.05rem; color: var(--text-muted); display: flex; gap: 10px; }
.terminal-list li span { color: var(--accent); font-family: var(--font-mono); font-weight: bold; }

.contact-photo-wrapper { display: flex; justify-content: center; align-items: center; margin-bottom: 40px; }
.contact-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.social-grid { display: flex; justify-content: center; gap: 25px; }
.social-item { width: 70px; height: 70px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; border: 1px solid var(--border-color); }
.social-item svg { stroke: var(--text-muted); transition: 0.3s ease; }
.social-item:hover svg { stroke: var(--text-main); transform: scale(1.1); }
.social-item:hover { background: rgba(217, 149, 89, 0.05); }

.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background-color: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 8px; padding: 0 24px; transition: 0.3s ease; }
.faq-item.faq-open { border-color: var(--accent); transform: scale(1.02); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: transparent; border: none; color: var(--text-main); font-size: 1.15rem; font-weight: 600; cursor: pointer; text-align: left; font-family: var(--font-sans); }
.faq-title { display: flex; gap: 15px; align-items: flex-start; }
.chevron { stroke: var(--accent); min-width: 20px; transition: transform 0.4s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
.faq-item.faq-open .faq-answer { max-height: 500px; }
.faq-item.faq-open .chevron { transform: rotate(180deg); }

.footer { padding: 60px 0; border-top: 1px solid var(--border-color); margin-top: 60px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVIDADE E MENU MOBILE "ESPREMIDO" NO CANTO
   ========================================================= */
@media (max-width: 768px) {
    /* ... (Menu Styles Mantidos) ... */
    .nav-container { top: 20px; right: 20px; left: auto; width: auto; justify-content: flex-end; padding: 0; }
    .glass-nav { width: auto; min-width: 0; border-radius: 50px; padding: 6px; flex-direction: column; align-items: flex-end; overflow: hidden; }
    .mobile-header { display: flex; align-items: center; justify-content: center; }
    .mobile-toggle { background: transparent; border: none; cursor: pointer; width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; z-index: 20; }
    .bar { width: 22px; height: 2px; background-color: var(--text-main); border-radius: 2px; transition: all 0.3s ease; }
    .nav-items { display: none; flex-direction: column; width: 100%; gap: 0; padding-top: 10px; }
    .glass-nav.menu-open { background: rgba(20, 20, 20, 0.95); border-radius: 24px; padding: 12px; width: 200px; }
    .glass-nav.menu-open .nav-items { display: flex; animation: slideDown 0.3s ease forwards; }
    .nav-link { width: 100%; text-align: right; padding: 12px 16px; border-radius: 8px; }
    .nav-btn-primary { margin: 10px 0 0 0; width: 100%; text-align: center; }
    .glass-nav.menu-open .bar.top { transform: translateY(7px) rotate(45deg); }
    .glass-nav.menu-open .bar.mid { opacity: 0; }
    .glass-nav.menu-open .bar.bot { transform: translateY(-7px) rotate(-45deg); }

    /* Ajustes Gerais Mobile */
    .hero-section h1 { font-size: 2.5rem; }
    
    /* Aqui garantimos que no celular fique 1 em cima do outro */
    .bento-grid, .cases-grid { grid-template-columns: 1fr; } 
    
    .span-2 { grid-column: span 1; }
    .pricing-card-inner { padding: 40px 24px; }
    .mono-price { font-size: 3rem; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- CASES SECTION (CORRIGIDA) --- */
.cases-grid { 
    display: grid; 
    /* Força exatas 2 colunas de tamanho igual no computador */
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}

.case-card { 
    display: flex; /* Garante estrutura correta */
    flex-direction: column;
    text-decoration: none; /* Remove sublinhado de link */
    background: var(--bg-surface); 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    overflow: hidden; 
    color: inherit;
    transition: all 0.4s ease;
}

.case-image { 
    position: relative; 
    aspect-ratio: 16 / 10; 
    overflow: hidden; 
    width: 100%;
}

.case-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

/* Efeitos de Hover */
.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.case-card:hover .case-image img { 
    transform: scale(1.05); 
}

.case-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(20, 20, 20, 0.6); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    backdrop-filter: blur(2px); 
}

.case-card:hover .case-overlay { 
    opacity: 1; 
}

.case-info { padding: 24px; }
.case-info h4 { margin-bottom: 8px; color: var(--text-main); font-size: 1.25rem; }
.case-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* Garante que no celular fique um embaixo do outro */
@media (max-width: 768px) {
    .cases-grid { 
        grid-template-columns: 1fr; 
    }
}

/* MANTENHA O INÍCIO DO SEU CSS EXISTENTE (ROOT, BODY, NAV, ETC) */
/* Adicione ou substitua o bloco abaixo no final do seu arquivo style.css */

/* =========================================
   FORMULÁRIO MULTI-ETAPA (CLEAN & MODERN)
   ========================================= */

.form-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Barra de Progresso */
.form-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 20%;
    background: var(--accent);
    transition: width 0.5s ease;
}

/* Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tipografia do Form */
.form-question {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
}

.info-box {
    background: rgba(217, 149, 89, 0.05);
    border-left: 2px solid var(--accent);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.text-sm { font-size: 0.85rem; line-height: 1.5; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* Inputs Clean */
.input-group { margin-bottom: 35px; text-align: left; }

.input-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(242, 240, 235, 0.2);
    color: var(--text-main);
    font-size: 1.25rem;
    font-family: var(--font-sans);
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-input:focus { border-bottom-color: var(--accent); }
.form-input::placeholder { color: rgba(255, 255, 255, 0.15); }
.form-textarea { font-size: 1.1rem; height: 80px; resize: none; line-height: 1.5; }

/* Checkbox Cards Clean */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }

.checkbox-card {
    background: transparent;
    border: 1px solid rgba(242, 240, 235, 0.2);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    user-select: none;
}

.checkbox-card input {
    accent-color: var(--accent); /* Cor do quadrado do checkbox */
    width: 16px; height: 16px;
}

.checkbox-card:hover { border-color: rgba(242, 240, 235, 0.5); color: var(--text-main); }
.checkbox-card:has(input:checked) { border-color: var(--accent); background: rgba(217, 149, 89, 0.05); color: var(--text-main); }

/* Agreement Section */
.checkbox-card.full-width { width: 100%; align-items: flex-start; padding: 20px; }
.agreement-text ul { list-style: none; margin-top: 10px; padding-left: 0; }
.agreement-text li { margin-bottom: 5px; opacity: 0.8; }

/* Navegação */
.form-nav { margin-top: 50px; display: flex; align-items: center; gap: 20px; }

.btn-text {
    background: none; border: none;
    color: var(--text-muted); font-family: var(--font-mono);
    cursor: pointer; font-size: 0.9rem;
    padding: 10px 20px; transition: color 0.3s;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-text:hover { color: var(--text-main); }

/* TELA DE SUCESSO (CLEAN) */
.success-screen { text-align: center; padding: 40px; max-width: 600px; margin: 0 auto; }

.icon-success-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    margin-bottom: 30px;
    color: var(--accent);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-check { width: 40px; height: 40px; }

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .form-question { font-size: 1.8rem; }
    .form-input { font-size: 1.1rem; }
    .checkbox-card { width: 100%; }
}

/* --- BENEFITS SECTION --- */
.benefits-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s ease, transform 0.4s ease;
}

.benefit-item:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(217, 149, 89, 0.08);
    border: 1px solid rgba(217, 149, 89, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg { stroke: var(--accent); }

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- 3-TIER PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-tier {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-tier:hover {
    border-color: rgba(242, 240, 235, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.pricing-tier--featured {
    background: linear-gradient(160deg, rgba(217, 149, 89, 0.07) 0%, rgba(20, 20, 20, 0) 60%);
    border-color: rgba(217, 149, 89, 0.45);
    box-shadow: 0 0 50px rgba(217, 149, 89, 0.07);
}

.pricing-tier--featured:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 55px rgba(217, 149, 89, 0.15);
}

.tier-badge {
    display: inline-block;
    background: rgba(217, 149, 89, 0.12);
    border: 1px solid rgba(217, 149, 89, 0.35);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    width: fit-content;
}

.tier-header { margin-bottom: 28px; }

.tier-name {
    color: var(--text-muted) !important;
    margin-bottom: 10px;
    font-size: 0.78rem !important;
}

.tier-amount {
    display: block;
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 14px;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tier-features {
    flex: 1;
    margin-bottom: 28px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(242, 240, 235, 0.05);
    border-color: var(--text-muted);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* --- PRICING CTA SECTION --- */
.pricing-cta-section { padding-top: 0; }

@media (max-width: 768px) {
    .benefits-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    .tier-amount { font-size: 2.2rem; }
}

/* --- PLAN INDICATOR (contact.html) --- */
.plan-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: rgba(217, 149, 89, 0.06);
    border: 1px solid rgba(217, 149, 89, 0.3);
    border-radius: 12px;
    margin-bottom: 36px;
}

.plan-badge-name {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
}

/* --- CORREÇÃO DE VISIBILIDADE DO DROPDOWN --- */

/* 1. Garante que o input principal tenha a cor correta */
select.form-input {
    color: var(--text-main);
    background-color: transparent; 
}

/* 2. FORÇA o fundo escuro nas opções da lista */
select.form-input option {
    background-color: #141414; /* Cor preta do seu tema */
    color: #F2F0EB;          /* Cor clara do texto */
    padding: 15px;
}