/* ALGUNS ITENS PODEM ESTAR DUPLICADO COM O STYLES.CSS MAS TIVE QUE CRIAR ESSE FILE DPS PRA PODER AJEITAR O
HEADER, TOMAR CUIDADO NA HORA DE ALTERAR E O NAVEGADOR COMEÇAR A INTERPRETAR ALGUMA LINHA Q TA EM OUTRO ARQUIVO */

.navbar-custom {
    background-color: rgba(33, 33, 33, 0.9);
    width: 60%;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 auto;
    position: fixed; 
    top: 20px; 
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: bold;
    color: #00c853 !important;
}

.navbar-custom .navbar-nav .nav-link {
    color: #ffffff;
    margin: 0 10px;
    position: relative;
    padding-bottom: 5px;
}

.navbar-custom .navbar-nav .nav-link.active,
.navbar-custom .navbar-nav .nav-link:hover {
    color: #00c853;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00c853;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Acho que esse método deu errado, o gradiente certo ficou no additional.css, tem que remover e fazer teste depois */
.navbar-gradient {
    height: 3px;
    background: linear-gradient(to right, #00c853, #fdfffe, #8e24aa);
    border-radius: 0 0 50px 50px;
    margin-top: -3px;
}

/* Toggler responsividade */
.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body {
    padding-top: 0;
}

@media (max-width: 768px) {
    .navbar-custom {
        width: 90%; 
        border-radius: 30px;
        margin: 10px auto;
    }
    
    .navbar-custom .navbar-collapse {
        background-color: rgba(33, 33, 33, 0.95);
        border-radius: 20px;
        padding: 10px;
        margin-top: 10px;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        text-align: center;
        margin: 5px 0;
    }
}
