﻿:root {
    --vr-primary: #cf252c;
    --vr-primary-dark: #a51d23;
    --vr-primary-soft: rgba(207, 37, 44, 0.09);
    --vr-dark: #151515;
    --vr-dark-soft: #232323;
    --vr-text: #333333;
    --vr-muted: #666666;
    --vr-border: #e1e1e1;
    --vr-background: #f5f5f5;
    --vr-background-soft: #fafafa;
    --vr-white: #ffffff;
    --vr-whatsapp: #25d366;
    --vr-whatsapp-dark: #1fbd59;
    --vr-container: 1280px;
    --vr-radius: 14px;
    --vr-radius-small: 8px;
    --vr-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    --vr-shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.13);
}

article {
    width: 100% !important;
}

.g-recaptcha {
    transform: scale(1) !important;
}

.mpi-topo {
    display: none !important;
}

.vr-section__header {
    background: transparent !important;
}

#rosso h2, #rosso p {
    color: #fff !important;
}

/* =========================================
   BASE E ISOLAMENTO
========================================= */
html {
    scroll-behavior: smooth;
}

    html.mpi-rules.vr-page-active body {
        overflow-x: hidden;
    }

.vr-page {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: var(--vr-white);
    color: var(--vr-text);
    font-size: 16px;
    line-height: 1.7;
    isolation: isolate;
}

    .vr-page *,
    .vr-page *::before,
    .vr-page *::after {
        box-sizing: border-box;
    }

    .vr-page img {
        display: block;
        max-width: 100%;
    }

    .vr-page a {
        text-decoration: none;
    }

    .vr-page button,
    .vr-page input,
    .vr-page textarea {
        font-family: inherit;
    }

    .vr-page h1,
    .vr-page h2,
    .vr-page h3,
    .vr-page h4,
    .vr-page p,
    .vr-page ul,
    .vr-page ol {
        box-sizing: border-box;
    }

.vr-container {
    width: calc(100% - 48px);
    max-width: var(--vr-container);
    margin-right: auto;
    margin-left: auto;
}

.vr-container--narrow {
    max-width: 900px;
}

/* =========================================
   COMPATIBILIDADE COM HEADER ANTIGO
========================================= */

html.vr-page-active header,
html.vr-page-active .header,
html.vr-page-active .main-header,
html.vr-page-active .header-main,
html.vr-page-active .menu-header,
html.vr-page-active .topo,
html.vr-page-active .top-header {
    position: relative;
    z-index: 1000;
}

    html.vr-page-active header ul ul,
    html.vr-page-active .header ul ul,
    html.vr-page-active .main-header ul ul,
    html.vr-page-active .header-main ul ul,
    html.vr-page-active .menu-header ul ul,
    html.vr-page-active .menu ul ul,
    html.vr-page-active .sub-menu,
    html.vr-page-active .submenu,
    html.vr-page-active .dropdown-menu {
        z-index: 1200 !important;
    }

/* =========================================
   BREADCRUMB
========================================= */

.vr-breadcrumb {
    position: relative;
    z-index: 2;
    padding: 18px 0;
    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);
    background: var(--vr-background-soft);
}

    .vr-breadcrumb ol {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 9px;
        padding: 0;
        margin: 0;
        list-style: none;
        font-size: 14px;
        line-height: 1.4;
    }

    .vr-breadcrumb li {
        display: inline-flex;
        align-items: center;
    }

        .vr-breadcrumb li:not(:last-child)::after {
            margin-left: 9px;
            color: #999999;
            content: "/";
        }

    .vr-breadcrumb a {
        color: var(--vr-primary);
        font-weight: 600;
        transition: color 0.2s ease;
    }

        .vr-breadcrumb a:hover {
            color: var(--vr-primary-dark);
        }

    .vr-breadcrumb li:last-child {
        color: var(--vr-muted);
    }

/* =========================================
   MENU INTERNO
   (a fixação ao rolar é feita via position: sticky
   mais abaixo, em ".vr-anchor-nav")
========================================= */

