/* FOOTER - PADRÃO PARA TODAS AS PÁGINAS */
footer {
    background-color: #f9fafb;
    color: #333;
    padding: 60px 20px 40px 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1e40af;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: 'Questrial', sans-serif;
}

.footer-section a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
    font-family: 'Questrial', sans-serif;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #1e40af;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f59e0b;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}