/* ==================================================
   FOOTER
================================================== */

.footer {
    margin-top: 120px;
    background: #05070d;
    border-top: 1px solid rgba(59, 130, 246, .15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    box-shadow: 0 0 18px #3b82f6;
}

/* ==================================================
   TOPO
================================================== */

.footer-top {
    max-width: 1400px;
    margin: auto;
    padding: 70px 40px;
    
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 50px;
}

/* ==================================================
   MARCA
================================================== */

.footer-brand h2 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.8;
    max-width: 330px;
    margin-bottom: 30px;
}

/* ==================================================
   COLUNAS
================================================== */

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .25s;
}

.footer-column a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

/* ==================================================
   REDES SOCIAIS
================================================== */

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

.footer-social a {
    width: 46px;
    height: 46px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    
    background: #101827;
    color: #fff;
    
    transition: .3s;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(59, 130, 246, .35);
}

/* ==================================================
   SEGURANÇA
================================================== */

.footer-security-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.footer-security-icons img {
    width: 140px;
    padding: 8px;
    
    background: #101827;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    
    transition: .25s;
}

.footer-security-icons img:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 0 18px rgba(59, 130, 246, .25);
}

/* ==================================================
   PAGAMENTOS
================================================== */

.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-payment-icons img {
    width: 68px;
    height: 42px;
    
    object-fit: contain;
    
    padding: 6px;
    
    background: #101827;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    
    transition: .25s;
}

.footer-payment-icons img:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 0 16px rgba(59, 130, 246, .25);
}

/* ==================================================
   MEIO
================================================== */

.footer-middle {
    margin-top: 60px;
    padding: 35px 20px;
    
    text-align: center;
    
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-middle p {
    color: #9ca3af;
    margin: 10px 0;
}

/* ==================================================
   FINAL
================================================== */

.footer-bottom {
    padding: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: .9rem;
}