/* Rodapé institucional Van-Tagem. Mantém o mesmo visual da home sem importar estilos globais da home. */
.vt-footer,
.vt-footer * {
    box-sizing: border-box;
}

.vt-footer {
    position: relative;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 176, 0, 0.035), transparent 34%),
        linear-gradient(180deg, #04101e 0%, #020a15 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vt-footer::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: min(1110px, calc(100% - 32px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.72), transparent);
}

.vt-footer__glow {
    position: absolute;
    z-index: -2;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(80px);
}

.vt-footer__glow--left {
    bottom: -210px;
    left: -100px;
    background: rgba(27, 103, 171, 0.12);
}

.vt-footer__glow--right {
    top: -210px;
    right: 7%;
    background: rgba(255, 176, 0, 0.11);
}

.vt-footer__container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 576px) {
    .vt-footer__container { max-width: 540px; }
}

@media (min-width: 768px) {
    .vt-footer__container { max-width: 720px; }
}

@media (min-width: 992px) {
    .vt-footer__container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .vt-footer__container { max-width: 1140px; }
}

@media (min-width: 1400px) {
    .vt-footer__container { max-width: 1320px; }
}

.vt-footer__content {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(135px, 0.68fr) minmax(170px, 0.84fr) minmax(235px, 1.08fr);
    gap: clamp(28px, 4.5vw, 64px);
    padding: 48px 0 38px;
    align-items: start;
}

.vt-footer__brand { min-width: 0; }

.vt-footer__logo {
    display: inline-flex;
    width: 205px;
    max-width: 100%;
    align-items: center;
    text-decoration: none;
}

.vt-footer__logo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 205px !important;
    max-height: 122px !important;
    margin: 0 !important;
    object-fit: contain !important;
}

.vt-footer__brand p {
    max-width: 340px;
    margin: 17px 0 18px;
    color: #91a1b5;
    font-size: 13px;
    line-height: 1.72;
}

.vt-footer__status {
    display: inline-flex;
    min-height: 30px;
    padding: 7px 11px;
    align-items: center;
    gap: 8px;
    color: #c4cfdb;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.vt-footer__status > span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #ffb000;
    box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.12);
}

.vt-footer__column,
.vt-footer__contact {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
}

.vt-footer__title {
    position: relative;
    display: block;
    margin: 4px 0 20px;
    padding-bottom: 11px;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.vt-footer__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #ffb000;
}

.vt-footer__column a {
    display: inline-flex;
    margin: 0 0 11px;
    color: #91a1b5;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.45;
    transition: color 0.18s ease, transform 0.18s ease;
}

.vt-footer__column a:hover,
.vt-footer__column a:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
}

.vt-footer__whatsapp {
    display: grid;
    width: 100%;
    min-height: 72px;
    padding: 13px 14px;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.vt-footer__whatsapp:hover,
.vt-footer__whatsapp:focus-visible {
    color: #ffffff;
    background: rgba(255, 176, 0, 0.065);
    border-color: rgba(255, 176, 0, 0.28);
    transform: translateY(-2px);
}

.vt-footer__whatsapp-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #07111d;
    background: linear-gradient(135deg, #ffb000, #ffc740);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(255, 176, 0, 0.16);
}

.vt-footer__whatsapp-icon svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.vt-footer__whatsapp-text {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.vt-footer__whatsapp-text small {
    overflow: hidden;
    color: #8fa0b4;
    font-size: 9px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-footer__whatsapp-text strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-footer__arrow {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffbf29;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vt-footer__contact-note {
    display: block;
    margin: 10px 2px 0;
    color: #65778d;
    font-size: 9px;
    line-height: 1.45;
}

.vt-footer__bottom {
    display: flex;
    min-height: 58px;
    padding: 18px 0 20px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #64768b;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 10px;
    line-height: 1.5;
}

@media (max-width: 1199.98px) {
    .vt-footer__content {
        grid-template-columns: minmax(250px, 1.3fr) repeat(2, minmax(145px, 0.8fr));
    }

    .vt-footer__contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 185px minmax(230px, 330px) minmax(180px, 1fr);
        align-items: center;
        gap: 20px;
    }

    .vt-footer__contact .vt-footer__title { margin: 0; }
    .vt-footer__contact-note { margin: 0; }
}

@media (max-width: 767.98px) {
    .vt-footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
        padding: 42px 0 32px;
    }

    .vt-footer__brand,
    .vt-footer__contact { grid-column: 1 / -1; }

    .vt-footer__brand p { max-width: 520px; }

    .vt-footer__contact {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }

    .vt-footer__contact .vt-footer__title { margin: 4px 0 20px; }
    .vt-footer__whatsapp { max-width: 360px; }
    .vt-footer__contact-note { margin: 10px 2px 0; }

    .vt-footer__bottom {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 479.98px) {
    .vt-footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 38px;
    }

    .vt-footer__brand,
    .vt-footer__contact { grid-column: auto; }

    .vt-footer__logo { width: 180px; }

    .vt-footer__logo img {
        max-width: 180px !important;
        max-height: 108px !important;
    }

    .vt-footer__brand p { font-size: 12px; }
    .vt-footer__whatsapp { max-width: none; }
}
