/* ==================== SISTEMA DE DESIGN & VARIAVEIS ==================== */
:root {
    --bg-dark: #07090e;
    --card-bg: rgba(13, 18, 29, 0.45);
    --border-color: rgba(255, 255, 255, 0.05);
    --text-primary: #f3f4f6;
    --text-secondary: #cbd5e1;
    --text-muted: #8e9bb0;
    --primary-color: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --danger-color: #ef4444;
    --success-color: #10b981;
    --font-outfit: 'Outfit', sans-serif;
}

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

html {
    font-size: 100%; /* Retornado para 100% para manter a altura e texto padrão */
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-outfit);
    line-height: 1.6;
}

/* Fundos Luminosos de Efeito (Neon Cyberpunk Ambient) */
.glow-bg-primary {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    left: -150px;
    z-index: -1;
    pointer-events: none;
}

.glow-bg-secondary {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    top: 500px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
}

/* ==================== COMPONENTES GERAIS ==================== */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Botões de Ação */
button {
    font-family: var(--font-outfit);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-glow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.btn-primary-neon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-lg {
    font-size: 1.05rem;
    padding: 16px 36px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ==================== NAVBAR GERAL ==================== */
.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 20px;
    left: 5%;
    width: 90%;
    z-index: 1000;
    border-radius: 50px;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo h2 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.brand-logo span {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* ESTILIZAÇÃO E INTEGRAÇÃO DE IMAGENS DE LOGO COM MISTURA DE FUNDO */
.navbar-logo-img {
    height: 96px; /* Dobrado de 48px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.footer-logo-img {
    height: 120px; /* Dobrado de 60px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.sidebar-logo-img {
    height: 100px; /* Dobrado de 50px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* ==================== SEÇÃO HERO ==================== */
.hero-container {
    padding: 160px 8% 80px 8%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    min-height: 100vh;
}

.badge-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-content p.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    margin-bottom: 50px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.hero-stat-box {
    display: flex;
    flex-direction: column;
}

.hero-stat-box strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat-box span {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Widget Interativo de Logotipos de Clientes Fictícios */
.trusted-clients-widget {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
}

.logo-stack-wrapper {
    display: flex;
    align-items: center;
}

.stack-logo-item {
    width: 38px;
    height: 38px;
    border-radius: 50%; /* Círculo perfeito */
    border: 2px solid #07090e;
    margin-left: -12px; /* Efeito de pilha sobreposta */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    object-fit: cover;
}

.stack-logo-item:first-child {
    margin-left: 0;
}

/* Efeitos Interativos de Hover na Pilha */
.stack-logo-item:hover {
    transform: scale(1.35) translateY(-5px);
    z-index: 10;
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

/* Organização de z-index padrão para que a sobreposição ocorra da esquerda para a direita (6 itens) */
.stack-logo-item:nth-child(1) { z-index: 5; }
.stack-logo-item:nth-child(2) { z-index: 4; }
.stack-logo-item:nth-child(3) { z-index: 3; }
.stack-logo-item:nth-child(4) { z-index: 2; }
.stack-logo-item:nth-child(5) { z-index: 1; }
.stack-logo-item:nth-child(6) { z-index: 6; }

.trusted-clients-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Mockup In-Game da Direita */
.mockup-box {
    border-color: rgba(59, 130, 246, 0.15);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-header .dot.red { background: #ef4444; }
.mockup-header .dot.yellow { background: #f59e0b; }
.mockup-header .dot.green { background: #10b981; }

.mockup-title {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mockup-body {
    padding: 25px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #a7f3d0;
    background: rgba(0, 0, 0, 0.2);
}

.mockup-line {
    margin-bottom: 12px;
}

.mockup-line span {
    font-weight: bold;
}

.mockup-line.warning { color: #fef08a; }
.mockup-line.error { color: #fca5a5; }

/* ==================== SEÇÃO DIFERENCIAIS ==================== */
.features-section, .plans-section, .faq-section {
    padding: 100px 8%;
}

.section-center-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-center-title h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-center-title p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.feature-card-item {
    padding: 30px;
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.03);
}

.feature-card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05);
}

.feature-item-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-card-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== SEÇÃO PLANOS ==================== */
.coupon-banner-badge {
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    border-color: rgba(59, 130, 246, 0.15);
    max-width: 1200px; /* Alinhado em 1200px com os planos */
    margin-left: auto;
    margin-right: auto;
}

.plans-container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    max-width: 1200px; /* Aumentado a largura máxima em 25% para expandir horizontalmente */
    margin-left: auto;
    margin-right: auto;
}

.plan-item {
    padding: 25px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-color: rgba(255, 255, 255, 0.04);
}

.plan-item.active {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 45px rgba(59, 130, 246, 0.15);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(13, 18, 29, 0.45) 100%);
}

.plan-item-badge {
    position: absolute;
    top: -12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-item-badge.active-badge {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.plan-item-price {
    font-size: 2rem;
    font-weight: 900;
    margin-top: 8px;
}

.plan-item-price span {
    font-size: 1.1rem;
}

.plan-item-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.save-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success-color);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.plan-item-features {
    list-style: none;
    width: 100%;
    margin-bottom: 20px;
}

.plan-item-features li {
    padding: 7px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.btn-plan-select {
    width: 100%;
}

/* Card Horizontal do Vitalício (Lifetime) */
.lifetime-horizontal-card {
    padding: 22px 25px;
    border-color: rgba(6, 182, 212, 0.25);
    margin-bottom: 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(13, 18, 29, 0.45) 100%);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.08);
    max-width: 1200px; /* Aumentado a largura máxima em 25% para expandir horizontalmente */
    margin-left: auto;
    margin-right: auto;
}

.lifetime-badge {
    position: absolute;
    top: -12px;
    left: 25px;
    background: #06b6d4;
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 900;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.lifetime-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: center;
}

.lifetime-info h3 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.lifetime-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.lifetime-grid-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.lifetime-grid-features span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.lifetime-price-action {
    text-align: right;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 30px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.new-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: #06b6d4;
    line-height: 1;
}

.new-price span {
    font-size: 1.1rem;
}

.savings-text {
    font-size: 0.7rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 3px;
}

/* Caixa Flutuante de Checkout (Ao selecionar o plano) */
.checkout-anchor-box {
    padding: 25px 35px;
    position: sticky;
    bottom: 25px;
    z-index: 99;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.checkout-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-small-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    width: 180px;
}

/* ==================== SEÇÃO FAQ ACORDEÃO ==================== */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-color: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    padding: 22px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 22px 30px;
    display: none;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

/* ==================== RODAPÉ ==================== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 8% 30px 8%;
    background: #04060a;
}

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

.footer-brand h2 {
    font-size: 1.3rem;
    font-weight: 900;
}

.footer-brand h2 span {
    color: var(--primary-color);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

/* ==================== MODAL DE LOGIN ==================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-box {
    width: 90%;
    max-width: 460px;
    padding: 35px;
    position: relative;
    border-color: rgba(59, 130, 246, 0.25);
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
}

.input-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    padding: 12px 16px;
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-outfit);
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

/* MODAL PIX CHECKOUT */
.pix-qr-container {
    background: white;
    padding: 15px;
    border-radius: 12px;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.pix-qr-container img {
    width: 100%;
    height: 100%;
}

.copy-input-wrapper {
    display: flex;
    gap: 10px;
}

.copy-input-wrapper input {
    flex-grow: 1;
}

.payment-loading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== DASHBOARD LAYOUT & SIDEBAR ==================== */
.dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.sidebar {
    padding: 40px 24px;
    border-right: 1px solid var(--border-color);
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 280px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar-logo h2 {
    font-size: 1.4rem;
    font-weight: 900;
}

.sidebar-logo span {
    color: var(--primary-color);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.sidebar-link:hover, .sidebar-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-primary);
}

.sidebar-footer {
    margin-top: auto;
}

.user-pill {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 700;
}

.dashboard-main-content {
    padding: 40px;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    flex-grow: 1;
    width: 100%;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 900;
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Card grids e Tables */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    border-color: rgba(255, 255, 255, 0.03);
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.info-row span {
    color: var(--text-muted);
}

.badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success-color);
    padding: 2px 10px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Módulo Cards */
.module-card {
    padding: 25px;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.module-header h4 {
    font-size: 1rem;
    font-weight: 700;
}

.module-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Switches para Módulos e Blacklists */
.switch {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(239, 68, 68, 0.12); /* Vermelho escuro quando inativo (Desligado) */
    border: 1px solid rgba(239, 68, 68, 0.35);
    transition: .3s;
    border-radius: 30px;
}

/* Pseudo-elemento para exibir texto BLOQUEADO / LIBERADO */
.slider:after {
    content: "LIBERADO";
    color: #ef4444;
    font-size: 0.68rem;
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    letter-spacing: 0.8px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background-color: #ef4444; /* Bolinha vermelha quando inativo */
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
    z-index: 2;
}

input:checked + .slider {
    background-color: rgba(59, 130, 246, 0.12); /* Azul neon quando ativo (Ligado) */
    border-color: var(--primary-color);
}

/* Modifica o texto para BLOQUEADO e a posição quando ativo */
input:checked + .slider:after {
    content: "BLOQUEADO";
    color: var(--primary-color);
    left: 12px;
    right: auto;
    text-shadow: 0 0 5px var(--primary-glow);
}

input:checked + .slider:before {
    transform: translateX(96px);
    background-color: var(--primary-color); /* Bolinha azul neon */
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Tabelas */
.table-card {
    padding: 30px;
}

.table-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.table-container {
    overflow-x: auto;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}

th, td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    color: #8b92b6;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.02);
}

td {
    color: #e2e8f0;
}

.error-msg {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 15px;
    text-align: center;
}

.hidden {
    display: none !important;
}

/* ==================== DISPOSITIVOS MOVEIS E RESPONSIVIDADE ==================== */
@media(max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats-row {
        justify-content: center;
    }
    .plans-container-grid {
        grid-template-columns: 1fr;
    }
    .lifetime-content {
        grid-template-columns: 1fr;
    }
    .lifetime-price-action {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
    }
    .dashboard-wrapper {
        grid-template-columns: 1fr;
    }
    .sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* BACKGROUND COM IMAGEM LUCIA NA HERO */
.hero-container {
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.4) 0%, rgba(7, 9, 14, 0.95) 100%), url('assets/lucia_club.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

/* SEÇÃO COLLAGE DIVIDER (GRADIENTE NEON PREMIUM) */
.collage-divider-section {
    height: 250px;
    background: linear-gradient(135deg, #090e18 0%, #0c1527 50%, #090e18 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.05);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.overlay-opacity {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 9, 14, 0.82);
    z-index: 1;
}

.collage-divider-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.collage-divider-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.collage-divider-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* SEÇÃO BANNER TREVOR (GTA V TREVOR) */
.banner-trevor-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, #07090e 0%, #0a0e16 100%);
}

.banner-trevor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-trevor-image {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.banner-trevor-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.2));
}

.banner-trevor-content h2 {
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-trevor-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-counter-item h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-counter-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 3px;
}

@media(max-width: 900px) {
    .banner-trevor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .banner-trevor-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .collage-divider-section {
        height: 280px;
    }
    .collage-divider-content h2 {
        font-size: 1.6rem;
    }
}

/* ==================== PÁGINA DE CHECKOUT DEDICADA COMPLETA (DESIGN PREMIUM) ==================== */
.checkout-page-wrapper {
    padding: 60px 8%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease-out;
}

.checkout-page-title {
    margin-bottom: 40px;
    text-align: left;
}

.checkout-page-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 5px;
}

.checkout-page-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

.checkout-page-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.95fr;
    gap: 40px;
    align-items: flex-start;
}

.checkout-card-section {
    padding: 30px;
    border-radius: 16px;
    background: rgba(13, 20, 35, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.checkout-section-subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.3px;
}

/* Seletor de Planos da Esquerda */
.checkout-plans-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-plan-selector-card {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    padding: 22px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.checkout-plan-selector-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.02);
    transform: translateY(-2px);
}

.checkout-plan-selector-card.active {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Badges e Extras nos seletores */
.selector-card-badge {
    position: absolute;
    top: 0;
    right: 30px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #eab308;
    color: #000;
    letter-spacing: 0.5px;
}

.selector-card-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s;
}

.checkout-plan-selector-card.active .selector-card-radio {
    border-color: var(--primary-color);
}

.checkout-plan-selector-card.active .selector-card-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-glow);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.selector-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-left: 5px;
}

.selector-plan-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.selector-plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.selector-plan-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.selector-plan-saving {
    grid-column: 2 / 4;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    margin-top: 5px;
    margin-left: 5px;
}

/* Área de Cupom */
.checkout-coupon-wrapper {
    display: flex;
    gap: 15px;
}

.checkout-coupon-field {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.checkout-coupon-field:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* O que está incluso */
.checkout-inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.checkout-inclusions-grid span {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Caixa de Resumo e Cálculos */
.sticky-sidebar {
    position: sticky;
    top: 110px;
}

.checkout-summary-box {
    display: flex;
    flex-direction: column;
}

.summary-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.summary-product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-product-details strong {
    font-size: 1.1rem;
    color: #fff;
}

.summary-product-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-product-icon {
    font-size: 1.8rem;
    opacity: 0.8;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 20px 0;
}

.summary-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.summary-calc-row.total-row {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 0;
}

.checkout-security-badge {
    padding: 18px;
    text-align: center;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-weight: 700;
    font-size: 0.88rem;
}

@media(max-width: 900px) {
    .checkout-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==================== ESTILOS: NOVO RODAPÉ CORPORATIVO PREMIUM ==================== */
.footer-grid-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 20px;
}

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

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-icon-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.icon-svg {
    width: 18px;
    height: 18px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.footer-legal-info {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Faixa Inferior de Pagamentos */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pix-badge {
    color: #32bcad;
    border-color: rgba(50, 188, 173, 0.2);
    background: rgba(50, 188, 173, 0.05);
}

.paypal-badge {
    color: #0079c1;
    border-color: rgba(0, 121, 193, 0.2);
    background: rgba(0, 121, 193, 0.05);
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.powered-by {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.powered-by span {
    color: #3b82f6;
    font-weight: 700;
}

/* ==================== ESTILOS: PÁGINA DE STATUS DE REDE ==================== */
.status-page-wrapper {
    max-width: 960px;
    margin: 190px auto 80px auto;
    padding: 0 20px;
}

.status-header {
    text-align: center;
    margin-bottom: 45px;
}

.status-badge-glow {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.status-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.status-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Card de Visão Geral */
.status-overview-card {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    margin-bottom: 30px;
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.03);
}

.status-indicator-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}

.status-indicator-pulse.online {
    background-color: #10b981;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.status-overview-text {
    flex: 1;
}

.status-overview-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.status-overview-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.status-uptime-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 12px;
    color: #fff;
}

/* Categorias de Sistemas */
.status-systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.system-category-box {
    padding: 30px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.system-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.system-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.system-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.system-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.system-ping {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

.system-status-pill {
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.system-status-pill.operational {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Incidente Recentes */
.incident-history-card {
    padding: 30px;
}

.incident-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.incident-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 20px;
}

.incident-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    bottom: 5px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -20px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

.timeline-marker.clean {
    background-color: #10b981;
}

.timeline-marker.maintenance {
    background-color: #3b82f6;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.incident-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.incident-meta strong {
    color: #fff;
}

.incident-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.incident-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Responsividade de Status e Footer */
@media (max-width: 768px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .status-systems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



