/* ==========================================================================
   RODAPÉ - LOGO GRANDE E FONTE PRETA
   ========================================================================== */

.rodape-fixo {
    width: 100% !important;
    /* Aumentado para 90px para acomodar o logo maior com respiro */
    min-height: 90px !important; 
    
    background: #ffffff !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
}

.rodape-container-limpo {
    width: 100% !important;
    max-width: 800px !important; 
    margin: 0 auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 90px !important;
}

/* LOGO CENTRALIZADO E BEM AMPLIADO */
.rodape-logo-centro {
    display: flex !important;
    align-items: center !important;
}

.rodape-logo-centro img {
    height: 55px !important; /* Aumentado para 55px */
    width: auto !important;
}

/* CNPJ COM FONTE PRETA NO CANTO DIREITO */
.rodape-cnpj-extremo {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    
    color: #000000 !important; /* FONTE PRETA */
    background: transparent !important;
    
    font-size: 11px !important;
    font-weight: 800 !important;
    font-family: Arial, sans-serif !important;
    white-space: nowrap !important;
    border: none !important;
}

/* RESPONSIVO MOBILE */
@media screen and (max-width: 1024px) {
    .rodape-fixo {
        min-height: 70px !important;
    }
    .rodape-container-limpo {
        width: 90% !important;
        height: 70px !important;
        justify-content: space-between !important;
    }
    .rodape-logo-centro img {
        height: 40px !important; /* Ajuste para não quebrar no mobile */
    }
    .rodape-cnpj-extremo {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }
}