/* =========================================================
 *  Virtual 360 Zone - Footer
 * ========================================================= */

.vrl-footer {
    background: var(--navy, #080c1e);
    color: var(--text-secondary, #a4adc4);
    padding: 64px 0 32px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-top: 1px solid rgba(58, 123, 213, 0.12);
    margin-top: 80px;
}

.vrl-footer * {
    box-sizing: border-box;
}

.vrl-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.vrl-footer__brand-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 560px;
}

.vrl-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary, #eef0f8);
    font-weight: 500;
    font-size: 16px;
}

.vrl-footer__brand-mark {
    width: 32px;
    height: 32px;
    background: var(--blue, #3a7bd5);
    border-radius: 7px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
}

.vrl-footer__tagline {
    margin: 8px 0 0;
    color: var(--text-primary, #eef0f8);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.vrl-footer__tagline-sub {
    margin: 0;
    color: var(--text-muted, #5e6a84);
    font-size: 14px;
    line-height: 1.6;
}

.vrl-footer__pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.vrl-footer__col-title {
    color: var(--blue-light, #5a9bf6);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vrl-footer__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.vrl-footer__col-link {
    color: var(--text-secondary, #a4adc4);
    font-size: 13px;
    text-decoration: none;
    transition: color 160ms ease, padding-left 160ms ease;
}

.vrl-footer__col-link:hover {
    color: var(--text-primary, #eef0f8);
    padding-left: 4px;
}

.vrl-footer__divider {
    height: 1px;
    background: rgba(164, 173, 196, 0.1);
}

.vrl-footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.vrl-footer__company-name {
    color: var(--text-primary, #eef0f8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.vrl-footer__company-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted, #5e6a84);
    font-size: 12px;
    flex-wrap: wrap;
}

.vrl-footer__company-link {
    color: var(--text-muted, #5e6a84);
    text-decoration: none;
    transition: color 160ms ease;
}

.vrl-footer__company-link:hover {
    color: var(--blue-light, #5a9bf6);
}

.vrl-footer__socials {
    display: flex;
    gap: 10px;
}

.vrl-footer__social {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(164, 173, 196, 0.18);
    border-radius: 10px;
    background: rgba(13, 18, 41, 0.6);
    color: var(--text-secondary, #a4adc4);
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.vrl-footer__social:hover {
    border-color: var(--blue, #3a7bd5);
    color: #ffffff;
    background: rgba(58, 123, 213, 0.18);
    transform: translateY(-2px);
}

.vrl-footer__social svg {
    width: 20px;
    height: 20px;
    display: block;
}

.vrl-footer__copy {
    color: var(--text-muted, #5e6a84);
    font-size: 12px;
    text-align: center;
    padding-top: 8px;
}

@media (max-width: 1024px) {
    .vrl-footer {
        padding: 48px 0 24px;
    }
    .vrl-footer__tagline {
        font-size: 16px;
    }
    .vrl-footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
 *  Logo do footer (GIF oficial)
 * ========================================================= */
.vrl-footer__logo-img {
    display: block;
    height: 64px;
    width: auto;
    max-width: 280px;
}