.vr-anchor-nav {
    position: sticky;
    top: var(--vr-mobile-sticky-top, 0px);
    z-index: 30;
    border-bottom: 1px solid var(--vr-border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.2s ease;
}

    .vr-anchor-nav.is-docked {
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    }

.vr-anchor-nav__scroll {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .vr-anchor-nav__scroll::-webkit-scrollbar {
        display: none;
    }

.vr-anchor-nav a {
    position: relative;
    display: inline-flex;
    min-height: 74px;
    flex: 0 0 auto;
    align-items: center;
    padding: 0;
    color: var(--vr-text);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.2s ease;
}

    .vr-anchor-nav a:not(.vr-anchor-nav__cta)::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 3px;
        background: var(--vr-primary);
        content: "";
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    /*    .vr-anchor-nav a:hover {
        color: var(--vr-primary);
    }*/

    .vr-anchor-nav a:hover::after {
        transform: scaleX(1);
    }

    .vr-anchor-nav a.is-active:not(.vr-anchor-nav__cta) {
        color: var(--vr-primary);
    }

        .vr-anchor-nav a.is-active:not(.vr-anchor-nav__cta)::after {
            transform: scaleX(1);
        }

.vr-anchor-nav .vr-anchor-nav__cta {
    min-height: 30px;
    margin-left: auto;
    padding: 0 24px;
    border-radius: 8px;
    background: var(--vr-primary);
    color: var(--vr-white);
    box-shadow: 0 10px 25px rgba(207, 37, 44, 0.18);
}

    .vr-anchor-nav .vr-anchor-nav__cta:hover {
        background: var(--vr-primary-dark);
        color: var(--vr-white);
    }

/* =========================================
   ELEMENTOS GERAIS
========================================= */

.vr-eyebrow,
.vr-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
    color: var(--vr-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

    .vr-eyebrow::before,
    .vr-section__eyebrow::before {
        width: 34px;
        height: 2px;
        flex: 0 0 34px;
        background: var(--vr-primary);
        content: "";
    }

.vr-section {
    position: relative;
    padding: 92px 0;
}

.vr-section--muted {
    background: var(--vr-background);
}

.vr-section--dark {
    overflow: hidden;
    background: radial-gradient( circle at 12% 12%, rgba(207, 37, 44, 0.18), transparent 28% ), var(--vr-dark);
    color: var(--vr-white);
}

    .vr-section--dark h2,
    .vr-section--dark h3,
    .vr-section--dark h4 {
        color: var(--vr-white);
    }

    .vr-section--dark p {
        color: #d0d0d0;
    }

.vr-section__header {
    max-width: 800px;
    margin: 0 auto 52px;
    text-align: center;
}

    .vr-section__header .vr-section__eyebrow {
        justify-content: center;
    }

    .vr-section__header h2,
    .vr-section__content h2,
    .vr-video-content h2,
    .vr-quote__content h2 {
        margin: 0 0 20px;
        color: var(--vr-dark);
        font-size: clamp(35px, 3.7vw, 52px);
        font-weight: 900;
        letter-spacing: -0.04em;
        line-height: 1.1;
    }

    .vr-section__header p {
        max-width: 720px;
        margin: 0 auto;
        color: var(--vr-muted);
        font-size: 18px;
        line-height: 1.7;
    }

.vr-section__content p {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--vr-muted);
    font-size: 17px;
    line-height: 1.75;
}

.vr-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    align-items: start;
    gap: 68px;
}

.vr-two-columns--reverse {
    grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
}

.vr-check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .vr-check-list li {
        position: relative;
        padding-left: 30px;
        line-height: 1.6;
    }

        .vr-check-list li::before {
            position: absolute;
            top: 1px;
            left: 0;
            color: var(--vr-primary);
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f00c";
        }

.vr-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--vr-primary);
    font-size: 15px;
    font-weight: 900;
    transition: color 0.2s ease, gap 0.2s ease;
}

    .vr-text-link:hover {
        gap: 13px;
        color: var(--vr-primary-dark);
    }

/* =========================================
   BOTÕES
========================================= */

.vr-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 25px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

    .vr-btn:disabled {
        cursor: not-allowed;
        opacity: 0.7;
    }

/*    .vr-btn:hover {
        transform: translateY(-2px);
    }*/

.vr-btn--primary {
    background: var(--vr-primary);
    box-shadow: 0 11px 28px rgba(207, 37, 44, 0.2);
    color: var(--vr-white);
}

    .vr-btn--primary:hover {
        background: var(--vr-primary-dark);
        color: var(--vr-white);
    }

.vr-btn--whatsapp {
    background: var(--vr-whatsapp);
    box-shadow: 0 11px 28px rgba(37, 211, 102, 0.18);
    color: #fff !important;
}

    .vr-btn--whatsapp:hover {
        background: var(--vr-whatsapp-dark);
        color: #fff;
    }

.vr-btn--light {
    background: var(--vr-white);
    color: var(--vr-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

    .vr-btn--light:hover {
        color: var(--vr-primary-dark);
    }

/* =========================================
   HERO
========================================= */

.vr-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: radial-gradient( circle at 88% 20%, rgba(207, 37, 44, 0.14), transparent 27% ), linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

    .vr-hero::before {
        position: absolute;
        right: -260px;
        bottom: -360px;
        width: 720px;
        height: 720px;
        border: 90px solid rgba(207, 37, 44, 0.035);
        border-radius: 50%;
        content: "";
    }

.vr-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(430px, 0.93fr);
    align-items: center;
    gap: 76px;
}

.vr-hero h1 {
    max-width: 740px;
    margin: 0 0 24px;
    color: var(--vr-dark);
    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1;
}

.vr-hero__lead {
    max-width: 710px;
    margin: 0 0 18px;
    color: var(--vr-text);
    font-size: 22px;
    font-weight: 650;
    line-height: 1.5;
}

.vr-hero__description {
    max-width: 680px;
    margin: 0 0 27px;
    color: var(--vr-muted);
    font-size: 17px;
    line-height: 1.75;
}

.vr-check-list--hero {
    margin-bottom: 32px;
}

.vr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.vr-hero__support {
    max-width: 640px;
    margin: 20px 0 0;
    color: var(--vr-muted);
    font-size: 13px;
    line-height: 1.6;
}

.vr-hero__media {
    position: relative;
    min-width: 0;
}

    .vr-hero__media > a,
    .vr-hero__media > img {
        display: block;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 22px;
        background: var(--vr-white);
        box-shadow: var(--vr-shadow-strong);
    }

    .vr-hero__media img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

.vr-hero__badge {
    position: absolute;
    right: -24px;
    bottom: 34px;
    width: min(250px, 80%);
    padding: 18px 21px;
    border-left: 5px solid var(--vr-primary);
    background: var(--vr-dark);
    box-shadow: var(--vr-shadow);
    color: var(--vr-white);
}

    .vr-hero__badge strong,
    .vr-hero__badge span {
        display: block;
    }

    .vr-hero__badge strong {
        margin-bottom: 2px;
        font-size: 21px;
        line-height: 1.3;
    }

    .vr-hero__badge span {
        color: #cccccc;
        font-size: 13px;
        line-height: 1.45;
    }

/* =========================================
   FAIXA DE CONFIANÇA
========================================= */

.vr-trust {
    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);
    background: var(--vr-white);
}

.vr-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vr-trust__item {
    display: flex;
    min-height: 138px;
    align-items: center;
    gap: 18px;
    padding: 28px 34px;
    border-right: 1px solid var(--vr-border);
}

    .vr-trust__item:first-child {
        border-left: 1px solid var(--vr-border);
    }

.vr-trust__icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 50%;
    background: var(--vr-primary-soft);
    color: var(--vr-primary);
    font-size: 18px;
}

.vr-trust__item div {
    min-width: 0;
}

.vr-trust__item strong,
.vr-trust__item span {
    display: block;
}

