/* Variáveis CSS */
:root {
    --bg-color:#0e4826;
    --bg-darker: #050505;
    --gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
    --green: #00ff41;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilitários */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section { padding: 80px 0; }
.bg-darker { background-color: var(--bg-darker); }

/* Glassmorphism Class */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Botões */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-left: 10px;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }

/* Wrapper para Desktop */
.nav-wrapper { display: flex; align-items: center; gap: 30px; }

.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.mobile-menu-icon { display: none; font-size: 1.8rem; cursor: pointer; z-index: 1001; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 40px; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding: 20px 40px;
    margin-bottom: 40px;
    width: fit-content;
}

.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; }

/* Sobre */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.divider { width: 60px; height: 4px; background: var(--gold); margin: 0 auto; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { margin-bottom: 10px; font-size: 1.1rem; }
.feature-list i { margin-right: 10px; }

.about-card { padding: 40px; text-align: center; transition: transform 0.3s; }
.about-card:hover { transform: translateY(-10px); }
.icon-large { font-size: 3rem; margin-bottom: 20px; }

/* Tokenomics */
.tokenomics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.token-card { padding: 30px; }
.token-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.token-table td { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.text-right { text-align: right; font-weight: 600; }

.token-distribution { padding: 30px; }
.chart-bar { margin-bottom: 20px; }
.bar-fill { height: 8px; border-radius: 4px; margin-bottom: 5px; }

/* Ecossistema Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { padding: 30px; text-align: center; transition: 0.3s; }
.card:hover { border-color: var(--gold); }
.card i { font-size: 2.5rem; margin-bottom: 20px; }

.wallets-wrapper { text-align: center; margin-top: 60px; }
.wallet-icons { display: flex; justify-content: center; gap: 40px; margin-top: 20px; flex-wrap: wrap; }
.wallet-item { font-size: 1.2rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }

/* Newsletter */
.newsletter-box { text-align: center; padding: 60px; max-width: 800px; margin: 0 auto; }
.newsletter-form { margin-top: 30px; display: flex; gap: 10px; justify-content: center; }
.newsletter-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #333;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 300px;
    outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }

.alert { padding: 10px; margin-bottom: 20px; border-radius: 5px; }
.alert.success { background: rgba(0, 255, 65, 0.2); color: var(--green); border: 1px solid var(--green); }
.alert.error { background: rgba(255, 0, 0, 0.2); color: #ff4444; border: 1px solid #ff4444; }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; margin-top: 40px; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--text-main); font-size: 1.5rem; transition: 0.3s; }
.social-links a:hover { color: var(--gold); transform: scale(1.1); }
.copyright { color: var(--text-muted); font-size: 0.9rem; }

/* Animações */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsividade */
@media (max-width: 768px) {
    /* Menu Mobile Fullscreen */
    .mobile-menu-icon { display: block; }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-links a { font-size: 1.5rem; }
    
    /* Ajustes Gerais de Layout */
    .section { padding: 60px 0; }
    .hero {
        padding-top: 140px;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
    }

    .hero-content { text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin: 0 auto 40px auto; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-outline { margin-left: 0; }
    
    .about-grid, .tokenomics-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { width: 100%; }
    .hero-stats { flex-direction: column; gap: 20px; width: 100%; margin: 0 auto 40px auto; }
    .wallet-icons { gap: 20px; }
}
