/* ===================================================================
   CORREÇÃO DO TAMANHO DA LOGO DO FOOTER
   Data: 2025-12-29

   A logo do footer estava muito pequena tanto em desktop quanto mobile.
   Este arquivo aumenta o tamanho da logo para melhor visualização.
   =================================================================== */

/* Aumentar logo do footer em DESKTOP (todas as telas) */
.footer1-section-area .footer-logoarea img,
.footer2-section-area .footer-logoarea img,
.footer4-section-area .footer-logoarea img {
    width: 280px !important;
    height: 79px !important;
    max-width: 100%;
}

/* Aumentar ainda mais em tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .footer1-section-area .footer-logoarea img,
    .footer2-section-area .footer-logoarea img,
    .footer4-section-area .footer-logoarea img {
        width: 260px !important;
        height: 73px !important;
    }
}

/* Aumentar logo do footer em telas mobile */
@media (max-width: 767px) {
    .footer1-section-area .footer-logoarea img,
    .footer2-section-area .footer-logoarea img,
    .footer4-section-area .footer-logoarea img {
        width: 280px !important;
        height: 79px !important;
        max-width: 90%;
    }
}

/* Ajuste fino para telas muito pequenas */
@media (max-width: 400px) {
    .footer1-section-area .footer-logoarea img,
    .footer2-section-area .footer-logoarea img,
    .footer4-section-area .footer-logoarea img {
        width: 260px !important;
        height: 73px !important;
        max-width: 85%;
    }
}

/* Garantir que a logo tenha margem inferior adequada em mobile */
@media (max-width: 767px) {
    .footer1-section-area .footer-logoarea {
        text-align: center;
        margin-bottom: 16px;
    }
}
