#rodape {
    background-color: #222222; 
    padding: 25px 0;
    border-top: 1px solid rgba(239, 200, 153, 0.2); 
    width: 100%;
}
.footer-bottom-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom-container p {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Jost', sans-serif;
}
.footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Jost', sans-serif;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: #efc899; 
}
.footer-legal span {
    color: #555555;
    font-size: 0.8rem;
}

@media screen and (max-width: 600px) {
    #rodape { padding: 20px 0; }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
}