/* ========================================
   FOOTER - DEVITO ALIMENTOS
   ======================================== */

footer {
    padding: 20px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    background: #142d6c !important;
    border-top: 1px solid #eee !important;
    font-size: 14px !important;
    margin-top: 40px !important;
}

footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.8 !important;
    color: #ffffff !important;
}

footer h3,
footer h4 {
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

footer p {
    margin-bottom: 10px !important;
    line-height: 1.6 !important;
}

/* Grid do Footer */
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

/* Logo no Footer */
footer img {
    max-width: 80px;
    margin: 0 auto;
}

.footer-mascot {
    width: 214px;
    max-width: 214px;
    height: auto;
    margin: 0 auto;
}

/* Responsividade Footer */
@media (max-width: 768px) {
    footer {
        padding: 32px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
