/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212; /* Fundo escuro */
    color: #f4f4f4;
    line-height: 1.6;
}

/* Cores Principais */
:root {
    --primary-color: #33ff3d; /* Rosa/Vermelho vibrante */
    --hover-color: #33ff3d;
    --dark-grey: #1e1e1e;
}

/* Navegação */
header {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Botões */
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--hover-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: 30px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* Seção Hero */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?dance,hiphop') center/cover;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Sobre */
#sobre {
    padding: 80px 50px;
    text-align: center;
}

#sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: var(--dark-grey);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    border-bottom: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #0a0a0a;
    color: #888;
}

/* Estilo do Avatar do Usuário Logado */
.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #2dfa45; /* Aquele verde vibrante que você usou */
    color: #121212;
    border-radius: 50%; /* Deixa redondo */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(45, 250, 69, 0.4);
}   

/* RESPONSIVIDADE (Telas menores que 768px)   */
/* ========================================== */
/* ESTILO DO MENU HAMBÚRGUER (COMPUTADOR)     */
/* ========================================== */
.menu-toggle {
    display: none; /* Fica escondido no PC */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================== */
/* RESPONSIVIDADE (CELULAR - Telas até 768px) */
/* ATENÇÃO: Isso precisa ser a última coisa do arquivo! */
/* ========================================== */
@media (max-width: 768px) {
    /* 1. Faz o botão hambúrguer aparecer */
    .menu-toggle {
        display: flex; 
    }

    /* 2. Ajusta o Header para não espremer o logo */
    nav {
        justify-content: space-between; 
        align-items: center;
        flex-direction: row; 
    }

    /* 3. Esconde a lista de links para abrir só quando clicar */
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 70px; 
        left: 0;
        background-color: #111; 
        padding: 20px 0;
        box-shadow: 0px 10px 15px rgba(0,0,0,0.5);
        z-index: 1000;
        gap: 20px;
    }

    /* 4. A classe que o JavaScript usa para mostrar a lista */
    .nav-links.active {
        display: flex;
    }

    /* 5. Ajustes gerais de texto no celular */
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; padding: 0 15px; }
    #sobre { padding: 50px 20px; }
    .card { width: 100%; }
}