/*
 * style_Footer.css - Estilos exclusivos para o footer
 * GaragemGMC 2026
 */

/* ============================================
   FOOTER PRINCIPAL
   ============================================ */
.main-footer {
    text-align: center;
    padding: 20px;
    color: #444;
    font-size: 0.7em;
    margin-top: auto;
    border-top: 1px solid #111;
    background: #0a0a0a;
}

.main-footer span {
    margin: 0 5px;
}

.main-footer .footer-dev {
    color: #333;
}

/* Footer em páginas de autenticação (login, register, etc) */
body.login-body .main-footer,
body.register-body .main-footer,
body.esqueci-body .main-footer,
body.redefinir-body .main-footer {
    background: transparent !important;
    border-top: 1px solid rgba(148, 110, 16, 0.3) !important;
    color: #946e10 !important;
}

body.login-body .main-footer span,
body.register-body .main-footer span,
body.esqueci-body .main-footer span,
body.redefinir-body .main-footer span {
    color: #946e10 !important;
}

body.login-body .main-footer .footer-dev,
body.register-body .main-footer .footer-dev,
body.esqueci-body .main-footer .footer-dev,
body.redefinir-body .main-footer .footer-dev {
    color: #b8831a !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-footer {
        padding: 15px;
        font-size: 0.6em;
    }
}