:root {
    --bg: #0a0e14;
    --bg-card: #111920;
    --bg-card-hover: #172029;
    --verde: #00c853;
    --verde-flag: #009c3b;
    --verde-dim: rgba(0,200,83,0.1);
    --verde-glow: rgba(0,200,83,0.25);
    --amarelo: #ffd600;
    --amarelo-flag: #ffdf00;
    --amarelo-dim: rgba(255,214,0,0.1);
    --amarelo-glow: rgba(255,214,0,0.2);
    --azul: #2979ff;
    --azul-flag: #002776;
    --azul-dim: rgba(41,121,255,0.1);
    --laranja: #ff6d00;
    --coral: #ff5252;
    --text: #f0f4f8;
    --text-sub: #94a3b8;
    --border: #1e293b;
    --radius: 16px;
    --font: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-body); background: var(--bg); color: var(--text);
    line-height: 1.7; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .logo, .cta-btn, .htag, .nav a, .score-circle, .section-label {
    font-family: var(--font);
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Tropical gradient backgrounds ===== */
.bg-tropical {
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0,156,59,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 10%, rgba(255,214,0,0.08) 0%, transparent 50%),
        var(--bg);
}

/* ===== Header ===== */
.site-header {
    background: rgba(10,14,20,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky; top: 0; z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
    font-size: 22px; font-weight: 800; color: var(--text); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
}
.logo .flag { font-size: 18px; }
.logo span { color: var(--verde); }
.logo em { font-style: normal; color: var(--amarelo); font-size: 11px; font-weight: 700;
    background: var(--amarelo-dim); border: 1px solid rgba(255,214,0,0.2);
    padding: 2px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 1px;
}
.nav { display: flex; gap: 24px; }
.nav a {
    color: var(--text-sub); text-decoration: none; font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; transition: color 0.2s;
}
.nav a:hover { color: var(--verde); }

/* ===== Hero ===== */
.hero {
    padding: 72px 0 60px;
    background:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(0,156,59,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 90% 20%, rgba(255,214,0,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(41,121,255,0.08) 0%, transparent 50%),
        var(--bg);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -120px; right: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,83,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner { display: flex; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-left { flex: 1; }
.hero-right { flex-shrink: 0; text-align: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(0,200,83,0.12) 0%, rgba(0,200,83,0.05) 100%);
    border: 1px solid rgba(0,200,83,0.25);
    color: var(--verde); font-size: 12px; font-weight: 700;
    padding: 6px 16px; border-radius: 24px; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1.5px;
}
.hero-badge::before { content: '\2713'; font-size: 14px; }

.hero h1 {
    font-size: 52px; font-weight: 900; line-height: 1.08; margin-bottom: 18px;
    letter-spacing: -2px;
}
.hero h1 .green { color: var(--verde); }
.hero h1 .yellow {
    background: linear-gradient(135deg, var(--amarelo) 0%, #ffab00 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { color: var(--text-sub); font-size: 17px; line-height: 1.7; margin-bottom: 28px; max-width: 560px; }

.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.htag {
    font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 10px;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text-sub);
    letter-spacing: 0.3px;
}
.htag.green { border-color: rgba(0,200,83,0.3); color: var(--verde); background: var(--verde-dim); }
.htag.yellow { border-color: rgba(255,214,0,0.3); color: var(--amarelo); background: var(--amarelo-dim); }

.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--verde) 0%, #00a846 100%);
    color: #fff; font-size: 16px; font-weight: 700;
    padding: 16px 36px; border-radius: 14px; text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,200,83,0.3), 0 1px 3px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px; text-transform: uppercase;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,200,83,0.4); }
