/* ================================================ */
/* ARQUIVO DE CORREÇÃO (GEMINI) - VAI GANHAR DO CACHE */
/* ================================================ */

/* Estilo que SÓ se aplica ao BODY "home" (Desktop) */
body.home #logo-container-home {
    position: absolute !important; 
    top: 20px !important;     /* <-- AJUSTE A ALTURA DO DESKTOP AQUI */
    left: 20px !important;    
    z-index: 999 !important;    
    margin: 0 !important;
    width: auto !important;
}

/* Regras Mobile SÓ para o body "home" */
@media (max-width: 767px) { 
    
    body.home #logo-container-home {
         top: 15px !important;     /* <-- AJUSTE A ALTURA DO CELULAR AQUI (ex: 15px) */
         left: 10px !important;
    }

    /* Regra que MATA o text-align: center do custom.css */
    body.home .logo-interno {
         text-align: left !important; 
    }

    body.home #logo-container-home .logo-interno img {
        max-width: 150px; 
    }
}