/* footer.css - Estilos específicos do footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    margin-top: 50px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #1a4d8c, #f39c12);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 14px;
}

.footer-col h4 {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f39c12;
    border-radius: 2px;
}

/* Links rápidos */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a i {
    font-size: 12px;
    color: #f39c12;
}

.footer-links a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

/* Contato */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-contact li i {
    width: 30px;
    height: 30px;
    background: rgba(243, 156, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f39c12;
    font-size: 14px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.footer-contact li:hover i {
    background: #f39c12;
    color: #ffffff;
    transform: scale(1.1);
}

/* Redes sociais */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icon span {
    font-size: 14px;
    font-weight: 500;
}

.social-icon:hover {
    background: #f39c12;
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #f39c12;
}

.social-icon:hover i {
    background: #ffffff;
    color: #f39c12;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
    margin: 0;
}

.slogan {
    color: #f39c12 !important;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
        align-items: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icon {
        justify-content: center;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo img {
        max-width: 160px;
        height: auto;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact li i {
        margin-bottom: 5px;
    }
    
    .social-icon {
        width: 100%;
        justify-content: center;
    }
}