:root {
    --bg-dark: #030305;
    --bg-panel: rgba(15, 18, 35, 0.6);
    --bg-panel-hover: rgba(20, 30, 50, 0.8);
    --border-color: rgba(59, 130, 246, 0.2);
    --border-highlight: rgba(37, 99, 235, 0.5);
    
    --purple-main: #3b82f6;
    --purple-light: #60a5fa;
    --purple-neon: #2563eb;
    --purple-dark: #1e3a8a;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --font-main: 'Outfit', sans-serif;
    
    --glow-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    --glow-strong: 0 0 30px rgba(37, 99, 235, 0.6), 0 0 60px rgba(59, 130, 246, 0.4);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Base Styles */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2.size-lg { font-size: 3rem; }
h2.size-large { font-size: 3.5rem; }

a {
    text-decoration: none;
    color: inherit;
}

.text-purple { color: var(--purple-light); }
.text-muted { color: var(--text-muted); }
.text-highlight { color: var(--text-main); font-weight: 600; border-bottom: 2px solid var(--purple-main); }

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
    color: var(--purple-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.container-sm { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.pb-0 { padding-bottom: 0 !important; }
.w-full { width: 100%; }
.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 1rem; }
.opacity-50 { opacity: 0.5; }
.opacity-30 { opacity: 0.3; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.text-2xl { font-size: 1.5rem; }

/* Backgrounds */
.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(3,3,5,0) 70%);
    z-index: 1;
    pointer-events: none;
}
.bg-top { top: -20vw; left: -10vw; }
.bg-bottom { bottom: -20vw; right: -10vw; }
.bg-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80vw; height: 80vw;}

.section { padding: 6rem 0; position: relative; }
.section-header { margin-bottom: 3.5rem; }
.subtitle { font-size: 1.25rem; color: var(--text-muted); }
.divider-top { border-top: 1px solid rgba(255,255,255,0.05); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-main);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--purple-main), var(--purple-neon));
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-cta {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
}

.btn-glow { box-shadow: var(--glow-shadow); }
.btn-glow:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
    background: linear-gradient(90deg, var(--purple-light), var(--purple-neon));
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--purple-light);
    backdrop-filter: blur(10px);
}
.badge-sm { font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 6px; }
.badge-success { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: #34d399;}

/* Glass Panels */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
}

.glass-panel:hover {
    border-color: var(--border-highlight);
    background: var(--bg-panel-hover);
    transform: translateY(-5px);
}

/* 1. HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-labels {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
}

.urgency-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.urgency-text strong {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Hero Dashboard 3D Mockup */
.hero-visual {
    width: 100%;
    max-width: 1000px;
    margin-top: 4rem;
    perspective: 1000px;
}

.dashboard-mockup {
    background: #0a0e17;
    border: 1px solid var(--border-highlight);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--glow-strong);
    transform: rotateX(10deg);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 400px;
}
.dashboard-mockup:hover { transform: rotateX(0deg) scale(1.02); }

.mockup-header {
    background: #0c121e;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }
.mockup-title { margin: 0 auto; font-size: 0.75rem; color: #666; font-weight: 500;}

.mockup-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.mockup-sidebar {
    width: 200px;
    background: rgba(255,255,255,0.02);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}
.sk-line { background: #222; }
.rounded { border-radius: 4px; }
.h-8 { height: 2rem; }
.h-4 { height: 1rem; }
.h-10 { height: 2.5rem; }
.w-3\/4 { width: 75%; }
.w-1\/2 { width: 50%; }
.w-5\/6 { width: 83%; }
.glow-box { background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.4)); box-shadow: 0 0 10px rgba(37, 99, 235, 0.2); border: 1px solid var(--purple-main);}

.mockup-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
}

