@charset "UTF-8";

.footer {
    background: linear-gradient(180deg, #0a2a66, #071f4a);
    color: #eaeaea;
    padding-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* COLUNAS */
.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cfd6e6;
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* BRAND */
.footer-brand img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: .95rem;
    line-height: 1.6;
    color: #d6dcee;
}

/* CONTATO */
.footer-contact li {
    font-size: .95rem;
    color: #d6dcee;
}

/* REDES */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background-color .3s ease;
}

.footer-social img {
    width: 20px;
}

.footer-social a:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.18);
}

/* BARRA FINAL */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
    font-size: .9rem;
    color: #cbd3e6;
}

@media (max-width: 600px) {
    .footer-brand img {
        width: 130px;
    }

    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
