/* ==========================================================================
   RODAPÉ - CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
:root {
    --black: #000;
    --white: #fff;
}

.rodape__barra {
    width: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
}

.rodape__container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.rodape__cnpj {
    font-size: 12px;
    font-weight: 800;
    color: var(--black);
    white-space: nowrap;
}

/* ==========================================================================
   RODAPÉ - DESKTOP (Min-width: 1025px)
   (Logo centralizado e CNPJ à direita - 100% preservado)
   ========================================================================== */
@media screen and (min-width: 1025px) {
    .rodape__barra {
        min-height: 92px;
    }

    .rodape__container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 10px 40px;
        justify-content: flex-end; 
    }

    .rodape__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rodape__logo img {
        height: 66px;
        display: block;
    }
}

/* ==========================================================================
   RODAPÉ - MOBILE E TABLET (Max-width: 1024px)
   (CNPJ Esquerda | Logo Direita | Compacto)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .rodape__barra {
        min-height: 60px !important; /* Reduzido drasticamente a altura */
        padding: 10px 0 !important;
    }

    .rodape__container {
        padding: 0 20px !important;
        flex-direction: row !important; /* Garante que fiquem lado a lado */
        justify-content: space-between !important; /* CNPJ na ponta esquerda, Logo na direita */
        align-items: center !important;
    }

    .rodape__cnpj {
        text-align: left !important;
        font-size: 10px !important; /* Texto menor para caber em telas pequenas */
        width: auto !important;
    }

    .rodape__logo {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        width: auto !important;
        display: flex !important;
        justify-content: flex-end !important;
    }

    .rodape__logo img {
        height: 25px !important; /* Logo bem pequena e discreta no mobile */
        width: auto !important;
    }
}