.mockup-cards { display: flex; gap: 1rem; }
.m-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.m-label { font-size: 0.75rem; color: #888; margin-bottom: 0.25rem; }
.m-value { font-size: 1.5rem; font-weight: 700; color: #fff; }

.m-header { display: flex; justify-content: space-between; align-items: center; color: #aaa; font-size: 0.875rem; margin-bottom: 1rem; }
.m-bar-chart {
    display: flex;
    align-items: flex-end;
    height: 100px;
    gap: 12px;
    flex: 1;
}
.bar {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}
.bar-highlight {
    background: linear-gradient(to top, var(--purple-main), var(--purple-light));
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}


/* 2. DORES */
.dores-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(20,25,35,0.8), transparent);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 3px solid rgba(239, 68, 68, 0.5);
}

.dor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.dores-conclusion {
    text-align: center;
    font-size: 1.25rem;
    border-color: rgba(255,255,255,0.1);
}

/* 3. SOLUÇÃO */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.step-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }


/* 4. O QUE VOCÊ RECEBE */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-item i {
    font-size: 1.75rem;
    margin-top: 0.1rem;
}

.fi-content h4 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.fi-content p { color: var(--text-muted); font-size: 0.9rem; }


/* 5. RESULTADOS */
.resultado-visual {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.big-panel {
    width: 100%;
    max-width: 700px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--purple-main);
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.growth-chart {
    position: relative;
    z-index: 1;
}

.gc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    text-align: left;
}

.gc-val {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-top: 0.5rem;
}

.gc-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    gap: 1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.g-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.g-bar {
    width: 100%;
    max-width: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px 8px 0 0;
    transition: all 1s ease;
}

.g-bar-purple {
    background: linear-gradient(to top, var(--purple-dark), var(--purple-light));
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.g-bar-group span {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* 6. OBJEÇÕES */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ccc;
}

.faq-a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-main);
    padding-left: 2rem;
}
.faq-a i { margin-top: 0.15rem; }


/* 7. OFERTA (ADAPTADO PARA MÚLTIPLOS PLANOS) */
.oferta {
    position: relative;
    z-index: 10;
}

.oferta-plans {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.premium-border {
    border: 2px solid var(--purple-main);
    box-shadow: var(--glow-strong);
    position: relative;
    overflow: hidden;
}

.premium-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: 0.5;
}

.oferta-card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.oferta-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.premium-badge {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
    border-color: var(--purple-light);
    color: #fff;
    margin-bottom: 1.5rem;
}

.oferta-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.oferta-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.oferta-features i { color: var(--purple-light); }

.price-box {
    text-align: center;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

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

.price-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
}

.price-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.oferta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
}


/* 8. GARANTIA */
.garantia-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    flex-wrap: wrap;
}

.g-icon {
    font-size: 4rem;
}

.g-content {
    flex: 1;
    min-width: 300px;
}

.g-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.g-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* 9. FOOTER */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a:hover {
    color: var(--text-main);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left { transform: translateX(-30px); }
.fade-left.active { transform: translateX(0); }

.fade-up { transform: translateY(40px); }
.fade-up.active { transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h2.size-lg, h2.size-large { font-size: 2.25rem; }
    
    .hero { padding-top: 6rem; }
    .btn-large { padding: 1rem 1.5rem; font-size: 1.1rem; }
    
    .dashboard-mockup { height: 300px; transform: rotateX(0deg); }
    .mockup-sidebar { display: none; }
    .mockup-cards { flex-direction: column; }
    
    .garantia-box { flex-direction: column; text-align: center; }
    .g-icon { margin-bottom: -1rem; }
    
    .oferta-plans { flex-direction: column; }
    .oferta-card { padding: 2rem 1.5rem; }
    .price-new { font-size: 3rem; }
}

/* Loading State for Checkout */
.btn.loading {
    pointer-events: none;
    opacity: 0.9;
    background: linear-gradient(90deg, var(--purple-neon), var(--purple-light));
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.9);
    transform: scale(0.98);
}
.btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
