/* 1. VARIÁVEIS DE COR E FONTES */
:root {
    --primary-color: #D4AF37; /* Dourado para destaque */
    --dark-bg: #0a0a0a;         /* Fundo principal (quase preto) */
    --secondary-bg: #121212;  /* Fundo de seções (cinza escuro) */
    --text-color: #EAEAEA;      /* Cor de texto principal */
    --text-muted: #a0a0a0;     /* Cor de texto mais fraca */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* 2. RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 3. CABEÇALHO E NAVEGAÇÃO */
.header {
    background-color: rgba(10, 10, 10, 0.7); /* Reduzi um pouco a opacidade aqui */
    backdrop-filter: blur(10px); /* O efeito blur já está aqui! */
    border-bottom: 1px solid #222;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo img {
    height: 40px; 
    width: auto;
    vertical-align: middle; 
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* 4. BOTÕES (Estilo Base) */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-discord {
    background-color: #5865F2; /* Cor do Discord */
    color: white;
}
.btn-discord:hover {
    background-color: #4a56d1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #111;
}
.btn-primary:hover {
    background-color: #e6c65e;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #111;
    transform: translateY(-3px);
}

/* 5. SEÇÃO HERO (PRINCIPAL) */
.hero {
    min-height: 100vh;
    padding-top: 100px; /* Espaço para o header fixo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* IMAGEM DE FUNDO - Substitua pelo link de uma imagem sua se preferir */
    /* *** AJUSTE AQUI para deixar a imagem de fundo mais visível através do cabeçalho *** */
    background-image: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.85)), /* Reduzi a opacidade do gradiente */
                      url('https://images.unsplash.com/photo-1576186419747-3882d3b2a24c?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    /* Animação de entrada */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
}

.hero .slogan {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.hero .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
}

.cta-buttons a {
    margin: 0 0.5rem;
}

/* 6. SEÇÃO DE ECONOMIA */
.economy {
    background-color: var(--secondary-bg);
    padding: 5rem 0;
    text-align: center;
}

.economy h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
}

.economy .section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-item p {
    color: var(--text-muted);
}

/* 7. RODAPÉ */
.footer {
    background-color: var(--dark-bg);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

/* 8. RESPONSIVO (MOBILE) */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 65px; /* Altura do header */
        right: 0;
        background-color: var(--secondary-bg);
        width: 100%;
        height: calc(100vh - 65px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .slogan {
        font-size: 1.8rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}