/* ========================
   ESTILIZAÇÃO DO NAVBAR
======================== */

.navbar {
    background-color: rgba(20, 30, 50, 0.9);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00a8e8;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00a8e8;
    display: flex;
    align-items: center;
    gap: 12px; /* Espaço adequado entre o ícone e o texto */
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-profession {
    font-size: 0.9rem;
    color: #f8f9fa;
    font-weight: 400;
    margin-top: -3px;
}

/* Ícone ajustado */
.navbar-brand .fas {
    font-size: 1.5rem;
    color: #00a8e8;
}

/* Botão sanduíche (hambúrguer) */
.navbar-toggler {
    border: none;
    background-color: #00a8e8;
    border-radius: 5px;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-color: #f8f9fa;
    border-radius: 2px;
    width: 30px;
    height: 3px;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: #f8f9fa;
    border-radius: 2px;
    width: 30px;
    height: 3px;
    display: block;
    position: absolute;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Links do Navbar */
.nav-link {
    color: #f8f9fa;
    font-weight: 500;
    margin-right: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00a8e8;
}

.navbar-nav .nav-link.active {
    color: #00a8e8;
    font-weight: bold;
    border-bottom: 2px solid #00a8e8;
}

.navbar-collapse {
    background-color: rgba(20, 30, 50, 0.95);
    padding: 15px;
    border-radius: 10px;
}

/* ========================
   RESPONSIVIDADE DO NAVBAR E BOAS-VINDAS
======================== */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px;
    }
    
    .navbar-brand {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .brand-text {
        text-align: left;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-profession {
        font-size: 0.8rem;
        margin-top: 0;
    }
    
    .navbar-brand .fas {
        font-size: 1.3rem;
    }

    .nav-link {
        margin: 5px 0;
        font-size: 0.9rem;
    }
    
    .navbar-collapse {
        padding: 10px;
        margin-top: 10px;
    }

    /* Ajuste do espaçamento entre o card e o texto de boas-vindas */
    #sobre {
        padding-top: 30px;
    }

    .col-md-8 {
        margin-top: 20px;
    }
    
    /* Footer responsivo */
    .footer {
        padding: 30px 15px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
    
    .footer-social .social-icon {
        font-size: 1.3rem;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        gap: 6px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-profession {
        font-size: 0.75rem;
    }
    
    .navbar-brand .fas {
        font-size: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 25px 10px;
    }
    
    .footer-social .social-icon {
        font-size: 1.2rem;
        margin: 0 8px;
    }
}



/* ========================
   ESTILIZAÇÃO DO BODY
======================== */
body {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa;
    background: url('../img/5072612.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/* ========================
   ESTILIZAÇÃO DO FOOTER
======================== */

.footer {
    background: linear-gradient(to right, rgba(20, 30, 50, 0.9), rgba(0, 0, 0, 0.9));
    color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.footer h5 {
    color: #00a8e8;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer a {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00a8e8;
}

/* Redes sociais no Rodapé */
.footer-social {
    margin-top: 20px;
}

.footer-social .social-icon {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #f8f9fa;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #00a8e8;
    transform: scale(1.2);
}
