/* ========================================
   RESET E ESTILOS BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #FDE253; /* Cor do seu texto */
    background-color: #000; /* Cor de fundo da página */
}

/* ========================================
   HEADER PRINCIPAL E NAVEGAÇÃO DESKTOP
   ======================================== */
.main-header {
    background-image: linear-gradient(135deg, 
        #69176C 8%, 
        #621B81 30%, 
        #4821A1 48%, 
        #5149B4 80%, 
        #E333C6 96%);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px 40px; /* Espaçamento interno */
}

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

/* ========================================
   LOGO E LINK DO LOGO
   ======================================== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    max-height: 50px;
}

/* ========================================
   NAVEGAÇÃO DESKTOP
   ======================================== */
.desktop-nav {
    display: block; /* Visível no desktop */
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 50px; /* Espaçamento entre os links */
}

.nav-list a {
    text-decoration: none;
    color: #FDE253;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Efeito de linha animada no hover */
.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FDE253;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* ========================================
   ELEMENTOS MOBILE (ESCONDIDOS NO DESKTOP)
   ======================================== */
.hamburguer-icon, 
.mobile-nav {
    display: none;
}

/* ========================================
   RESPONSIVIDADE - TELAS PEQUENAS (MOBILE)
   ======================================== */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 20px;
    }

    /* Esconder a navegação de desktop no mobile */
    .desktop-nav {
        display: none;
    }

    /* ========================================
       MENU HAMBÚRGUER PARA MOBILE
       ======================================== */
    .hamburguer-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000; /* Garante que o botão fique acima de tudo */
    }

    .hamburguer-icon .line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #FDE253;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    /* ========================================
       MENU LATERAL PARA MOBILE
       ======================================== */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; /* Inicia fora da tela */
        width: 80%; /* Ocupa 80% da largura da tela */
        height: 40vh;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: -2px 0 5px rgba(0,0,0,0.5);
        transition: right 0.3s ease-in-out;
        padding: 80px 20px 20px;
        z-index: 999;
    }

    .mobile-nav.active {
        right: 0; /* Move o menu para dentro da tela */
    }

    .mobile-nav-list {
        list-style: none;
        text-align: center;
    }

    .mobile-nav-list li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(253, 226, 83, 0.2);
    }
    
    .mobile-nav-list a {
        text-decoration: none;
        color: #FDE253;
        font-size: 1.2rem;
    }
}