/* ===================================================================
   HEADER & FOOTER STYLES - SHARE2INSPIRE
   Arquivo CSS compartilhado para harmonização de headers e footers
   em todas as páginas do projeto samuel.rolo
   =================================================================== */

/* ===== HEADER / NAVBAR ===== */

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    z-index: 100;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #BF9A33;
}

.navbar-nav .nav-link.active {
    color: #BF9A33;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #BF9A33;
}

/* ===== FOOTER ===== */

footer {
    background-color: #212529;
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-left p {
    margin: 0;
    color: #BF9A33;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-contact p {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 14px;
}

.footer-contact i {
    color: #BF9A33;
    margin-right: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #BF9A33;
    font-size: 20px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-links a {
    color: #BF9A33;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-right {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
