* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #0f3d1e;
    --green-main: #22c55e;
    --green-light: #4ade80;
    --green-glow: #34d399;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dim: rgba(245, 158, 11, 0.15);
    --bg-dark: #060d08;
    --bg-card: #0c1a10;
    --bg-card-hover: #112316;
    --text-main: #d1e8d5;
    --text-muted: #7a8f80;
    --text-white: #f0fdf4;
    --pixel-grid: rgba(34, 197, 94, 0.03);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: clip;
    font-weight: 400;
}

/* Pixel grid overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--pixel-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--pixel-grid) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 13, 8, 0.8);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(34, 197, 94, 0.08);
    transition: all 0.4s;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 13px;
    color: var(--green-light);
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--green-light);
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

.btn-nav {
    background: var(--green-main) !important;
    color: var(--bg-dark) !important;
    padding: 8px 22px !important;
    border-radius: 8px;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    transition: all 0.3s !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.btn-nav:hover {
    background: var(--green-glow) !important;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Hero two-column inner wrapper */
.hero-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-pricing {
    flex: 0 0 390px;
    animation: hero-fade-in 1s ease-out 0.4s both;
}

.hero-pricing .pricing-card {
    max-width: none;
    margin: 0;
    padding: 36px 32px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(34, 197, 94, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 30% 60%, rgba(245, 158, 11, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 70% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

/* Floating pixel particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green-light);
    opacity: 0;
    animation: float-up linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; width: 3px; height: 3px; background: var(--gold); }
.particle:nth-child(3) { left: 35%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; animation-duration: 14s; animation-delay: 1s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 65%; animation-duration: 9s; animation-delay: 3s; width: 3px; height: 3px; background: var(--gold-light); }
.particle:nth-child(6) { left: 75%; animation-duration: 11s; animation-delay: 5s; }
.particle:nth-child(7) { left: 85%; animation-duration: 13s; animation-delay: 2.5s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 45%; animation-duration: 15s; animation-delay: 6s; background: var(--gold); width: 3px; height: 3px; }
.particle:nth-child(9) { left: 5%; animation-duration: 10s; animation-delay: 7s; }
.particle:nth-child(10) { left: 92%; animation-duration: 11s; animation-delay: 1.5s; width: 4px; height: 4px; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0;
    }
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    animation: hero-fade-in 1s ease-out;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: hero-fade-in 1s ease-out 0.2s both;
}

.hero h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(18px, 3.5vw, 34px);
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 14px;
    text-shadow: 0 0 60px rgba(34, 197, 94, 0.25), 0 2px 0 rgba(0,0,0,0.3);
    animation: hero-fade-in 1s ease-out 0.3s both;
}

.hero h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(12px, 2.2vw, 20px);
    color: var(--green-light);
    margin-bottom: 28px;
    text-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
    animation: hero-fade-in 1s ease-out 0.4s both;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 400;
    animation: hero-fade-in 1s ease-out 0.5s both;
}

.hero-tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 36px;
    animation: hero-fade-in 1s ease-out 0.6s both;
}

.hero-badge {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.15);
    color: var(--green-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.hero-badge:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(74, 222, 128, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: hero-fade-in 1s ease-out 0.7s both;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.btn-primary {
    background: var(--green-main);
    color: var(--bg-dark);
    font-weight: 800;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    background: var(--green-glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--green-light);
    border: 1.5px solid rgba(74, 222, 128, 0.25);
}

.btn-secondary:hover {
    border-color: var(--green-light);
    background: rgba(74, 222, 128, 0.06);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 52px;
    font-size: 17px;
    border-radius: 12px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 28px;
    color: var(--green-light);
    animation: bounce 2.5s ease-in-out infinite;
    opacity: 0.4;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-main), var(--gold));
    margin: 20px auto 50px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    max-width: 680px;
    margin: -30px auto 56px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-main), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.feature-card:nth-child(1).visible { transition-delay: 0ms; }
.feature-card:nth-child(2).visible { transition-delay: 80ms; }
.feature-card:nth-child(3).visible { transition-delay: 160ms; }
.feature-card:nth-child(4).visible { transition-delay: 240ms; }
.feature-card:nth-child(5).visible { transition-delay: 320ms; }
.feature-card:nth-child(6).visible { transition-delay: 400ms; }
.feature-card:nth-child(7).visible { transition-delay: 480ms; }
.feature-card:nth-child(8).visible { transition-delay: 560ms; }

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card h3 {
    font-size: 17px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Chapters */
.capitulos {
    background:
        linear-gradient(180deg, var(--bg-dark) 0%, rgba(12, 26, 16, 0.4) 50%, var(--bg-dark) 100%);
}

.chapters-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 750px;
    margin: 0 auto;
}

.chapter {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.06);
    border-radius: 12px;
    padding: 22px 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
}

.chapter::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--green-main);
    border-radius: 0 2px 2px 0;
    transition: height 0.4s 0.1s;
}

