/* FOOTER */
.footer {
    background-color: #f8f9fa;
    color: #4a4a4a;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    margin-top: 80px;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUNAS */
.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2e2e2e;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
}

/* LOGO */
.footer-logo {
    height: 50px;
    margin-bottom: 16px;
}

/* LINKS */
.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #6b6b6b;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #c9a86a;
}

/* SOCIAL */
.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 14px;
    text-decoration: none;
    color: #6b6b6b;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: rgba(201, 168, 106, 0.12);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: rgba(201, 168, 106, 0.25);
    color: #2e2e2e;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #7a7a7a;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}