@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.headerCenter {
    display: flex;
    justify-content: center;
    background-color: transparent;
    z-index: -1;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: black;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    text-align: center;
    z-index: 3;
    transition: 0.5s;
    background-color: #0a0a0a57;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.26);
}

header.rolagem {
    background-color: #0a0a0a57;
    margin-top: 0px;
    opacity: 0;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
  }

.nav-bar {
    display: flex;
    justify-content: center;
    padding: 0.8rem 2.5rem;
    align-items: center;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 50px;
}

.logo img {
    height: 60px;
}

.btnLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;

}

.nav-list ul li a {
    color: #fff;
}

.nav-item {
    margin: 0 30px;
    transition: transform 0.5s;
}

.nav-item:hover{
    transform: scale(1.1);
}

.nav-item-g {
    margin: 0 30px;
    transition: transform 0.5s;
}

.nav-inscreva .nav-link {
    background-color: #031050;
    padding: 8px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
}

.nav-inscreva .nav-link:hover {
    transform: scale(1.01) !important;
}

.nav-item-g:hover{
    transform: scale(1.1);
}

.mobile-menu-icon {
    display: none;
    padding-top: 5px;
}

.nav-link {
    text-decoration: none;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 400;
    cursor:pointer;
}

.container-search{
    border: solid 1px #9A9A9A;
    width: 198px;
    height: 25px;
    background-color: #000;
    border-radius: 10px;
    display: flex;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s;
}

.container-search:hover{
    transform: scale(1.01);
}

.container-search input{
    border: none;
    outline: none;
    font-size: 12px;
    background: transparent;
    border-radius: 10px;
    color: #fff;
    padding: 5px;
}

.container-search button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 4px;
    padding-top: 0px;
}

.container-search button i {
    display: flex;
    justify-content: center;
    color: #9A9A9A;
    font-size: 15px;
}

.mobile-menu {
    height: 0px;
}

.mobile-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.cen{
    display: none;
    justify-content: center;
    padding-bottom: 8px;
}
.mobile-container-search{
    display: none;
    background-color: #121212;
    border-radius: 10px;
    justify-content: center;
    padding: 0px 0px 0px 8px;
    width: 200px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);

}

.mobile-container-search input{
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    border-radius: 10px;
    color: #fff;
    width: 100%;
}

.mobile-container-search button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mobile-container-search button i {
    color: #8b8b8b;
    font-size: 30px;
}

.mobile-search-btn{
    display: none;

}

.redes {
    display: flex;
}

.insta{
    padding-top: 2px;
    display: flex;
    align-items: center;
}

.insta i {
    color: #000000;
    font-size: 30px;
}

.insta button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.5s;
}

.insta button:hover{
    transform: scale(1.1);
}

.tiktok{
    padding-top: 2px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.tiktok i {
    color: #000000;
    font-size: 30px;
}

.tiktok button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.5s;
}

.tiktok button:hover{
    transform: scale(1.1);
}

.foot {
    width: 100%;
    align-items: center;
    background-color: #181818;
}

.foot a {
    color: transparent;
}

.footItens {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 7rem;

}

.social i {
    font-size: 20px;
    margin-right: 30px;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    gap: 20px;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    /* Fundo escuro */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Estilo do spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    /* Contorno claro e opaco */
    border-top: 5px solid #32D53A;
    /* Cor principal */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Texto de carregamento */
#loading p {
    margin-top: 15px;
    font-size: 16px;
    color: #32D53A;
    /* Cor principal */
}

/* Animação de rotação */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Oculta o loading com transição suave */
#loading.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.direitos {
    text-align: center;
    font-size: 14px;
    color: #777;
}

@media screen and (max-width: 768px) {
    .cen{
        display: flex;
    }

    .nav-bar {
        padding: 1rem 1rem 1rem 1rem;
    }

    .container-search {
        display: none;
    }
    .nav-item {
        margin: 0 20px;
    }

    .footItens {
        padding: 1.3rem 1rem;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu.open {
        height: 200px; /* Ajuste conforme necessário */
        background-color: #0a0a0a57;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 4;
        position: absolute;
        margin-top: 370px;
    }

    .mobile-menu.rolagem {
        background-color: #0a0a0a57;
        margin-top: 0px;
        opacity: 0;
    }

    .mobile-menu {
        height: 0; 
        overflow: hidden; /* Esconde o conteúdo */
        transition: height 0.5s ease; /* Transição suave */
    }

    .mobile-menu ul li a {
        color: #fff;  
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        list-style: none;
        align-items: center;
        gap: 20px;
    
    }
    
    .mobile-menu ul li a {
        color: #fff;
    }

    .nav-list{
        display: none;
    }
    .nav-item {
        display: none;
    }

    .direitos {
        font-size: 10px;
    }

    header {
    position: relative;
    z-index: 3;
    transition: 0.5s;
    }

    .headerCenter {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 10;
    }

}