/* Footer Moderno - Reset e Correções */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.footer-wrapper-clear {
    clear: both;
    width: 100%;
    height: 1px;
    overflow: hidden;
    display: block;
}

.modern-footer {
    background-color: #0a0a0a !important; /* Força cor preta */
    color: #e0e0e0;
    padding: 70px 0 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #222;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    float: none !important; /* Remove floats herdados */
    display: block !important;
    clear: both;
    margin: 0 !important;
    text-align: left; /* Reseta alinhamento */
}

/* Reset interno para garantir que estilos globais não quebrem o grid */
.modern-footer *, 
.modern-footer *::before, 
.modern-footer *::after {
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-col {
    width: 100%; /* Garante que ocupe a coluna do grid */
}

.footer-col h4 {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin-top: 0;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #d0a23c; /* Cor da marca */
}

.footer-about p {
    color: #999;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 15px;
    display: block;
    letter-spacing: -0.5px;
    text-decoration: none !important;
}

.footer-logo-text span {
    color: #d0a23c !important;
}

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

.footer-links li {
    margin-bottom: 14px;
    display: block;
}

.footer-links a {
    color: #999 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #444;
    transition: color 0.3s;
    font-size: 18px;
    line-height: 1;
}

.footer-links a:hover {
    color: #fff !important;
    padding-left: 5px;
}

.footer-links a:hover::before {
    color: #d0a23c;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item i {
    color: #d0a23c;
    margin-right: 15px;
    margin-top: 4px;
    font-size: 16px;
    min-width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888 !important;
    text-decoration: none !important;
    transition: all 0.3s;
    border: 1px solid #222;
}

.social-link:hover {
    background-color: #d0a23c;
    color: #000 !important;
    transform: translateY(-3px);
    border-color: #d0a23c;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
    font-size: 13px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.copyright {
    color: #666;
}

.credits a {
    color: #777 !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.credits a:hover {
    color: #d0a23c !important;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-col h4::after {
        width: 50px;
    }
}
