/* Estilos para os links no footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

.footer-links p {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
}

.footer-links a {
    color: var(--texto-principal);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.footer-links a:hover {
    color: var(--destaque-principal);
    text-decoration: none;
    border-bottom: 1px solid var(--destaque-principal);
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info, .footer-links, .footer-branding {
        margin: 10px 0;
        width: 100%;
    }
}
