/* Footer container principal */
footer {
    display: flex;
    flex-direction: column; /* Coloca copyright abaixo dos outros */
    padding: 20px 0 0 0;
    /* background-color: #333; Fundo do footer principal (para footer-left e right) */
    color: #fff;
    margin-top: 20px;
    background-color: #fcfcfc;
}

/* Parte superior do footer: esquerda e direita */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Responsivo */
}

/* Footer Left */
#footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 20px;
}

#logo-footer {
    height: 65px;
    margin-bottom: 10px;
}

#footer-left p {
    color: #ccc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

/* Footer Right */
#footer-rigth {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 5px 20px;
}

#footer-rigth p {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

/* Footer Copyright */
#footer-copyright {
    background-color: rgba(242, 201, 76, 0.2);
    color: #000;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    border-top: 2px solid #f2c94c; /* agora pega toda a largura */
}

/* 📱 Responsivo */
@media (max-width: 768px) {
    #logo-footer {
        height: 45px;
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    #logo-footer {
        height: 35px;
        margin-bottom: 10px;
    }
}