@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;900&display=swap');

:root {
    --bg-dark: #0a0d14;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.07);
    --primary-green: #00cc66;
    --primary-green-glow: rgba(0, 204, 102, 0.25);
    --accent-gold: #ffd700;
    --accent-gold-glow: rgba(255, 215, 0, 0.25);
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --gray-dark: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 204, 102, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 40%),
        linear-gradient(180deg, #0a0d14 0%, #05070a 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de linhas de estádio no fundo */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Menu de Navegação (Glassmorphism) */
nav {
    background: rgba(10, 13, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 204, 102, 0.35));
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-img {
    transform: scale(1.12) rotate(6deg);
    filter: drop-shadow(0 0 12px rgba(0, 204, 102, 0.75));
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--primary-green);
    transform: translateY(-1px);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00994d 100%);
    color: #05070b;
    padding: 16px 36px;
    border-radius: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 204, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 204, 102, 0.35);
    background: linear-gradient(135deg, #00ff7f 0%, var(--primary-green) 100%);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ccac00 100%);
    color: #05070b;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffe552 0%, var(--accent-gold) 100%);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 5% 80px 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 40%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px auto;
    font-weight: 300;
    line-height: 1.7;
}

/* Funcionalidades (Marketing) */
.features {
    padding: 80px 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.features h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 48px 32px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 204, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0, 204, 102, 0.08);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px var(--primary-green-glow));
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Páginas Legais (Termos, Privacidade, Join) */
.page-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.page-container h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 40%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-container h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.page-container p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #05070a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    padding: 60px 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

footer p {
    font-weight: 300;
    font-size: 0.9rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s;
    font-weight: 400;
}

footer a:hover {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .page-container {
        padding: 40px 24px;
        margin: 30px 16px;
    }
}