.chapter:hover::before {
    height: 60%;
}

.chapter.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered chapter animations */
.chapter:nth-child(1).visible { transition-delay: 0ms; }
.chapter:nth-child(2).visible { transition-delay: 50ms; }
.chapter:nth-child(3).visible { transition-delay: 100ms; }
.chapter:nth-child(4).visible { transition-delay: 150ms; }
.chapter:nth-child(5).visible { transition-delay: 200ms; }
.chapter:nth-child(6).visible { transition-delay: 250ms; }
.chapter:nth-child(7).visible { transition-delay: 300ms; }
.chapter:nth-child(8).visible { transition-delay: 350ms; }
.chapter:nth-child(9).visible { transition-delay: 400ms; }
.chapter:nth-child(10).visible { transition-delay: 450ms; }
.chapter:nth-child(11).visible { transition-delay: 500ms; }
.chapter:nth-child(12).visible { transition-delay: 550ms; }
.chapter:nth-child(13).visible { transition-delay: 600ms; }
.chapter:nth-child(14).visible { transition-delay: 650ms; }
.chapter:nth-child(15).visible { transition-delay: 700ms; }
.chapter:nth-child(16).visible { transition-delay: 750ms; }

.chapter:hover {
    border-color: rgba(34, 197, 94, 0.2);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.chapter-num {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    color: var(--green-main);
    min-width: 48px;
    opacity: 0.4;
    transition: opacity 0.3s, color 0.3s;
}

.chapter:hover .chapter-num {
    opacity: 0.8;
    color: var(--gold);
}

.chapter h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 4px;
    font-weight: 700;
}

.chapter p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Destaque */
.destaque {
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        linear-gradient(225deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    border-top: 1px solid rgba(34, 197, 94, 0.08);
    border-bottom: 1px solid rgba(34, 197, 94, 0.08);
}

.destaque-content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.destaque-text h2 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.destaque-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 8px 0;
    color: var(--text-main);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list li::before {
    content: "\2714";
    color: var(--green-light);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.destaque-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 16px;
    padding: 24px 44px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered stat animations */
.stat:nth-child(1).visible { transition-delay: 0ms; }
.stat:nth-child(2).visible { transition-delay: 100ms; }
.stat:nth-child(3).visible { transition-delay: 200ms; }
.stat:nth-child(4).visible { transition-delay: 300ms; }

.stat:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.08);
}

.stat-number {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 26px;
    color: var(--green-light);
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Forks grid */
.forks-section {
    background: var(--bg-dark);
}

.forks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.fork-item {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.06);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.fork-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered fork animations */
.fork-item:nth-child(1).visible { transition-delay: 0ms; }
.fork-item:nth-child(2).visible { transition-delay: 40ms; }
.fork-item:nth-child(3).visible { transition-delay: 80ms; }
.fork-item:nth-child(4).visible { transition-delay: 120ms; }
.fork-item:nth-child(5).visible { transition-delay: 160ms; }
.fork-item:nth-child(6).visible { transition-delay: 200ms; }
.fork-item:nth-child(7).visible { transition-delay: 240ms; }
.fork-item:nth-child(8).visible { transition-delay: 280ms; }
.fork-item:nth-child(9).visible { transition-delay: 320ms; }
.fork-item:nth-child(10).visible { transition-delay: 360ms; }
.fork-item:nth-child(11).visible { transition-delay: 400ms; }
.fork-item:nth-child(12).visible { transition-delay: 440ms; }

.fork-item:hover {
    border-color: rgba(34, 197, 94, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fork-item strong {
    display: block;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fork-item span {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.3px;
}

/* Autor */
.autor {
    background: linear-gradient(180deg, var(--bg-dark), rgba(12, 26, 16, 0.3), var(--bg-dark));
}

.autor-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.autor-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 22px;
    color: var(--text-white);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
    transition: transform 0.3s;
}

.autor-avatar:hover {
    transform: rotate(-3deg) scale(1.05);
}

.autor-info h2 {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 800;
}

.autor-info p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* Comprar */
.comprar {
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(34, 197, 94, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 30% 30%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.pricing-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 24px;
    padding: 52px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.04), transparent 50%);
    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(34, 197, 94, 0.08);
    transform: translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: -28px;
    background: linear-gradient(90deg, var(--green-main), var(--gold));
    color: var(--bg-dark);
    padding: 5px 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 800;
}

.pricing-edition {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 24px;
    margin-top: -16px;
    letter-spacing: 0.5px;
}

.price {
    margin-bottom: 36px;
}

.price-old {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 6px;
    opacity: 0.6;
}

.price-current {
    font-family: 'Press Start 2P', cursive;
    font-size: 30px;
    color: var(--green-light);
    text-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-main);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li::before {
    content: "\2714";
    color: var(--green-light);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.guarantee {
    margin-top: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(34, 197, 94, 0.06);
    background: rgba(6, 13, 8, 0.5);
}

.footer p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-note {
    margin-top: 8px;
    font-size: 11px !important;
    opacity: 0.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--green-light);
}

.footer-sep {
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 12px;
}

/* Glow divider */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-main), var(--gold), var(--green-main), transparent);
    opacity: 0.3;
    margin: 0;
}

