.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b48b65; /* Cor do fundo */
    color: var(--text-color);
    text-align: center;
    padding: 20px 5%;
    width: 100%;
}

/* Logo */

.footer-description-alls{
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.footer-description {
    font-size: 12px;
    text-decoration: none;
    
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-description a{
    text-decoration: none;
    color: var(--text-color);
    margin-left: -7px;
}

/* Texto */

.footer-description2 {
    font-size: 12px;
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
    
}

/* Ícones sociais */
.footer-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-links a {
    background-color: white;
    color: #b48b65;
    padding: 8px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}


/* 🔽 Ajustes para telas menores que 480px */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
    }

    .footer-description-alls{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        justify-content: center;
        gap: 5px;
    }
    
    .footer .footer-description, .footer-description2 {
        justify-content: center;
        font-size: 10px;
    }

}
