/* ========================================
   FOOTER COMPLETO - ESTILO DUX
   ======================================== */

/* FOOTER Container */
.footer {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0;
    position: relative;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Barra Gradiente Colorida */
.footer-gradient-bar {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        #fffc00 0%, 
        #ff8800 15%, 
        #e13aae 35%, 
        #9747ff 55%, 
        #0006d1 75%, 
        #00d4ff 90%, 
        #00ff88 100%
    );
}

/* Seção da Missão */
.footer-mission-section {
    padding: 60px 0 40px;
    background-color: #1a1a1a;
}

.footer-mission {
    font-family: 'DUX-Core', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    max-width: 900px;
}

@media (max-width: 768px) {
    .footer-mission {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* Footer Grid (Colunas) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'DUX-Core', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: none;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    font-family: 'DUX-Core', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
}

/* Formas de Pagamento */
.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-payment-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-payment-icons img:hover {
    opacity: 1;
}

/* Footer Bottom (Redes Sociais + Badges) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Social Media */
.social-media {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 18px;
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: 24px;
    align-items: center;
}

@media (max-width: 768px) {
    .security-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DUX-Core', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.badge-item i {
    font-size: 16px;
    color: #4ade80;
}

/* Copyright */
.copyright {
    text-align: center;
    font-family: 'DUX-Core', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding-bottom: 40px;
}

.copyright p {
    margin: 4px 0;
}

.cnpj {
    margin-top: 8px;
}
