/* ===== FOOTER STYLES ===== */
.footer {
    background-color: #1a1a1a;
    color: #ffffff !important;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer * {
    color: #ffffff !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

/* Footer About Section */
.footer-about .footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #ffffff !important;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-about .social-icons {
    display: flex;
    gap: 15px;
}

.footer-about .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-about .social-link.facebook {
    background-color: #1877F2;
}

.footer-about .social-link.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
}

.footer-about .social-link.youtube {
    background-color: #FF0000;
}

.footer-about .social-link.tiktok {
    background-color: #000000;
}

.footer-about .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Footer Links and Services */
.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #ffffff !important;
    transform: translateX(5px);
}

/* Footer Contact Section */
.footer-contact .contact-info {
    margin-bottom: 25px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-item i {
    font-size: 20px;
    color: var(--color-red);
    margin-top: 2px;
    width: 24px;
}

.footer-contact .contact-item strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.footer-contact .contact-item p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.footer-contact .contact-item span {
    color: #999999;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

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

.footer-social-contact .social-contact {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-contact .social-contact.facebook {
    background-color: #1877F2;
}

.footer-social-contact .social-contact.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
}

.footer-social-contact .social-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333333;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ffffff !important;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff !important;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-about {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-about .social-icons {
        justify-content: center;
    }
    
    .footer-social-contact {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

