/**
 * FOOTER MODERNO - DESIGN MINIMALISTA E FUNCIONAL
 * Baseado no design da imagem fornecida
 * Cores: Fundo escuro com detalhes em amarelo/dourado
 */

/* ==== FOOTER PRINCIPAL ==== */
.footer-moderno {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* ==== LINHA SUPERIOR AMARELA ==== */
.footer-moderno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f9d39c 0%, #e6b886 50%, #f9d39c 100%);
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* ==== CONTAINER PRINCIPAL ==== */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

/* ==== TÍTULOS DAS SEÇÕES ==== */
.footer-section-title {
    color: #f9d39c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f9d39c;
    border-radius: 1px;
}

/* ==== SEÇÃO 1: INFORMAÇÕES DE CONTATO ==== */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-icon {
    color: #f9d39c;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-text strong {
    color: #ffffff;
    font-weight: 500;
}

/* ==== LINKS DE CONTATO ==== */
.footer-contact-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #f9d39c;
    text-decoration: underline;
}

/* ==== LINKS DE REDES SOCIAIS ==== */
.footer-social-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 4px;
    margin: 0;
}

.footer-social-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.footer-social-link i {
    margin-right: 8px;
    font-size: 16px;
}

.footer-social-link span {
    color: #ffffff;
    font-weight: 500;
}

/* ==== CONTAINER DAS REDES SOCIAIS ==== */
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.footer-social-container .footer-contact-text strong {
    display: block;
    margin-bottom: 5px;
}

/* ==== ESTILOS ESPECÍFICOS POR REDE SOCIAL ==== */
.facebook-link i {
    color: #3b5998;
}

.instagram-link i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.linkedin-link i {
    color: #0077b5;
}

/* ==== LINK WHATSAPP ==== */
.whatsapp-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.whatsapp-link .footer-contact-text {
    color: #ffffff;
    transition: color 0.3s ease;
}

.whatsapp-link i {
    color: #25D366;
    transition: transform 0.3s ease;
    font-size: 18px;
    margin-left: 5px;
}

.whatsapp-link:hover {
    color: #25D366;
    text-decoration: none;
}

.whatsapp-link:hover .footer-contact-text {
    color: #25D366;
}

.whatsapp-link:hover i {
    color: #25D366;
    transform: scale(1.2);
}

/* ==== SEÇÃO 2: LINKS RÁPIDOS ==== */
.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.footer-quick-link:hover {
    color: #f9d39c;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 8px;
}

.footer-quick-link-icon {
    color: #f9d39c;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* ==== SEÇÃO 3: EQUIPE E CERTIFICAÇÃO ==== */
.footer-team-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-team-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-team-detail {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #f9d39c;
    font-size: 13px;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.footer-team-detail:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #e6b886;
    transform: translateX(5px);
}

.footer-team-detail strong {
    color: #f9d39c;
    font-weight: 600;
}

/* ==== BADGE DE CERTIFICAÇÃO ==== */
.footer-certification {
    margin-top: 4px;
}

.footer-cert-badge {
    text-align: left;
    position: relative;
    padding: 0;
    margin-top: 2px;
}

/* ==== ESTILOS PARA IMAGEM DO SELO ==== */
.footer-cert-badge img,
.footer-cert-badge #img_footer_seal {
    max-width: 150px;
    height: auto;
    display: block;
    position: static;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    z-index: 1;
    transition: all 0.3s ease;
}

/* ==== EFEITO HOVER NO SELO (APENAS BRILHO) ==== */
.footer-cert-badge img:hover,
.footer-cert-badge #img_footer_seal:hover {
    filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

/* ==== SOBRESCREVER ESTILOS DO STYLE_0.CSS ==== */
.footer-moderno .footer-cert-badge img,
.footer-moderno .footer-cert-badge #img_footer_seal {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    max-width: 150px;
    display: block;
}

/* ==== LINHA SEPARADORA INFERIOR ==== */
.footer-separator {
    height: 2px;
    background: linear-gradient(90deg, #f9d39c 0%, #e6b886 50%, #f9d39c 100%);
    margin: 0;
    border: none;
}

/* ==== COPYRIGHT ==== */
.footer-copyright {
    background: #1a1a1a;
    padding: 15px 20px;
    text-align: center;
    color: #b0b0b0;
    font-size: 13px;
}

.footer-copyright a {
    color: #f9d39c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #e6b886;
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
    }
    
    .footer-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-quick-link {
        font-size: 13px;
    }
    
    .footer-team-detail {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* ==== AJUSTE PARA JANELA MÉDIA (TABLET) ==== */
@media (min-width: 769px) and (max-width: 1150px) {
    .footer-social-links {
        flex-wrap: nowrap;
        gap: 6px;
    }
    
    .footer-social-link {
        padding: 4px 6px;
        font-size: 13px;
    }
    
    .footer-social-link span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 25px 10px;
        gap: 25px;
    }
    
    .footer-cert-badge {
        margin-top: 10px;
    }
}

/* ==== ANIMAÇÕES SUAVES ==== */
.footer-moderno * {
    transition: all 0.3s ease;
}

/* ==== MELHORIAS DE ACESSIBILIDADE ==== */
.footer-quick-link:focus,
.footer-contact-link:focus {
    outline: none;
    color: #f9d39c;
    text-decoration: underline;
}

/* ==== ESTADOS DE HOVER APRIMORADOS ==== */
.footer-contact-item:hover .footer-contact-icon {
    color: #e6b886;
    transform: scale(1.1);
}

.footer-quick-link:hover .footer-quick-link-icon {
    color: #e6b886;
    transform: scale(1.2);
}
