/**
 * header-footer.css - Estilos específicos para o header e footer padrão
 */

/* Header Styles */
.main-header {
    background: #0e167e !important;
    width: 100% !important;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3) !important;
    margin-top: 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 15px 0 !important;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

@media (max-width: 772px) {
    .navbar-brand img {
        max-height: 40px;
    }
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.header-search .form-control {
    border-radius: 20px 0 0 20px;
    border: none;
    box-shadow: none;
}

.header-search .btn {
    border-radius: 0 20px 20px 0;
    background-color: white;
    color: var(--primary-color);
    border: none;
    box-shadow: none;
}

.header-whatsapp {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    margin-left: 0;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.1rem;
}

.header-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.header-whatsapp i {
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Footer Styles */
.footer {
    background-color: #212529;
    color: white;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #adb5bd;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .list-unstyled a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #343a40;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0d6efd;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .main-header {
        padding: 10px 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .navbar-brand span {
        font-size: 1.2rem;
    }
    
    .mobile-categories {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}