.cta-btn.yellow {
    background: linear-gradient(135deg, var(--amarelo) 0%, #ffab00 100%);
    color: #000;
    box-shadow: 0 4px 24px rgba(255,214,0,0.3);
}
.cta-btn.yellow:hover { box-shadow: 0 8px 32px rgba(255,214,0,0.4); }

/* ===== Score ===== */
.score-block { text-align: center; }
.score-circle {
    width: 160px; height: 160px; border-radius: 50%;
    background: conic-gradient(var(--verde) 0% 92%, var(--border) 92% 100%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; position: relative;
    box-shadow: 0 0 40px rgba(0,200,83,0.15);
}
.score-circle::after {
    content: ''; position: absolute; inset: 9px;
    border-radius: 50%; background: var(--bg-card);
}
.score-circle .num {
    position: relative; z-index: 1;
    font-size: 42px; font-weight: 900; color: var(--verde);
}
.score-circle .num small { font-size: 18px; color: var(--text-sub); font-weight: 600; }
.score-label {
    font-size: 11px; color: var(--text-sub); text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700;
}
.ratings { margin-top: 22px; min-width: 220px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rating-row .lbl { font-size: 12px; color: var(--text-sub); width: 84px; text-align: right; font-weight: 500; }
.rating-bar { flex: 1; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-bar .fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--verde) 0%, #4caf50 100%); }
.rating-row .val { font-size: 13px; font-weight: 700; color: var(--verde); width: 28px; }

/* ===== Sections ===== */
section { padding: 72px 0; }
section + section { border-top: 1px solid var(--border); }
.section-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
    color: var(--verde); font-weight: 700; margin-bottom: 10px;
}
.section-title {
    font-size: 34px; font-weight: 800; margin-bottom: 14px;
    letter-spacing: -1px; line-height: 1.15;
}
.section-title .highlight { color: var(--verde); }
.section-title .yellow { color: var(--amarelo); }
.section-desc { color: var(--text-sub); font-size: 16px; max-width: 640px; margin-bottom: 40px; }

/* ===== Feature cards ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.feat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: border-color 0.3s, transform 0.2s, background 0.3s;
}
.feat:hover { border-color: var(--verde-glow); transform: translateY(-2px); background: var(--bg-card-hover); }
.feat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.feat-icon.green { background: var(--verde-dim); border: 1px solid rgba(0,200,83,0.15); }
.feat-icon.yellow { background: var(--amarelo-dim); border: 1px solid rgba(255,214,0,0.15); }
.feat-icon.blue { background: var(--azul-dim); border: 1px solid rgba(41,121,255,0.15); }
.feat h3 { font-family: var(--font); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feat p { color: var(--text-sub); font-size: 14px; line-height: 1.65; }
.feat .val-green { color: var(--verde); font-weight: 700; }
.feat .val-yellow { color: var(--amarelo); font-weight: 700; }

/* ===== Screenshots ===== */
.scr-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 32px; }
.scr-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color 0.3s, transform 0.2s; cursor: pointer;
}
.scr-card:hover { border-color: var(--verde); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,200,83,0.1); }
.scr-card img { width: 100%; height: auto; display: block; }
.scr-card .cap {
    padding: 12px 16px; font-size: 12px; color: var(--text-sub);
    border-top: 1px solid var(--border); line-height: 1.5;
}
.scr-card .cap strong { color: var(--text); font-weight: 600; }

/* ===== Tables ===== */
.table-wrap {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; margin-top: 24px;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
th {
    font-family: var(--font); font-size: 11px; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-sub); font-weight: 700;
    background: rgba(0,0,0,0.2);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,200,83,0.03); }
td .val { color: var(--verde); font-weight: 700; }
td .gold { color: var(--amarelo); font-weight: 700; }

/* ===== Pros list ===== */
.pros { list-style: none; margin: 28px 0; }
.pros li {
    padding: 14px 18px 14px 52px; position: relative;
    border-bottom: 1px solid var(--border); font-size: 15px;
    transition: background 0.2s;
}
.pros li:hover { background: var(--verde-dim); }
.pros li::before {
    content: '\2713'; position: absolute; left: 18px; top: 15px;
    color: var(--verde); font-weight: 800; font-size: 16px;
    background: var(--verde-dim); width: 24px; height: 24px;
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 12px;
}
.pros li strong { color: var(--text); }
.pros li span { color: var(--text-sub); font-size: 13px; }

