/* ==========================================================================
   RESET & VARIÁVEIS TOTAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050c18;
    --bg-secondary: #0a1324;
    --bg-card: #0d1b32;
    --color-green: #00df6c;
    --color-gold: #ef4210; /* Utilizando o laranja/ouro esportivo mapeado */
    --color-text-main: #ffffff;
    --color-text-muted: #8fa0bc;
    --font-header: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--color-text-main);
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.txt-green { color: var(--color-green); }
.txt-gold { color: var(--color-gold); }

/* ==========================================================================
   COMPONENTES DE BOTÃO & REPETÍVEIS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-green);
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 223, 108, 0.3);
}

.btn-primary.btn-gold {
    background-color: #ffb800; /* Dourado de destaque do layout original */
}

.btn-primary.btn-gold:hover {
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--color-green);
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-green);
    background: rgba(0, 223, 108, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    width: 100%;
    height: 80px;
    background: rgba(5, 12, 24, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(143, 160, 188, 0.1);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    width: 110px;
    height: auto;
}

.logo-text {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 9px;
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-text-main);
}

.btn-nav {
    background: var(--color-green);
    color: #000000;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: #00fa7a;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 223, 108, 0.08) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge .dot {
    width: 6px;
    height: 6px;
    background: var(--color-green);
    border-radius: 50%;
}

.hero-content h1 {
    font-family: var(--font-header);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(143, 160, 188, 0.1);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item strong {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 700;
}

.stat-item span {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Imagem Hero com Badges Flutuantes */
.hero-image .image-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
    filter: brightness(0.85);
}

.floating-badge {
    position: absolute;
    background: rgba(13, 27, 50, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.4;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.floating-badge strong {
    color: #txt-main;
    font-size: 15px;
    font-family: var(--font-header);
}

.badge-cap {
    top: 25%;
    left: -50px;
    border-left: 3px solid var(--color-green);
}

.badge-trade {
    bottom: 20px;
    right: -10px;
    border-left: 3px solid #ffb800;
}

/* ==========================================================================
   COMO FUNCIONA (PASSOS)
   ========================================================================== */
.features-steps {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.section-center-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-center-header h2 {
    font-family: var(--font-header);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-center-header p {
    color: var(--color-text-muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(143, 160, 188, 0.05);
    padding: 40px 32px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 223, 108, 0.2);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 223, 108, 0.08);
    color: var(--color-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.step-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 800;
    color: rgba(143, 160, 188, 0.05);
}

.step-card h3 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   RECURSOS AVANÇADOS
   ========================================================================== */
.advanced-tools {
    padding: 100px 0;
}

.tools-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.tools-header h2 {
    font-family: var(--font-header);
    font-size: 36px;
    font-weight: 700;
    max-width: 500px;
}

.header-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    max-width: 320px;
    line-height: 1.5;
}

.tools-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    margin-bottom: 32px;
}

.tool-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(143, 160, 188, 0.05);
    padding: 40px;
    border-radius: 12px;
}

.card-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tool-card h3 {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tool-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Gráfico Simulado do Cap Space */
.mock-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 500;
}

.chart-row span:first-child {
    width: 60px;
    color: var(--color-text-muted);
}

.bar-container {
    flex-grow: 1;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 4px;
}
.bar-1 { width: 90%; background-color: var(--color-green); }
.bar-2 { width: 70%; background-color: #ffb800; }
.bar-3 { width: 45%; background-color: #2452e2; }
.bar-4 { width: 20%; background-color: #ef4210; }

.chart-row .val {
    width: 60px;
    text-align: right;
    font-weight: 600;
}

/* Coluna Direita */
.tools-right-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tools-right-column .tool-card {
    padding: 32px;
    flex-grow: 1;
}

.mock-pick-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(143, 160, 188, 0.1);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.badge-status {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}
.status-green { background: rgba(0, 223, 108, 0.1); color: var(--color-green); }
.status-orange { background: rgba(239, 66, 16, 0.1); color: #ef4210; }

.mock-score {
    display: flex;
    align-items: center;
    gap: 16px;
}

.score-num {
    font-family: var(--font-header);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
}

.score-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

/* Mini Grid Inferior */
.mini-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.mini-card {
    background-color: var(--bg-secondary);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mini-card i {
    color: var(--color-green);
    font-size: 16px;
    margin-top: 4px;
}

.mini-card h4 {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mini-card p {
    color: var(--color-text-muted);
    font-size: 12px;
    line-height: 1.4;
}

/* ==========================================================================
   CTA BOX FINAL
   ========================================================================== */
.cta-final {
    padding: 80px 0 120px 0;
}

.cta-box {
    background: linear-gradient(135deg, #071630 0%, #030a16 100%);
    border: 1px solid rgba(0, 223, 108, 0.15);
    border-radius: 16px;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cta-box h2 {
    font-family: var(--font-header);
    font-size: 36px;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
}

.cta-badge {
    font-size: 11px;
    font-weight: 700;
    color: #ffb800;
    letter-spacing: 1px;
}

.cta-action-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cta-subtext {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #030812;
    padding: 40px 0;
    border-top: 1px solid rgba(143, 160, 188, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-header);
    font-size: 14px;
}

.footer-logo span {
    font-size: 9px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.copyright {
    color: var(--color-text-muted);
    font-size: 12px;
}

/* ==========================================================================
   RESPONSIVIDADE BÁSICA (PREVENÇÃO)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid, .tools-main-grid, .cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .steps-grid, .mini-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tools-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .steps-grid, .mini-features-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu { display: none; }
}
/* ==========================================================================
   SEÇÃO MANUTENÇÃO E HOSPEDAGEM
   ========================================================================== */
.server-maintenance {
    padding: 60px 0 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.maintenance-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    background-color: var(--bg-card);
    border: 1px solid rgba(143, 160, 188, 0.05);
    padding: 56px;
    border-radius: 16px;
    align-items: center;
}

.maint-content h2 {
    font-family: var(--font-header);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.maint-content p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.payment-methods {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pay-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(143, 160, 188, 0.08);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.pay-item i {
    color: var(--color-green);
    font-size: 14px;
}

/* Card de Preço */
.maint-pricing-card {
    background-color: rgba(5, 12, 24, 0.6);
    border: 1px solid rgba(0, 223, 108, 0.15);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.maint-pricing-card .card-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-green);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-value .currency {
    font-size: 18px;
    font-weight: 700;
    margin-right: 4px;
}

.price-value .amount {
    font-family: var(--font-header);
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-main);
}

.price-value .period {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.price-desc {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.card-divider {
    border: 0;
    height: 1px;
    background: rgba(143, 160, 188, 0.1);
    margin-bottom: 24px;
}

.card-benefits {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-benefits li {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-main);
}

/* Ajuste Responsivo da Seção */
@media (max-width: 992px) {
    .maintenance-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}
/* Cor de destaque para os Turnovers (Erros) */
.bar-errors {
    width: 35%;
    background-color: #ef4210;
}