/* Hero two-column → stacked on tablet/mobile */
@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-tags-list,
    .hero-buttons,
    .hero-social-proof {
        justify-content: center;
    }

    .hero-pricing {
        flex: none;
        width: 100%;
        max-width: 440px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 13, 8, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .destaque-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .check-list li {
        justify-content: center;
    }

    .destaque-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat {
        padding: 20px 24px;
    }

    .stat-number {
        font-size: 18px;
    }

    .autor-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .forks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-tags-list {
        gap: 6px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .particles .particle {
        opacity: 0.3;
    }
}

/* Hero social proof */
.hero-social-proof {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    animation: hero-fade-in 1s ease-out 0.8s both;
}

.hero-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 14px;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 80px;
    color: var(--green-main);
    opacity: 0.06;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-main));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--text-white);
}

.testimonial-name {
    display: block;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    font-style: italic;
}

/* FAQ */
.faq-section {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(34, 197, 94, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--green-light);
}

.faq-icon {
    font-size: 22px;
    color: var(--green-main);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    font-weight: 400;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
}

.countdown-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-unit {
    text-align: center;
}

.countdown-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 22px;
    color: var(--text-white);
    display: block;
    line-height: 1.2;
}

.countdown-unit-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

.countdown-sep {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    color: var(--gold);
    opacity: 0.4;
    padding-bottom: 14px;
}

/* Urgency text */
.urgency-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 24px;
    margin-top: -20px;
    opacity: 0.65;
    letter-spacing: 0.3px;
}

/* Guarantee badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 18px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: left;
}

.guarantee-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Sticky mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(6, 13, 8, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta-price {
    display: flex;
    flex-direction: column;
}

.sticky-price-old {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.sticky-price-current {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--green-light);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .float-cta {
        right: 16px;
        bottom: 20px;
    }

    .float-btn {
        font-size: 13px;
        padding: 13px 18px;
    }
}

/* Floating CTA */
.float-cta {
    position: fixed !important;
    bottom: 32px;
    right: 28px;
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.float-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.float-countdown-box {
    background: rgba(8, 18, 10, 0.98);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 10px 20px 8px;
    text-align: center;
}

.float-cd-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
    opacity: 0.85;
}

.float-cd-time {
    font-family: 'Press Start 2P', cursive;
    font-size: 15px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.fcd-sep {
    color: var(--gold);
    opacity: 0.45;
    font-size: 13px;
}

.float-btn {
    display: block;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    padding: 14px 24px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.3px;
    border-radius: 0 0 14px 14px;
    animation: float-glow 2s ease-in-out infinite;
    transition: filter 0.2s, transform 0.15s;
    white-space: nowrap;
}

.float-btn:hover {
    filter: brightness(1.12);
    transform: scale(1.03);
}

@keyframes float-glow {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(245, 158, 11, 0.45),
            0 0 40px rgba(245, 158, 11, 0.15);
    }
    50% {
        box-shadow:
            0 4px 32px rgba(245, 158, 11, 0.75),
            0 0 64px rgba(245, 158, 11, 0.3),
            0 0 90px rgba(234, 88, 12, 0.15);
    }
}