.vr-trust__item strong {
    color: var(--vr-dark);
    font-size: 17px;
    line-height: 1.3;
}

.vr-trust__item span {
    margin-top: 4px;
    color: var(--vr-muted);
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================
   CARD DE PRINCIPAIS FUNÇÕES
========================================= */

.vr-info-card {
    width: 100%;
    max-width: 420px;
    justify-self: end;
    padding: 38px;
    border: 1px solid var(--vr-border);
    border-top: 5px solid var(--vr-primary);
    border-radius: var(--vr-radius);
    background: var(--vr-white);
    box-shadow: var(--vr-shadow);
}

.vr-info-card__icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--vr-primary-soft);
    color: var(--vr-primary);
    font-size: 25px;
}

.vr-info-card h3 {
    margin: 0 0 24px;
    color: var(--vr-dark);
    font-size: 27px;
    font-weight: 900;
    line-height: 1.2;
}

.vr-info-card .vr-check-list {
    margin-bottom: 28px;
}

    .vr-info-card .vr-check-list li {
        color: var(--vr-text);
        font-size: 16px;
        line-height: 1.55;
    }

/* =========================================
   COMO FUNCIONA
========================================= */

.vr-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.vr-process__item {
    position: relative;
    min-height: 340px;
    padding: 34px 30px;
    overflow: hidden;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    background: var(--vr-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .vr-process__item:hover {
        transform: translateY(-5px);
        border-color: rgba(207, 37, 44, 0.3);
        box-shadow: var(--vr-shadow);
    }

.vr-process__number {
    position: absolute;
    top: 0;
    right: 15px;
    color: rgba(207, 37, 44, 0.07);
    font-size: 86px;
    font-weight: 900;
    line-height: 1;
}

.vr-process__icon {
    position: relative;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 34px;
    border-radius: 50%;
    background: var(--vr-primary);
    color: var(--vr-white);
    font-size: 21px;
}

.vr-process__item h3 {
    position: relative;
    max-width: 240px;
    margin: 0 0 14px;
    color: var(--vr-dark);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
}

.vr-process__item p {
    position: relative;
    margin: 0;
    color: var(--vr-muted);
    font-size: 16px;
    line-height: 1.65;
}

.vr-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 22px 26px;
    border-left: 5px solid var(--vr-primary);
    background: var(--vr-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}

    .vr-notice i {
        margin-top: 5px;
        color: var(--vr-primary);
        font-size: 18px;
    }

    .vr-notice p {
        margin: 0;
        color: var(--vr-muted);
        line-height: 1.7;
    }

/* =========================================
   CARDS DE APLICAÇÕES
========================================= */

.vr-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vr-card {
    min-height: 285px;
    padding: 34px;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    background: var(--vr-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .vr-card:hover {
        transform: translateY(-6px);
        border-color: rgba(207, 37, 44, 0.35);
        box-shadow: var(--vr-shadow);
    }

.vr-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 27px;
    border-radius: 12px;
    background: var(--vr-primary-soft);
    color: var(--vr-primary);
    font-size: 24px;
}

.vr-card h3 {
    margin: 0 0 13px;
    color: var(--vr-dark);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.3;
}

.vr-card p {
    margin: 0;
    color: var(--vr-muted);
    font-size: 16px;
    line-height: 1.65;
}

/* =========================================
   CTA INTERMEDIÁRIO
========================================= */

.vr-inline-cta {
    padding: 52px 0;
    background: linear-gradient( 135deg, var(--vr-primary), var(--vr-primary-dark) );
    color: var(--vr-white);
}

.vr-inline-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

    .vr-inline-cta__content span {
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .vr-inline-cta__content h2 {
        max-width: 780px;
        margin: 6px 0 0;
        color: var(--vr-white);
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 900;
        letter-spacing: -0.025em;
        line-height: 1.2;
    }

/* =========================================
   VANTAGENS
========================================= */

.vr-feature-panel {
    display: grid;
    gap: 16px;
}

.vr-feature-panel__item {
    padding: 25px 27px;
    border: 1px solid var(--vr-border);
    border-left: 5px solid var(--vr-primary);
    border-radius: 0 var(--vr-radius-small) var(--vr-radius-small) 0;
    background: var(--vr-background-soft);
}

    .vr-feature-panel__item strong,
    .vr-feature-panel__item span {
        display: block;
    }

    .vr-feature-panel__item strong {
        margin-bottom: 6px;
        color: var(--vr-dark);
        font-size: 18px;
        line-height: 1.35;
    }

    .vr-feature-panel__item span {
        color: var(--vr-muted);
        font-size: 15px;
        line-height: 1.6;
    }

/* =========================================
   POR QUE A ROSSO
========================================= */

.vr-reasons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

    .vr-reasons article {
        min-height: 220px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: var(--vr-radius);
        background: rgba(255, 255, 255, 0.055);
        transition: transform 0.25s ease, background 0.25s ease;
    }

        .vr-reasons article:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.08);
        }

    .vr-reasons i {
        margin-bottom: 22px;
        color: var(--vr-primary);
        font-size: 28px;
    }

    .vr-reasons h3 {
        margin: 0 0 11px;
        font-size: 20px;
        font-weight: 900;
        line-height: 1.3;
    }

    .vr-reasons p {
        margin: 0;
        color: #d0d0d0;
        font-size: 14px;
        line-height: 1.65;
    }

/* =========================================
   MODELOS
========================================= */

.vr-model-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.vr-model {
    padding: 29px 22px;
    border: 1px solid var(--vr-border);
    border-radius: 11px;
    background: var(--vr-white);
    text-align: center;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

    .vr-model:hover {
        transform: translateY(-5px);
        border-color: var(--vr-primary);
        box-shadow: var(--vr-shadow);
    }

    .vr-model span,
    .vr-model strong,
    .vr-model small {
        display: block;
    }

    .vr-model span {
        color: var(--vr-muted);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .vr-model strong {
        margin: 5px 0;
        color: var(--vr-primary);
        font-size: 36px;
        font-weight: 900;
        line-height: 1.05;
    }

    .vr-model small {
        color: var(--vr-muted);
        font-size: 13px;
    }

    .vr-model p {
        margin: 16px 0 0;
        color: var(--vr-dark);
        font-size: 15px;
        font-weight: 800;
        line-height: 1.45;
    }

/* =========================================
   TABELA
========================================= */

.vr-table-section {
    padding-top: 92px;
}

.vr-table-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

    .vr-table-section__heading h2 {
        margin: 0;
        color: var(--vr-dark);
        font-size: clamp(32px, 3.3vw, 47px);
        font-weight: 900;
        letter-spacing: -0.035em;
        line-height: 1.15;
    }

.vr-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
}

.vr-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    background: var(--vr-white);
}

    .vr-table th,
    .vr-table td {
        padding: 18px 20px;
        border-bottom: 1px solid var(--vr-border);
        text-align: left;
        white-space: nowrap;
    }

    .vr-table thead th {
        background: var(--vr-dark);
        color: var(--vr-white);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .vr-table tbody th {
        color: var(--vr-primary);
        font-size: 17px;
        font-weight: 900;
    }

    .vr-table tbody td {
        color: var(--vr-text);
        font-size: 15px;
    }

    .vr-table tbody tr:last-child th,
    .vr-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .vr-table tbody tr:hover {
        background: var(--vr-background-soft);
    }

.vr-table-notes {
    margin-top: 20px;
    color: var(--vr-muted);
    font-size: 13px;
    line-height: 1.65;
}

    .vr-table-notes p {
        margin: 6px 0;
    }

/* =========================================
   MATERIAIS E PERSONALIZAÇÕES
========================================= */

.vr-material-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.vr-material {
    position: relative;
    min-height: 300px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    background: var(--vr-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .vr-material:hover {
        transform: translateY(-5px);
        box-shadow: var(--vr-shadow);
    }

.vr-material__number {
    position: absolute;
    top: 17px;
    right: 20px;
    color: rgba(207, 37, 44, 0.1);
    font-size: 62px;
    font-weight: 900;
    line-height: 1;
}

.vr-material h3 {
    position: relative;
    margin: 0 0 22px;
    padding-right: 55px;
    color: var(--vr-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
}

.vr-material ul {
    position: relative;
    display: grid;
    gap: 10px;
    padding-left: 20px;
    margin: 0;
    color: var(--vr-muted);
    font-size: 15px;
    line-height: 1.55;
    list-style: disc;
}

/* =========================================
   GALERIA
========================================= */

.vr-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 17px;
}

.vr-gallery__item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--vr-border);
    border-radius: 12px;
    background: var(--vr-background-soft);
}

.vr-gallery__item--featured {
    grid-row: span 2;
    grid-column: span 2;
}

.vr-gallery__item img {
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
    object-fit: contain;
}

.vr-gallery__item:hover img {
    transform: scale(1.045);
}

.vr-gallery__zoom {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(21, 21, 21, 0.88);
    color: var(--vr-white);
}

/* =========================================
   VÍDEO
========================================= */

.vr-section--video {
    background: radial-gradient( circle at 85% 20%, rgba(207, 37, 44, 0.14), transparent 28% ), var(--vr-dark);
    color: var(--vr-white);
}

.vr-video-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 72px;
}

.vr-video-content h2 {
    color: var(--vr-white);
}

.vr-video-content p {
    color: #cccccc;
    font-size: 17px;
    line-height: 1.7;
}

.vr-video-content .vr-check-list {
    margin-top: 27px;
}

.vr-video {
    position: relative;
    overflow: hidden;
    border-radius: var(--vr-radius);
    background: #000000;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.38);
    aspect-ratio: 16 / 9;
}

    .vr-video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

/* =========================================
   COMO ESCOLHER
========================================= */

.vr-specification-list {
    display: grid;
    gap: 17px;
}

    .vr-specification-list article {
        display: flex;
        align-items: flex-start;
        gap: 21px;
        padding: 27px;
        border: 1px solid var(--vr-border);
        border-radius: 11px;
        background: var(--vr-white);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .vr-specification-list article:hover {
            transform: translateX(4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .vr-specification-list article > span {
            display: grid;
            width: 50px;
            height: 50px;
            flex: 0 0 50px;
            place-items: center;
            border-radius: 50%;
            background: var(--vr-primary);
            color: var(--vr-white);
            font-size: 14px;
            font-weight: 900;
        }

    .vr-specification-list h3 {
        margin: 0 0 6px;
        color: var(--vr-dark);
        font-size: 20px;
        font-weight: 900;
        line-height: 1.3;
    }

    .vr-specification-list p {
        margin: 0;
        color: var(--vr-muted);
        font-size: 15px;
        line-height: 1.65;
    }

/* =========================================
   FAQ
========================================= */

.vr-faq {
    overflow: hidden;
    border: 1px solid var(--vr-border);
    border-radius: var(--vr-radius);
    background: var(--vr-white);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.04);
}

.vr-faq__item {
    border-bottom: 1px solid var(--vr-border);
}

    .vr-faq__item:last-child {
        border-bottom: 0;
    }

.vr-faq__question {
    display: flex;
    width: 100%;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 23px 29px;
    border: 0;
    background: transparent;
    color: var(--vr-dark);
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;
    text-align: left;
    transition: color 0.2s ease, background 0.2s ease;
}

    .vr-faq__question:hover {
        background: var(--vr-background-soft);
        color: var(--vr-primary);
    }

    .vr-faq__question i {
        flex: 0 0 auto;
        color: var(--vr-primary);
        transition: transform 0.25s ease;
    }

.vr-faq__answer {
    display: none;
    padding: 0 29px 25px;
}

    .vr-faq__answer p {
        max-width: 800px;
        margin: 0;
        color: var(--vr-muted);
        line-height: 1.7;
    }

.vr-faq__item.is-open .vr-faq__answer {
    display: block;
    animation: vr-faq-fade 0.2s ease;
}

.vr-faq__item.is-open .vr-faq__question {
    color: var(--vr-primary);
}

    .vr-faq__item.is-open .vr-faq__question i {
        transform: rotate(45deg);
    }

@keyframes vr-faq-fade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ORÇAMENTO
========================================= */

.vr-quote {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: radial-gradient( circle at 5% 10%, rgba(207, 37, 44, 0.18), transparent 28% ), var(--vr-dark);
    color: var(--vr-white);
}

.vr-quote__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.65fr);
    align-items: start;
    gap: 82px;
}

.vr-quote__content h2 {
    color: var(--vr-white);
}

.vr-quote__content > p {
    max-width: 690px;
    color: #cccccc;
    font-size: 18px;
    line-height: 1.75;
}

.vr-quote__tips {
    margin: 32px 0;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.055);
}

    .vr-quote__tips h3 {
        margin: 0 0 18px;
        color: var(--vr-white);
        font-size: 19px;
        font-weight: 900;
    }

.vr-form-card {
    padding: 42px;
    border-radius: var(--vr-radius);
    background: var(--vr-white);
    box-shadow: 0 28px 85px rgba(0, 0, 0, 0.28);
    color: var(--vr-text);
}

    .vr-form-card > h3 {
        margin: 0 0 6px;
        color: var(--vr-dark);
        font-size: 31px;
        font-weight: 900;
        line-height: 1.25;
    }

    .vr-form-card > p {
        margin: 0 0 27px;
        color: var(--vr-muted);
        line-height: 1.6;
    }

.vr-form {
    display: grid;
    gap: 18px;
}

.vr-form__field {
    display: grid;
    gap: 8px;
}

    .vr-form__field label {
        color: var(--vr-dark);
        font-size: 14px;
        font-weight: 900;
    }

        .vr-form__field label span {
            color: var(--vr-primary);
        }

    .vr-form__field input,
    .vr-form__field textarea {
        width: 100%;
        border: 1px solid #cccccc;
        border-radius: 8px;
        background: var(--vr-white);
        color: var(--vr-text);
        font-family: inherit;
        font-size: 15px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .vr-form__field input {
        height: 52px;
        padding: 0 16px;
    }

    .vr-form__field textarea {
        min-height: 145px;
        padding: 14px 16px;
        resize: vertical;
    }

        .vr-form__field input:focus,
        .vr-form__field textarea:focus {
            border-color: var(--vr-primary);
            box-shadow: 0 0 0 3px rgba(207, 37, 44, 0.1);
        }

.vr-form__submit {
    width: 100%;
    margin-top: 6px;
}

.vr-form__privacy {
    margin: 0;
    color: var(--vr-muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.vr-alert {
    margin-bottom: 21px;
    padding: 14px 16px;
    border-radius: 7px;
    font-size: 14px;
    line-height: 1.5;
}

.vr-alert--error {
    border: 1px solid #f1b4b4;
    background: #fff0f0;
    color: #8d1515;
}

.vr-alert--success {
    border: 1px solid #a9dfb9;
    background: #edf9f0;
    color: #216d35;
}

/* =========================================
   PRODUTOS RELACIONADOS
========================================= */

.vr-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}

.vr-related-card {
    overflow: hidden;
    border: 1px solid var(--vr-border);
    border-radius: 11px;
    background: var(--vr-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .vr-related-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--vr-shadow);
    }

.vr-related-card__image {
    display: block;
    overflow: hidden;
    background: var(--vr-background-soft);
    aspect-ratio: 4 / 3;
}

    .vr-related-card__image img {
        width: 100%;
        height: 100%;
        transition: transform 0.4s ease;
        object-fit: contain;
    }

.vr-related-card:hover .vr-related-card__image img {
    transform: scale(1.045);
}

.vr-related-card__content {
    padding: 23px;
}

    .vr-related-card__content > span {
        color: var(--vr-primary);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

.vr-related-card h3 {
    margin: 8px 0 16px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
}

    .vr-related-card h3 a {
        color: var(--vr-dark);
        transition: color 0.2s ease;
    }

        .vr-related-card h3 a:hover {
            color: var(--vr-primary);
        }

/* =========================================
   RESPONSIVO - NOTEBOOK
========================================= */

@media (max-width: 1250px) {
    .vr-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vr-process__item {
        min-height: 285px;
    }

    .vr-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vr-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================
   RESPONSIVO - TABLET
========================================= */

@media (max-width: 1050px) {
    .vr-hero__grid,
    .vr-two-columns,
    .vr-two-columns--reverse,
    .vr-video-grid,
    .vr-quote__grid {
        grid-template-columns: 1fr;
    }

    .vr-hero__grid {
        gap: 52px;
    }

    .vr-hero__media {
        max-width: 700px;
    }

    .vr-two-columns {
        gap: 50px;
    }

    .vr-info-card {
        max-width: none;
        justify-self: stretch;
    }

    .vr-trust__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vr-trust__item:nth-child(2) {
        border-right: 0;
    }

    .vr-card-grid,
    .vr-material-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vr-video-grid {
        gap: 50px;
    }

    .vr-quote__grid {
        gap: 52px;
    }

    .vr-form-card {
        max-width: 720px;
    }
}

/* =========================================
   RESPONSIVO - MOBILE
========================================= */

@media (max-width: 760px) {
    .vr-container {
        width: calc(100% - 30px);
    }

    .vr-breadcrumb {
        padding: 15px 0;
    }

        .vr-breadcrumb ol {
            font-size: 13px;
        }

    .vr-anchor-nav__scroll {
        min-height: 64px;
        gap: 22px;
    }

    .vr-anchor-nav a {
        min-height: 64px;
    }

    .vr-anchor-nav .vr-anchor-nav__cta {
        margin-left: 0;
        padding: 0 18px;
    }

    .vr-hero {
        padding: 60px 0 68px;
    }

        .vr-hero h1 {
            font-size: clamp(40px, 12vw, 59px);
        }

    .vr-hero__lead {
        font-size: 19px;
    }

    .vr-hero__description {
        font-size: 16px;
    }

    .vr-hero__actions {
        display: grid;
    }

        .vr-hero__actions .vr-btn {
            width: 100%;
        }

    .vr-hero__badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .vr-trust__grid {
        grid-template-columns: 1fr;
    }

    .vr-trust__item,
    .vr-trust__item:first-child {
        min-height: 112px;
        border-right: 1px solid var(--vr-border);
        border-bottom: 1px solid var(--vr-border);
        border-left: 1px solid var(--vr-border);
    }

        .vr-trust__item:last-child {
            border-bottom: 0;
        }

    .vr-section {
        padding: 70px 0;
    }

    .vr-section__header {
        margin-bottom: 40px;
        text-align: left;
    }

        .vr-section__header .vr-section__eyebrow {
            justify-content: flex-start;
        }

        .vr-section__header p {
            margin-right: 0;
            margin-left: 0;
        }

        .vr-section__header h2,
        .vr-section__content h2,
        .vr-video-content h2,
        .vr-quote__content h2 {
            font-size: clamp(32px, 9vw, 43px);
        }

    .vr-process,
    .vr-card-grid,
    .vr-model-grid,
    .vr-material-grid,
    .vr-related__grid,
    .vr-reasons {
        grid-template-columns: 1fr;
    }

    .vr-process__item,
    .vr-card,
    .vr-material {
        min-height: auto;
    }

    .vr-inline-cta__content,
    .vr-table-section__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .vr-inline-cta__content {
        display: flex;
    }

    .vr-inline-cta .vr-btn {
        width: 100%;
    }

    .vr-table-section {
        padding-top: 70px;
    }

    .vr-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 195px;
    }

    .vr-gallery__item--featured {
        grid-column: span 2;
    }

    .vr-quote {
        padding: 78px 0;
    }

    .vr-form-card {
        padding: 29px 21px;
    }

    .vr-faq__question {
        padding: 21px;
        font-size: 16px;
    }

    .vr-faq__answer {
        padding: 0 21px 22px;
    }
}

/* =========================================
   RESPONSIVO - MOBILE PEQUENO
========================================= */

@media (max-width: 480px) {
    .vr-hero h1 {
        font-size: 41px;
    }

    .vr-eyebrow,
    .vr-section__eyebrow {
        font-size: 11px;
    }

    .vr-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 255px;
    }

    .vr-gallery__item--featured {
        grid-row: auto;
        grid-column: auto;
    }

    .vr-info-card {
        padding: 29px 23px;
    }

    .vr-process__item,
    .vr-card,
    .vr-material {
        padding: 28px 23px;
    }

    .vr-trust__item {
        padding: 24px 22px;
    }

    .vr-specification-list article {
        gap: 15px;
        padding: 22px 19px;
    }

        .vr-specification-list article > span {
            width: 43px;
            height: 43px;
            flex-basis: 43px;
        }
}

/* =========================================================
   AJUSTES FINAIS - BREADCRUMB, TOPO E MENU INTERNO
   ========================================================= */

/* Evita estouro horizontal sem mexer no scroll vertical da pagina. */
html.vr-page-active,
html.vr-page-active body {
    overflow-x: hidden !important;
}

    /* O topo antigo nao deve aparecer nesta landing page. */
    html.vr-page-active .mpi-topo {
        display: none !important;
    }

    /* Mantem o header normal e acima do conteudo, sem torna-lo fixo. */
    html.vr-page-active header,
    html.vr-page-active .header,
    html.vr-page-active .main-header,
    html.vr-page-active .header-main,
    html.vr-page-active .menu-header {
        position: relative !important;
        top: auto !important;
        z-index: 1000 !important;
    }

        html.vr-page-active header .sub-menu,
        html.vr-page-active header .submenu,
        html.vr-page-active header .dropdown-menu,
        html.vr-page-active header ul ul {
            z-index: 1300 !important;
        }

/* Corrige icones da faixa de confianca. */
.vr-trust__icon {
    position: relative;
    display: flex !important;
    width: 58px;
    height: 58px;
    min-width: 58px;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(207, 37, 44, 0.1);
    color: var(--vr-primary);
    font-size: 19px;
    line-height: 1;
}

    .vr-trust__icon i {
        position: static !important;
        display: block;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        color: inherit;
        font-size: inherit;
        line-height: 1;
        transform: none !important;
    }

/* =========================================================
   BREADCRUMB / MAPA DO SITE
   ========================================================= */

.vr-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 9px;
    row-gap: 8px;
}

/* Remove o separador antigo para impedir // duplicado. */
.vr-breadcrumb li:not(:last-child)::after {
    display: none !important;
    content: none !important;
}

/* Usa somente um separador entre os itens. */
.vr-breadcrumb li + li::before {
    display: inline-block;
    margin-right: 9px;
    color: #999;
    content: "/";
}

/* =========================================================
   MENU INTERNO — FIXO AO ROLAR (position: sticky)
   ========================================================= */

html.vr-page-active .vr-anchor-nav {
    position: sticky;
    top: var(--vr-mobile-sticky-top, 0px);
    right: auto;
    left: auto;
    z-index: 900;
    width: 100%;
    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.2s ease;
}

    html.vr-page-active .vr-anchor-nav.is-docked {
        z-index: 9999;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    }

.vr-anchor-nav__scroll {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

    .vr-anchor-nav__scroll::-webkit-scrollbar {
        display: none;
    }

.vr-anchor-nav .vr-anchor-nav__cta {
    min-height: 50px;
    margin-left: auto;
    padding: 0 25px;
    border-radius: 8px;
    background: var(--vr-whatsapp);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

    .vr-anchor-nav .vr-anchor-nav__cta:hover {
        background: var(--vr-whatsapp-dark);
        color: #fff !important;
    }

.vr-page section[id] {
    scroll-margin-top: 94px;
}

/* Barra visual usada apenas no mobile. */
.vr-anchor-scrollbar {
    display: none;
}

/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 991px) {
    :root {
        --vr-mobile-green: #174f40;
        --vr-mobile-green-dark: #123f34;
        --vr-mobile-green-light: #e9f1ed;
        --vr-mobile-text: #303936;
        --vr-mobile-border: #dce4e0;
        --vr-mobile-anchor-height: 0px;
        --vr-mobile-sticky-top: 0px;
    }

    html {
        scroll-padding-top: calc(var(--vr-mobile-sticky-top, 0px) + var(--vr-mobile-anchor-height, 0px) + 14px);
    }

        html.vr-page-active .mpi-topo {
            display: none !important;
        }

    /* Breadcrumb quebra linha quando nao cabe. */
    .vr-breadcrumb {
        padding: 10px 0;
        overflow: visible;
        background: #f7f8f8;
        border-top: 1px solid #edf0ef;
        border-bottom: 1px solid #e1e6e4;
    }

        .vr-breadcrumb .vr-container {
            width: 100%;
            max-width: 100%;
            padding-right: 12px;
            padding-left: 12px;
        }

        .vr-breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            gap: 7px 0;
            overflow: visible;
            white-space: normal;
        }

        .vr-breadcrumb li {
            display: inline-flex;
            flex: 0 1 auto;
            align-items: center;
            min-width: 0;
            font-size: 11px;
            line-height: 1.2;
        }

            .vr-breadcrumb li + li::before {
                flex: 0 0 auto;
                margin: 0 7px;
                font-size: 11px;
            }

            .vr-breadcrumb a,
            .vr-breadcrumb li[aria-current="page"] {
                display: inline-flex;
                max-width: 100%;
                min-height: 34px;
                align-items: center;
                padding: 7px 11px;
                border: 1px solid #dce4e0;
                border-radius: 999px;
                background: #fff;
                color: var(--vr-mobile-green);
                font-size: 11px;
                font-weight: 700;
                line-height: 1.15;
                white-space: normal;
                overflow-wrap: anywhere;
                box-shadow: 0 2px 7px rgba(20, 55, 45, 0.05);
            }

            .vr-breadcrumb li[aria-current="page"] {
                background: var(--vr-mobile-green);
                border-color: var(--vr-mobile-green);
                color: #fff;
            }

    /* Menu horizontal mobile com respiro dos dois lados. */
    html.vr-page-active .vr-anchor-nav {
        width: 100%;
        max-width: 100%;
        background: #fff;
        border-bottom: 1px solid #dfe5e2;
        box-shadow: 0 5px 14px rgba(14, 43, 35, 0.06);
    }

        html.vr-page-active .vr-anchor-nav.is-docked {
            box-shadow: 0 10px 26px rgba(14, 43, 35, 0.14);
        }

    .vr-anchor-nav .vr-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .vr-anchor-nav__scroll {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 9px 14px 8px; /* espacinho antes de Visao geral */
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

        .vr-anchor-nav__scroll > a {
            position: relative;
            display: inline-flex;
            flex: 0 0 auto;
            min-height: 38px;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0 12px;
            scroll-snap-align: start;
            border: 1px solid var(--vr-mobile-border);
            border-radius: 11px;
            background: #f7f9f8;
            color: var(--vr-mobile-text);
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            box-shadow: none;
        }

            .vr-anchor-nav__scroll > a::before,
            .vr-anchor-nav__scroll > a::after {
                display: none !important;
                content: none !important;
            }

            .vr-anchor-nav__scroll > a.is-active,
            .vr-anchor-nav__scroll > a[aria-current="location"] {
                background: var(--vr-mobile-green-light) !important;
                border-color: #aac1b6 !important;
                color: var(--vr-mobile-green) !important;
                box-shadow: inset 0 -3px 0 var(--vr-mobile-green), 0 3px 8px rgba(23, 79, 64, 0.07) !important;
            }

        .vr-anchor-nav__scroll > .vr-anchor-nav__cta,
        .vr-anchor-nav__scroll > .vr-anchor-nav__cta:hover,
        .vr-anchor-nav__scroll > .vr-anchor-nav__cta:focus-visible,
        .vr-anchor-nav__scroll > .vr-anchor-nav__cta[aria-current] {
            min-height: 38px !important;
            margin-left: 0;
            background: var(--vr-mobile-green) !important;
            border-color: var(--vr-mobile-green) !important;
            color: #fff !important;
            box-shadow: 0 5px 12px rgba(23, 79, 64, 0.17) !important;
        }

    .vr-anchor-scrollbar {
        position: relative;
        display: block;
        width: calc(100% - 28px);
        height: 4px;
        margin: 0 14px 7px;
        overflow: hidden;
        border-radius: 999px;
        background: #dce8e2;
        pointer-events: none;
    }

    .vr-anchor-scrollbar__thumb {
        position: absolute;
        top: 0;
        left: 0;
        width: 30%;
        min-width: 26px;
        height: 100%;
        border-radius: 999px;
        background: var(--vr-mobile-green);
        transform: translate3d(0, 0, 0);
        will-change: width, transform;
    }

    .vr-anchor-scrollbar.is-hidden {
        visibility: hidden;
        opacity: 0;
    }

    .vr-page section[id] {
        scroll-margin-top: calc(var(--vr-mobile-sticky-top, 0px) + var(--vr-mobile-anchor-height, 0px) + 14px);
    }
}

@media (max-width: 575px) {
    .vr-breadcrumb .vr-container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .vr-breadcrumb a,
    .vr-breadcrumb li[aria-current="page"] {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .vr-anchor-nav__scroll {
        padding-right: 12px;
        padding-left: 12px;
    }

    .vr-anchor-scrollbar {
        width: calc(100% - 24px);
        margin-right: 12px;
        margin-left: 12px;
    }
}

.vr-anchor-nav-placeholder {
    width: 100%;
    height: 0;
}

html.vr-page-active .vr-anchor-nav.is-fixed {
    position: fixed !important;
    top: var(--vr-mobile-sticky-top, 0px) !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .vr-breadcrumb {
        padding: 9px 0;
    }

        .vr-breadcrumb .vr-container {
            width: calc(100% - 24px);
            padding: 0;
            margin-right: auto;
            margin-left: auto;
        }

        .vr-breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            column-gap: 0;
            row-gap: 5px;
            width: 100%;
        }

        .vr-breadcrumb li {
            display: inline-flex;
            flex: 0 0 auto;
            max-width: 100%;
            align-items: center;
            font-size: 11px;
            line-height: 1.35;
        }

            .vr-breadcrumb a,
            .vr-breadcrumb li[aria-current="page"] {
                display: inline;
                min-height: 0;
                max-width: none;
                padding: 0;
                border: 0;
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                color: var(--vr-mobile-green);
                font-size: 11px;
                font-weight: 600;
                line-height: 1.35;
                white-space: normal;
                overflow-wrap: normal;
            }

            .vr-breadcrumb li[aria-current="page"] {
                color: #4d5753;
                font-weight: 700;
            }

            .vr-breadcrumb li + li::before {
                margin: 0 7px;
                color: #a1aaa6;
                font-size: 10px;
            }
}

@media (max-width: 991px) {
    .vr-anchor-nav .vr-container {
        overflow: visible;
    }

    .vr-anchor-nav__scroll {
        padding: 8px 12px 5px;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: var(--vr-mobile-green) #dce8e2;
    }

        .vr-anchor-nav__scroll::-webkit-scrollbar {
            display: block;
            height: 6px;
        }

        .vr-anchor-nav__scroll::-webkit-scrollbar-track {
            margin: 0 12px;
            border-radius: 999px;
            background: #dce8e2;
        }

        .vr-anchor-nav__scroll::-webkit-scrollbar-thumb {
            border-radius: 999px;
            background: var(--vr-mobile-green);
        }

        .vr-anchor-nav__scroll > a.is-active,
        .vr-anchor-nav__scroll > a[aria-current="location"] {
            border-color: var(--vr-mobile-border) !important;
            background: #f7f9f8 !important;
            color: var(--vr-mobile-text) !important;
            box-shadow: none !important;
        }

    .vr-anchor-scrollbar {
        display: none !important;
    }
}

.fancybox-container {
    z-index: 999999 !important;
}

.fancybox-slide--image {
    padding: 24px !important;
}

    .fancybox-slide--image .fancybox-content {
        max-width: calc(100vw - 48px) !important;
        max-height: calc(100vh - 48px) !important;
    }

    .fancybox-slide--image .fancybox-image {
        width: auto !important;
        height: auto !important;
        max-width: calc(100vw - 48px) !important;
        max-height: calc(100vh - 48px) !important;
        object-fit: contain !important;
    }

@media (max-width: 760px) {
    .fancybox-slide--image {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px !important;
    }

        .fancybox-slide--image .fancybox-content {
            max-width: calc(100vw - 24px) !important;
            max-height: calc(100dvh - 24px) !important;
            margin: auto !important;
        }

        .fancybox-slide--image .fancybox-image {
            max-width: calc(100vw - 24px) !important;
            max-height: calc(100dvh - 24px) !important;
            object-fit: contain !important;
        }

    .fancybox-button--arrow_left,
    .fancybox-button--arrow_right {
        width: 42px !important;
        height: 42px !important;
    }
}

/* =========================================================
   CORREÇÃO FINAL — MENU FIXO E SCROLL MOBILE
   Colocar no final absoluto do CSS
   ========================================================= */

.vr-anchor-nav-placeholder {
    display: block;
    width: 100%;
    height: 0;
}

/* Classe aplicada pelo JavaScript após rolar 1px */
html.vr-page-active .vr-anchor-nav.is-fixed,
.vr-anchor-nav.is-fixed {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
}

/* Evita que algum pai impeça o fixed ou o scroll */
html.vr-page-active,
html.vr-page-active body,
html.vr-page-active .vr-page {
    overflow-x: clip !important;
}

@media (max-width: 991px) {
    html.vr-page-active .vr-anchor-nav.is-fixed,
    .vr-anchor-nav.is-fixed {
        top: 0 !important;
    }

    .vr-anchor-nav,
    .vr-anchor-nav .vr-container {
        width: 100% !important;
        max-width: 100% !important;
    }

        .vr-anchor-nav .vr-container {
            position: relative !important;
            padding: 0 !important;
            margin: 0 !important;
            overflow: visible !important;
        }

    .vr-anchor-nav__scroll {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 56px !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 8px 12px 7px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
        touch-action: pan-x !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
    }

        .vr-anchor-nav__scroll::-webkit-scrollbar {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
        }

        .vr-anchor-nav__scroll > a {
            flex: 0 0 auto !important;
            width: auto !important;
            min-width: max-content !important;
            max-width: none !important;
            white-space: nowrap !important;
            scroll-snap-align: start;
        }

    /*
     * Barra personalizada sempre visível.
     */
    .vr-anchor-scrollbar,
    .vr-anchor-scrollbar.is-hidden {
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        width: calc(100% - 24px) !important;
        height: 5px !important;
        margin: 0 12px 7px !important;
        overflow: hidden !important;
        border-radius: 999px !important;
        background: #dce8e2 !important;
        opacity: 1 !important;
        pointer-events: none;
    }

    .vr-anchor-scrollbar__thumb {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        display: block !important;
        min-width: 34px !important;
        height: 100% !important;
        border-radius: 999px !important;
        background: #174f40 !important;
    }
}

@media (max-width:991px) {
    .vr-breadcrumb {
        width: 100% !important;
    }

        .vr-breadcrumb a, .vr-breadcrumb li[aria-current="page"] {
            font-size: 10px !important;
        }

        .vr-breadcrumb li + li::before {
            margin: 0 3px;
        }

    .wppButton {
        bottom: 88px !important;
    }
}