/* ===== Info box ===== */
.info-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 28px; margin-top: 24px;
}
.info-box.green { border-left: 4px solid var(--verde); background: linear-gradient(90deg, rgba(0,200,83,0.05) 0%, transparent 30%); }
.info-box.yellow { border-left: 4px solid var(--amarelo); background: linear-gradient(90deg, rgba(255,214,0,0.05) 0%, transparent 30%); }
.info-box h4 { font-family: var(--font); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.info-box p { color: var(--text-sub); font-size: 14px; line-height: 1.7; }

/* ===== Partner tree ===== */
.partner-tree {
    background: linear-gradient(135deg, rgba(0,200,83,0.06) 0%, rgba(255,214,0,0.04) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px 24px 32px; margin-top: 24px;
}
.ptree-levels { display: flex; flex-direction: column; align-items: center; gap: 0; }
/* Node */
.ptree-node {
    background: var(--bg-card); border: 2px solid var(--border);
    border-radius: 12px; padding: 12px 20px; text-align: center;
    position: relative; font-size: 14px; font-weight: 600;
    min-width: 140px; transition: border-color 0.3s;
}
.ptree-node.root {
    border-color: var(--amarelo); background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0.03) 100%);
    padding: 16px 28px;
}
.ptree-node.root .ptree-label { color: var(--amarelo); font-size: 16px; font-weight: 800; }
.ptree-node.root .ptree-meta { color: var(--verde); font-weight: 700; font-size: 13px; margin-top: 4px; }
.ptree-node .ptree-label { color: var(--text); font-family: var(--font); }
.ptree-node .ptree-meta { color: var(--text-sub); font-size: 12px; font-weight: 500; margin-top: 2px; }
/* Connector lines */
.ptree-connector {
    display: flex; justify-content: center; align-items: stretch;
    height: 32px; position: relative;
}
.ptree-connector .line-v {
    width: 2px; background: var(--border); height: 100%;
}
/* Row of nodes */
.ptree-row {
    display: flex; gap: 16px; justify-content: center; align-items: flex-start;
    position: relative;
}
/* Horizontal bridge between children */
.ptree-bridge {
    height: 32px; position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.ptree-bridge-inner {
    position: relative; display: flex; align-items: flex-end;
}
.ptree-bridge-inner .line-v-center {
    position: absolute; left: 50%; top: 0; width: 2px; height: 16px;
    background: var(--border); transform: translateX(-50%);
}
.ptree-bridge-inner .line-h {
    height: 2px; background: var(--border); margin-top: 16px;
}
.ptree-branch {
    display: flex; flex-direction: column; align-items: center;
}
.ptree-branch .line-v-down {
    width: 2px; height: 16px; background: var(--border);
}
/* Bottom banner */
.ptree-banner {
    margin-top: 28px; text-align: center;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.ptree-banner-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 20px; font-size: 14px;
}
.ptree-banner-item strong { color: var(--verde); font-weight: 700; }
.ptree-banner-item span { color: var(--text-sub); }
@media (max-width: 600px) {
    .ptree-row { flex-direction: column; align-items: center; gap: 8px; }
    .ptree-bridge { display: none; }
    .ptree-node { min-width: 200px; }
}

/* ===== CTA block ===== */
.cta-block {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,200,83,0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0,200,83,0.06) 0%, rgba(255,214,0,0.04) 100%);
    border: 1px solid rgba(0,200,83,0.2);
    border-radius: 20px; padding: 56px 40px; text-align: center; margin-top: 40px;
    position: relative; overflow: hidden;
}
.cta-block::before {
    content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-block h2 { font-family: var(--font); font-size: 32px; font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-block p { color: var(--text-sub); max-width: 560px; margin: 0 auto 28px; font-size: 16px; position: relative; }
.cta-block .cta-btn { position: relative; }

/* ===== PIX badge ===== */
.pix-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2);
    color: var(--verde); font-size: 13px; font-weight: 700;
    padding: 8px 16px; border-radius: 10px; margin-top: 16px;
}
.pix-badge svg { width: 18px; height: 18px; }

/* ===== Bonus card accent ===== */
.bonus-highlight {
    background: linear-gradient(135deg, rgba(255,214,0,0.08) 0%, rgba(0,200,83,0.05) 100%);
    border: 1px solid rgba(255,214,0,0.2);
    border-radius: var(--radius); padding: 32px; text-align: center;
    margin-top: 24px;
}
.bonus-highlight .amount {
    font-family: var(--font); font-size: 56px; font-weight: 900;
    background: linear-gradient(135deg, var(--amarelo) 0%, var(--verde) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.bonus-highlight .label { color: var(--text-sub); font-size: 14px; margin-top: 8px; }

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0; text-align: center; color: var(--text-sub); font-size: 12px;
    background: rgba(0,0,0,0.3);
}
.footer p + p { margin-top: 6px; }
.footer .flag-colors {
    display: flex; justify-content: center; gap: 4px; margin-bottom: 16px;
}
.footer .flag-colors span {
    width: 32px; height: 4px; border-radius: 2px;
}
.footer .flag-colors .fc-green { background: var(--verde-flag); }
.footer .flag-colors .fc-yellow { background: var(--amarelo-flag); }
.footer .flag-colors .fc-blue { background: var(--azul-flag); }

/* ===== Lightbox ===== */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 1000; justify-content: center; align-items: center; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 12px; box-shadow: 0 0 60px rgba(0,0,0,0.5); }

/* ===== Mobile menu ===== */
.mobile-menu-btn {
    display: none; background: none; border: 1px solid var(--border);
    color: var(--text); font-size: 24px; padding: 6px 12px;
    border-radius: 8px; cursor: pointer;
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav {
        display: none; position: absolute; top: 56px; left: 0; right: 0;
        background: rgba(10,14,20,0.97); border-bottom: 1px solid var(--border);
        flex-direction: column; padding: 16px 24px; gap: 12px;
    }
    .nav.nav-open { display: flex; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-inner { flex-direction: column; gap: 36px; }
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .hero { padding: 48px 0 40px; }
    .features { grid-template-columns: 1fr; }
    .scr-row { grid-template-columns: 1fr 1fr; }
    .cta-block { padding: 40px 24px; }
    .bonus-highlight .amount { font-size: 40px; }
    section { padding: 48px 0; }
}
html { scroll-behavior: smooth; }
