/* Modern White Footer Styles - Refined v6 (Final Vertical/Mobile Balance) */
.footer-section {
    background-color: #ffffff;
    color: #111923;
    padding: 90px 0 0 0; /* Aumentado para o menu não parecer "subido" no desktop */
    font-family: 'Open Sans', sans-serif;
    border-top: 1px solid #f1f1f1;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background-color: transparent;
    color: #B1A276;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #B1A276;
    font-size: 1rem;
}

.footer-social-link:hover {
    background-color: #B1A276;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(177, 162, 118, 0.3);
}

.footer-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333333;
    margin-bottom: 20px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 10px;
}

.footer-nav-link {
    color: #6c757d;
    text-decoration: none !important;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.footer-nav-link:hover {
    color: #B1A276;
    padding-left: 5px;
}

.footer-newsletter-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 18px;
}

.footer-newsletter-form {
    display: flex;
    background-color: transparent;
    border: none;
    padding: 0;
}

.footer-newsletter-input {
    background: transparent;
    border: 2px solid #B1A276;
    border-right: none;
    border-radius: 20px 0 0 20px;
    flex: 1;
    padding: 8px 15px;
    color: #333;
    font-size: 0.8rem;
    outline: none !important;
}

.footer-newsletter-input::placeholder {
    color: #a0a0a0;
}

.footer-newsletter-btn {
    background-color: #B1A276;
    color: white;
    border: 2px solid #B1A276;
    padding: 0 20px;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 0 20px 20px 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-newsletter-btn:hover {
    background-color: #8f825e;
    border-color: #8f825e;
}

.footer-copyright-row {
    margin-top: 60px; /* Mais espaço no desktop para respirar */
    padding-top: 20px;
    padding-bottom: 30px;
    border-top: 1px solid #f1f1f1;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #777777;
    margin: 0;
}

.footer-copyright a {
    color: #111923;
    text-decoration: none;
    font-weight: 600;
}

.footer-partner-logo {
    max-height: 18px;
    opacity: 0.5;
    filter: grayscale(1);
}

/* Responsividade e Equilíbrio Mobile Centralizado */
@media (max-width: 991px) {
    .footer-section {
        padding: 25px 0 0 0;
        text-align: center !important;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
    
    .footer-social-links {
        justify-content: center !important;
        margin-top: 0.5rem !important;
    }
    
    .footer-heading {
        margin-top: 10px;
        margin-bottom: 8px;
    }
    
    .footer-nav-item {
        margin-bottom: 4px; /* Ainda mais compacto no mobile */
    }
    
    .footer-newsletter-text {
        margin-bottom: 10px;
    }
    
    .footer-newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Eliminação de vácuos no mobile SEM sacrificar o desktop */
    .footer-copyright-row {
        margin-top: 5px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    
    /* Reduzir margens das colunas estruturais */
    .footer-section .mb-4 {
        margin-bottom: 0.5rem !important;
    }
    
    /* Copyright text margin bottom reduction */
    .footer-copyright-row .mb-3 {
        margin-bottom: 0.25rem !important;
    }
}
