/* ============================================ */
/* TRADER AI - LANDING PAGE PREMIUM             */
/* ============================================ */

:root {
    --bg: #060b14;
    --bg-card: #0a1020;
    --border: #1a2540;
    --cyan: #06b6d4;
    --blue: #3b82f6;
    --green: #10b981;
    --red: #ef4444;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --text-muted: #64748b;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================ */
/* NAVBAR                                       */
/* ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 11, 20, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.logo svg {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
}

.nav-cta:hover {
    opacity: 0.9;
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */

.hero {
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 13px;
    color: var(--green);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 36px;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.hero-metric {
    text-align: center;
    flex: 1;
}

.hero-metric-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--cyan);
    display: block;
}

.hero-metric-value .unit {
    font-size: 20px;
}

.hero-metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.hero-price {
    font-size: 18px;
    color: var(--text-dim);
    font-weight: 600;
}

.hero-guarantee {
    font-size: 13px;
    color: var(--green);
}

/* Hero Preview */
.hero-preview {
    display: flex;
    justify-content: center;
}

.preview-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.preview-dots span:first-child { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:last-child { background: #10b981; }

.preview-title {
    font-size: 12px;
    color: var(--text-muted);
}

.preview-body {
    padding: 20px 18px;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: var(--text-dim);
}

.preview-value { font-weight: 700; color: var(--text); }
.preview-value.up { color: var(--green); }

.preview-badge {
    padding: 2px 10px;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 4px;
    font-size: 11px;
    color: var(--cyan);
    text-transform: uppercase;
}

.preview-chart {
    margin-top: 16px;
    padding: 12px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}

.chart-bars span {
    flex: 1;
    background: linear-gradient(to top, var(--cyan), var(--blue));
    border-radius: 3px 3px 0 0;
    opacity: 0.7;
    min-height: 20px;
}

/* ============================================ */
/* TRUST BAR                                    */
/* ============================================ */

.trust-bar {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
}

/* ============================================ */
/* RESULTS                                      */
/* ============================================ */

.results {
    padding: 80px 0;
}

.results h2, .features h2, .pricing h2, .faq h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.results-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.results-table th {
    text-align: right;
    padding: 14px 16px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.results-table th:first-child {
    text-align: left;
}

.results-table td {
    text-align: right;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-weight: 500;
}

.results-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.results-table .highlight-row {
    background: rgba(6, 182, 212, 0.05);
}

.price-small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.up { color: var(--green); }
.down { color: var(--red); }
.neutral { color: #f59e0b; }

.results-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 16px;
}

/* ============================================ */
/* FEATURES                                     */
/* ============================================ */

.features {
    padding: 80px 0;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* ============================================ */
/* PRICING                                      */
/* ============================================ */

.pricing {
    padding: 80px 0;
}

.pricing-card {
    max-width: 480px;
    margin: 48px auto 0;
    background: var(--bg-card);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.pricing-card h3 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 20px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 8px;
}

.price-symbol {
    font-size: 24px;
    color: var(--text-dim);
    vertical-align: super;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
}

.price-month {
    font-size: 18px;
    color: var(--text-dim);
}

.pricing-desc {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.pricing-lifetime {
    text-align: center;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li::before {
    content: "✓";
    color: var(--green);
    margin-right: 10px;
    font-weight: 700;
}

.payment-section h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.pix-box {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.pix-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.pix-label {
    color: var(--text-muted);
}

.pix-value {
    color: var(--text);
    font-weight: 600;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

/* ============================================ */
/* FAQ                                          */
/* ============================================ */

.faq {
    padding: 80px 0;

}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.faq-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-copy {
    margin-top: 8px;
}

/* Remove scroll horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
}

.results-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.results-table {
    min-width: 600px;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-metric-divider {
        display: none;
    }
    
    .hero-preview {
        order: -1;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links a:not(.nav-cta) {
        display: none;
    }
}
/* Botão de Teste Grátis */

.btn-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.trial-note {
    text-align: center;
    color: #10b981;
    font-size: 13px;
    margin-bottom: 24px;
}

.payment-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
}

.payment-divider::before,
.payment-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* Corrige o fundo da seção Como Funciona */
.how-section {
    padding: 5rem 0;
    background: #060b14;  /* ⭐ Mesmo fundo do body */
}

.how-step {
    background: #0a1020;  /* ⭐ Mesmo dos cards */
    border: 1px solid #1a2540;
}

/* Caixa de transparência */
.how-transparency {
    background: #0a1020;
    border: 1px solid #1a2540;
}

