footer{
    display: flex;
    align-items: center;
    padding: 2em 0;
    background-color: white;
}

.footerDiv{
    width: 50%;
}

#logoDiv{
    display: flex;
    justify-content: center;
    border-right: 2px solid black;
}

#logoFooter{
    max-width: 240px;
}

#location{
    padding-left: 3em;
    font-size: 1.2em;
    color: black;
}

#location p{
    line-height: 1.5em;
}

.bottom-nav {
    display: none;
}

#location.dark-mode {
    color: white; /* Cor do texto no dark mode */
}

#logoDiv.dark-mode {
    border-right: 2px solid white; /* Borda branca no modo escuro */
}


@media (max-width: 1200px){
    footer{
        flex-direction: column;
    }
    .footerDiv{
        width: 100%;
        padding-bottom: 1em;
    }
    #logoDiv{
        border-right: none;
    }
    #logoDiv.dark-mode {
        border-right: none; 
    }
    #location{
        padding: 1em 2em;
        border-top: 2px solid black;
        margin-bottom: 65px;
    }
    #location p{
        text-align: center;
    }

    .bottom-nav {
        display: flex;
        justify-content: space-around;
        background-color: #ffffff;
        padding: 10px 0;
        position: fixed;
        margin-bottom: -1px;
        bottom: 0;
        width: 100%;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000; /* Garante que a bottom nav esteja sobre outros elementos */
    }

    .bottom-nav.dark-mode{
        background-color: #000000;
        color: #ffffff;
    }
    
    .bottom-nav .button-footer {
        background-color: transparent; /* Para que os botões se misturem ao fundo */
        background: #E66123;
        -webkit-background-clip: text; /* Para navegadores WebKit */
        -webkit-text-fill-color: transparent; /* Para navegadores WebKit */
        background-clip: text; /* Para outros navegadores */
        color: transparent; /* Para outros navegadores */
        border: none; /* Remove borda do botão */
        cursor: pointer; /* Muda o cursor para pointer */
        font-size: 1em; /* Tamanho da fonte */
    }
    
    .bottom-nav.dark-mode .button-footer {
        -webkit-text-fill-color: white;
    }
    
    .bottom-nav .button-footer div {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100px; /* Defina a largura fixa desejada */
        margin: 0 auto; /* Centraliza a div horizontalmente */
    }
    
    
    .bottom-nav .button-footer span {
        font-size: 0.8em; /* Ajuste o tamanho do texto conforme necessário */
        text-align: center; /* Centraliza o texto */
    }
    

    #bicons {
        font-size: 30px !important;
    }
    
    
}