@font-face {
    font-family: 'Vivo Type';
    src: url('font/VivoTypeLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vivo Type';
    src: url('font/VivoTypeRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vivo Type';
    src: url('font/VivoTypeBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --vivo-purple: #660099;
    --vivo-dark: #370053;
    --vivo-pink: #eb3c7d;
    --vivo-bg: #f1f2f6;
    --vivo-text: #2a2a2a;
    --vivo-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Vivo Type', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--vivo-text);
    background-color: var(--vivo-white);
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.55;
    overflow-x: hidden;
}

/* Container 1346px (margem lateral ~287 em 1920) */
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1346px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

/* ====== HEADER ====== */
.site-header {
    width: 100%;
    height: 64px;
    background-color: var(--vivo-purple);
}

/* ====== HERO LOGOS (sobre a imagem) ====== */
.hero-logos {
    position: absolute;
    top: 1.0417vw;            /* 20/1920 */
    left: 20.5729vw;          /* 395/1920 */
    display: flex;
    align-items: center;
    gap: 0.9375vw;            /* 18/1920 */
    z-index: 3;
}

.hero-logo {
    width: auto;
    object-fit: contain;
}

.hero-logo-check {
    height: 1.5625vw;         /* 30/1920 */
}

.hero-logo-vita {
    height: 1.4583vw;         /* 28/1920 */
}

.hero-separator {
    display: inline-block;
    width: 1px;
    height: 1.4583vw;         /* 28/1920 */
    background-color: rgba(255, 255, 255, 0.55);
}

/* ====== HERO ====== */
.hero {
    position: relative;
    width: 100%;
    background-color: var(--vivo-dark);
    overflow: hidden;
    aspect-ratio: 1920 / 450;
    min-height: 280px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content .hero-container {
    width: 100%;
    height: 100%;
    padding: 0;
    max-width: none;
}

.hero-text-left {
    position: absolute;
    left: 18.2292vw;          /* 350/1920 */
    top: 8.0729vw;            /* 155/1920 */
    width: 20.5208vw;         /* 394/1920 */
}

.hero-text-right {
    position: absolute;
    left: 60.3125vw;          /* 1158/1920 */
    top: 8.0729vw;            /* 155/1920 */
    width: 23.3333vw;         /* 448/1920 */
}

.hero-title {
    color: var(--vivo-white);
    font-weight: 400;
    font-size: 2.8125vw;      /* 54/1920 */
    line-height: 3.4375vw;    /* 66/1920 */
    margin: 0;
    letter-spacing: -0.05625vw; /* -1.08/1920 */
    text-align: right;
}

.hero-tag {
    display: inline-block;
    background-color: #BE4AFC;
    color: var(--vivo-white);
    padding: 0.1em 0.45em;
    border-radius: 999px;
    line-height: 1.05;
    font-weight: 400;
}

.hero-question {
    color: var(--vivo-white);
    font-size: 2.3438vw;      /* 45/1920 */
    font-weight: 400;
    line-height: 2.4479vw;    /* 47/1920 */
    letter-spacing: -0.0469vw; /* -0.9/1920 */
    margin: 0;
    text-align: left;
    max-width: 23.3333vw;
}

.hero-q-accent {
    color: #BE4AFC;
    font-weight: 400;
}


@media (max-width: 991.98px) {
    .hero {
        aspect-ratio: auto;
        min-height: 520px;
        position: relative;
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(55, 0, 83, 0.35) 0%, rgba(55, 0, 83, 0.85) 100%);
        z-index: 1;
    }
    .hero-content {
        position: absolute;
        inset: 0;
        z-index: 2;
        padding: 1.5rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
    }
    .hero-logos {
        position: static;
        margin: 0 auto 1.5rem;
        gap: 14px;
        justify-content: center;
        align-self: center;
    }
    .hero-logo-check {
        height: 26px;
    }
    .hero-logo-vita {
        height: 24px;
    }
    .hero-separator {
        height: 24px;
    }
    .hero-text-left,
    .hero-text-right {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none;
    }
    .hero-text-left {
        margin-top: auto;
        margin-bottom: 1.25rem;
    }
    .hero-text-right {
        margin-bottom: 0;
    }
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
        letter-spacing: -0.5px;
        text-align: left;
    }
    .hero-question {
        font-size: 1.5rem;
        line-height: 1.3;
        letter-spacing: 0;
        max-width: 100%;
    }
    .hero-tag {
        border-radius: 12px;
        padding: 0.05em 0.4em;
    }
}

@media (max-width: 575.98px) {
    .hero {
        min-height: 460px;
    }
    .hero-content {
        padding: 1.25rem 1rem 1.75rem;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-question {
        font-size: 1.2rem;
    }
    .hero-logo-check {
        height: 22px;
    }
    .hero-logo-vita {
        height: 20px;
    }
    .hero-separator {
        height: 20px;
    }
}

/* ====== INTRO SECTION ====== */
.intro-section {
    background-color: var(--vivo-white);
    padding: 3.25rem 0 4rem;
}

.intro-paragraph {
    font-size: 1.125rem;
    line-height: 1.31;
    color: var(--vivo-text);
    margin-bottom: 1.5rem;
}

.intro-paragraph strong {
    color: var(--vivo-purple);
    font-weight: 700;
}

.intro-paragraph.intro-paragraph-alt {
    color: var(--vivo-dark);
}

.intro-paragraph.intro-paragraph-alt strong {
    color: var(--vivo-purple);
}

.risk-block {
    margin-top: 1.5rem;
}

/* ====== INTRO LAYOUT (Grid responsivo) ====== */
.intro-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-paragraphs { order: 1; }
.intro-form-wrap  { order: 2; }
.intro-risk       { order: 3; }

.intro-risk {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.intro-risk .risk-textual    { order: 1; width: 100%; }
.intro-risk .risk-image-wrap { order: 2; }

@media (min-width: 992px) {
    .intro-layout {
        display: grid;
        grid-template-columns: 7fr 5fr;
        grid-template-areas:
            "paragraphs form"
            "risk       form";
        column-gap: 3rem;
        row-gap: 1.5rem;
        align-items: start;
    }
    .intro-paragraphs { grid-area: paragraphs; order: initial; }
    .intro-form-wrap  { grid-area: form;       order: initial; }
    .intro-risk       { grid-area: risk;       order: initial; }

    .intro-risk {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    .intro-risk .risk-image-wrap { order: 1; flex-shrink: 0; }
    .intro-risk .risk-textual    { order: 2; flex: 1; }
}

.risk-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 334px;
}

.risk-image {
    width: 334px;
    height: 285px;
    object-fit: cover;
    border-radius: 14px;
    max-width: 100%;
}

.risk-title {
    color: var(--vivo-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.risk-text {
    font-size: 1.125rem;
    line-height: 1.31;
    margin: 0;
    color: var(--vivo-dark);
}

.risk-text strong {
    color: var(--vivo-purple);
    font-weight: 700;
}

.form-card .privacy-link,
.form-card .form-check-label .privacy-link,
a.privacy-link {
    color: #ffffff !important;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
    background: transparent;
}

.form-card .privacy-link:hover,
.form-card .privacy-link:focus,
.form-card .form-check-label .privacy-link:hover,
.form-card .form-check-label .privacy-link:focus,
a.privacy-link:hover,
a.privacy-link:focus {
    color: #ffffff !important;
    text-decoration: underline;
    opacity: 0.85;
}

/* ====== FORM CARD ====== */
.form-card {
    background-color: #660099;
    border-radius: 27px;
    padding: 24px 32px;
    color: var(--vivo-white);
    width: 100%;
    max-width: 531px;
    margin-left: auto;
}

.form-card-intro {
    color: var(--vivo-white);
    font-size: 17px;
    line-height: 20.5px;
    margin: 0 0 18px;
    font-weight: 400;
}

.form-card .form-label-light {
    color: var(--vivo-white);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 3px;
}

.form-card .form-control {
    background-color: var(--vivo-white);
    border: none;
    border-radius: 5px;
    padding: 0.5rem 0.85rem;
    height: 40px;
    font-size: 0.95rem;
    color: var(--vivo-text);
    width: 100%;
}

.form-card .mb-3 {
    margin-bottom: 5px !important;
}

.form-card .form-helper-light {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.3;
    margin: 0 0 6px;
    font-weight: 400;
}

.form-card .form-control-restricao {
    height: auto;
    min-height: 80px;
    resize: vertical;
    padding: 0.55rem 0.85rem;
    line-height: 1.35;
    font-size: 0.9rem;
}

.form-card .restricao-block {
    margin-top: 8px;
}

.form-card .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(235, 60, 125, 0.35);
    background-color: var(--vivo-white);
}

.form-card .form-control.is-invalid-custom {
    box-shadow: 0 0 0 0.2rem rgba(235, 60, 125, 0.75);
}

.form-card .form-check-light {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
    margin-bottom: 12px !important;
    min-height: auto;
}

.form-card .mb-3:last-of-type + .form-check-light,
.form-card .form-check:first-of-type.form-check-light {
    margin-top: 28px !important;
}

#empresa + .form-check-light,
.form-card form > .mb-3:has(#empresa) + .form-check-light {
    margin-top: 28px !important;
}

/* Garantir gap entre o input Empresa e o primeiro checkbox */
.form-card form .mb-3 + .form-check-light {
    margin-top: 28px !important;
}

.form-card .form-check-light .form-check-input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    flex-shrink: 0;
    background-color: var(--vivo-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    float: none;
}

.form-card .form-check-light .form-check-label {
    color: var(--vivo-white);
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}

.form-card .form-check-light .form-check-input:checked {
    background-color: var(--vivo-pink);
    border-color: var(--vivo-pink);
}

.form-card .form-check-light .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(235, 60, 125, 0.35);
    border-color: var(--vivo-pink);
}

.btn-vivo-dark {
    background-color: var(--vivo-dark);
    color: var(--vivo-white);
    border: none;
    border-radius: 14px;
    padding: 0;
    height: 54px;
    line-height: 54px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-vivo-dark:hover,
.btn-vivo-dark:focus {
    background-color: #2a0040;
    color: var(--vivo-white);
    transform: translateY(-1px);
}

.form-card .btn-reservar {
    display: block;
    width: 290px;
    height: 54px;
    max-width: 100%;
    margin: 12px auto 0;
    background-color: #370053;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--vivo-white);
}

/* ====== WHY SECTION ====== */
.why-section {
    background-color: var(--vivo-purple);
    padding: 2.8rem 0 4rem;
    color: var(--vivo-white);
}

.why-title {
    color: var(--vivo-white);
    text-align: left;
    font-weight: 700;
    font-size: 2.125rem;
    line-height: 1.05;
    margin: 0 auto 2.5rem;
    padding: 0 26px;
    max-width: 1184px;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.why-grid {
    margin: 0 auto 2rem;
    max-width: 1184px;
    --bs-gutter-x: 3.25rem;
    --bs-gutter-y: 1.375rem;
}

.why-card {
    background-color: var(--vivo-bg);
    border-radius: 17px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    min-height: 137px;
    align-items: center;
}

.why-card-icon {
    background-color: var(--vivo-white);
    border-radius: 8px;
    width: 71px;
    height: 73px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Tamanhos exatos por SVG (preservando proporção do viewBox) */
.why-card-icon img[src*="icon-card1"] { width: 45px; height: 39px; }
.why-card-icon img[src*="icon-card2"] { width: 39px; height: 40px; }
.why-card-icon img[src*="icon-card3"] { width: 40px; height: 49px; }
.why-card-icon img[src*="icon-card4"] { width: 40px; height: 38px; }

.why-card-text {
    color: var(--vivo-dark);
    font-size: 1.125rem;
    line-height: 1.11;
    margin: 0;
    font-weight: 400;
}

.why-card-text strong {
    color: var(--vivo-purple);
    font-weight: 700;
}

.why-wide-card {
    position: relative;
    background-image: linear-gradient(89deg, rgba(0, 0, 0, 0) 4%, rgba(55, 0, 83, 1) 66%), url('../img/wide-card-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 17px;
    padding: 3rem 3rem 3rem 50%;
    color: var(--vivo-white);
    margin: 0 auto;
    max-width: 1184px;
    height: 217px;
    display: flex;
    align-items: center;
}

.why-wide-card p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.22;
}

.why-wide-card p strong {
    color: var(--vivo-white);
    font-weight: 700;
}

.btn-white-cta {
    background-color: var(--vivo-white);
    color: var(--vivo-purple);
    font-weight: 700;
    border-radius: 14px;
    padding: 0;
    width: 290px;
    height: 54px;
    line-height: 54px;
    font-size: 1.125rem;
    border: none;
    display: inline-block;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.btn-white-cta:hover,
.btn-white-cta:focus {
    background-color: var(--vivo-bg);
    color: var(--vivo-purple);
    transform: translateY(-1px);
}

/* ====== LOCAL SECTION ====== */
.local-section {
    background-color: #ffffff;
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: visible;
}

.local-section .container,
.local-section .row {
    overflow: visible;
}

.local-col {
    position: relative;
}

.local-image {
    border-radius: 20px;
    width: 100%;
    max-width: 562px;
    height: 389px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.local-card-wrap {
    position: relative;
    width: 395px;
    max-width: 100%;
    margin-left: -24px;
    z-index: 2;
}

.local-card {
    background-color: var(--vivo-pink);
    border-radius: 0 26px 26px 0;
    padding: 28px 28px 28px;
    color: var(--vivo-white);
    position: relative;
    z-index: 2;
    width: 395px;
    max-width: 100%;
    min-height: 238px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.local-card-cta {
    align-self: flex-start;
    display: inline-block;
    margin-top: 6px;
    padding: 9px 22px;
    background-color: var(--vivo-white);
    color: var(--vivo-purple);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.local-card-cta:hover,
.local-card-cta:focus {
    background-color: var(--vivo-purple);
    color: var(--vivo-white);
    transform: translateY(-1px);
}

.local-card-logo {
    position: absolute;
    top: -110px;
    left: 12px;
    display: block;
    width: 132px;
    height: 108px;
    object-fit: contain;
    z-index: 4;
    pointer-events: none;
}

.local-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.local-info-row:last-child {
    margin-bottom: 0;
}

.local-info-icon {
    object-fit: contain;
    flex-shrink: 0;
}

.local-info-row:nth-child(1) .local-info-icon {
    width: 35px;
    height: 46px;
}

.local-info-row:nth-child(2) .local-info-icon {
    width: 39px;
    height: 40px;
}

.local-info-text {
    font-size: 1rem;
    line-height: 1.3;
    color: var(--vivo-white);
}

.local-info-text strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.bone-dengo {
    position: absolute;
    right: -50px;
    top: -125px;
    width: 110px;
    height: auto;
    pointer-events: none;
    z-index: 3;
}

/* ====== EXPERIENCE SECTION ====== */
.experience-section {
    background-color: var(--vivo-white);
    padding: 2rem 0 3.5rem;
}

.experience-text {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto 2.5rem;
}

.experience-text p {
    font-size: 1.125rem;
    line-height: 1.25;
    color: var(--vivo-text);
    margin-bottom: 1rem;
}

.experience-text p strong {
    color: var(--vivo-purple);
    font-weight: 700;
}

.gallery-grid {
    max-width: 1206px;
    margin: 0 auto;
    --bs-gutter-x: 1.8125rem;
}

.gallery-image {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 280 / 231;
}

/* ====== CTA FINAL SECTION ====== */
.cta-final-section {
    background-color: var(--vivo-white);
    padding: 0 0 3.5rem;
}

.cta-final-section .container {
    max-width: 1229px;
}

.cta-image {
    width: 573px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 573 / 352;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.cta-text {
    max-width: 584px;
}

.cta-text p {
    font-size: 1.125rem;
    line-height: 1.25;
    color: var(--vivo-text);
    margin-bottom: 1rem;
}

.cta-text p strong {
    color: var(--vivo-purple);
    font-weight: 700;
}

.cta-final-bottom {
    margin-top: 3.25rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-headline {
    color: var(--vivo-purple);
    font-weight: 700;
    font-size: 1.4375rem;
    line-height: 1.24;
    margin-bottom: 0.625rem;
}

.cta-final-sub {
    font-size: 1.125rem;
    color: var(--vivo-text);
    margin-bottom: 1.5rem;
}

.btn-cta-final {
    display: inline-block;
    width: 332px;
    height: 62px;
    line-height: 62px;
    padding: 0;
    font-size: 1.125rem;
    border-radius: 14px;
}

/* ====== THANKS / OBRIGADO PAGE ====== */
.thanks-section {
    background-color: var(--vivo-white);
    text-align: center;
    padding: 3.5rem 0 1rem;
}

.thanks-heading {
    color: var(--vivo-purple);
    font-size: 2rem;
    line-height: 1.42;
    font-weight: 400;
    max-width: 1072px;
    margin: 0 auto;
}

.thanks-heading strong {
    font-weight: 700;
}

.thanks-save-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 9px 32px;
    border: 1px solid var(--vivo-purple);
    border-radius: 20px;
    background-color: transparent;
    color: var(--vivo-purple);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.thanks-save-btn:hover,
.thanks-save-btn:focus {
    background-color: var(--vivo-purple);
    color: var(--vivo-white);
    transform: translateY(-1px);
}

.thanks-event-section {
    background-color: var(--vivo-white);
    padding: 7rem 0 4rem;
}

.thanks-event-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 931px;
    margin: 0 auto;
}

.thanks-event-image {
    border-radius: 20px;
    width: 494px;
    height: 297px;
    object-fit: cover;
    object-position: 50% 78%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    display: block;
}

.thanks-event-card-wrap {
    position: relative;
    margin-left: -24px;
    width: 437px;
    z-index: 1;
    display: flex;
}

.thanks-event-logo {
    position: absolute;
    top: -120px;
    left: 110px;
    width: 132px;
    height: 108px;
    object-fit: contain;
    pointer-events: none;
    z-index: 3;
}

.thanks-event-card {
    background-color: var(--vivo-pink);
    border-radius: 0 26px 26px 0;
    width: 100%;
    padding: 30px 32px 30px 77px;
    color: var(--vivo-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.thanks-event-card .local-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.thanks-event-card .local-info-icon {
    object-fit: contain;
    flex-shrink: 0;
}

.thanks-event-card .local-info-row:nth-child(1) .local-info-icon {
    width: 35px;
    height: 46px;
}

.thanks-event-card .local-info-row:nth-child(2) .local-info-icon {
    width: 39px;
    height: 40px;
}

.thanks-event-card .local-info-text {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--vivo-white);
}

.thanks-event-card .local-info-text strong {
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-block;
}

.thanks-message-section {
    background-color: var(--vivo-bg);
    padding: 3rem 0 3.5rem;
    text-align: center;
}

.thanks-message-title {
    color: var(--vivo-purple);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    max-width: 1072px;
    margin: 0 auto 1.75rem;
}

.thanks-message-body {
    max-width: 1050px;
    margin: 0 auto;
    color: var(--vivo-text);
    font-size: 1.125rem;
    line-height: 1.25;
}

.thanks-message-body p {
    margin-bottom: 1.25rem;
}

.thanks-message-body p:last-child {
    margin-bottom: 0;
}

.thanks-message-body .thanks-message-highlight {
    color: var(--vivo-purple);
}

/* ====== THANKS RESPONSIVE ====== */
@media (max-width: 991.98px) {
    .thanks-event-section {
        padding: 5rem 0 3rem;
    }
    .thanks-event-wrap {
        max-width: 100%;
        padding: 0 1rem;
    }
    .thanks-event-image {
        width: 42%;
        max-width: 360px;
        height: 280px;
        object-fit: cover;
        object-position: 100% 50%;
    }
    .thanks-event-card-wrap {
        width: 58%;
        margin-left: -24px;
        min-height: 280px;
    }
    .thanks-event-logo {
        left: 24px;
        top: -90px;
        width: 110px;
        height: 90px;
    }
    .thanks-event-card {
        padding: 24px 20px 24px 24px;
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .thanks-section {
        padding: 2.5rem 0 1rem;
    }
    .thanks-heading {
        font-size: 1.375rem;
        line-height: 1.35;
    }
    .thanks-save-btn {
        font-size: 1.125rem;
        padding: 10px 24px;
    }
    .thanks-event-section {
        padding: 6rem 0 2.5rem;
    }
    .thanks-event-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-width: 420px;
        padding: 0 1rem;
        margin: 0 auto;
    }
    .thanks-event-image {
        width: 100%;
        max-width: 100%;
        height: 240px;
        border-radius: 20px;
        align-self: stretch;
        object-fit: cover;
        object-position: 100% 50%;
    }
    .thanks-event-card-wrap {
        width: 100%;
        margin-left: 0;
        margin-top: 80px;
        height: 240px;
    }
    .thanks-event-logo {
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        height: 90px;
    }
    .thanks-event-card {
        padding: 28px 24px;
        gap: 14px;
        border-radius: 26px;
    }
    .thanks-message-section {
        padding: 2.25rem 0 2.5rem;
    }
    .thanks-message-title {
        font-size: 1.375rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    .thanks-message-body {
        font-size: 1rem;
    }
}

/* ====== FOOTER ====== */
.site-footer {
    background-color: var(--vivo-dark);
    height: 111px;
}

.footer-logo {
    height: 49px;
    width: 148px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ====== RESPONSIVE - 4K / WIDE ====== */
@media (min-width: 1920px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1346px;
    }
}

/* ====== RESPONSIVE - NOTEBOOK (992-1399) ====== */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .why-title {
        font-size: 2.1rem;
    }
}


@media (max-width: 991.98px) {
    .form-card {
        position: static;
        margin: 0 auto;
        max-width: 560px;
    }
    .intro-section {
        padding: 2.5rem 0 3rem;
    }
    .intro-row {
        row-gap: 2rem !important;
    }
    .intro-paragraph {
        font-size: 1.0625rem;
        line-height: 1.4;
    }
    .risk-block {
        margin-top: 1.25rem;
    }
    .risk-image-wrap {
        max-width: 100%;
        margin: 0 auto;
    }
    .risk-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 240px;
        object-fit: cover;
    }
    .risk-title {
        font-size: 1.375rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    .risk-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    .why-section {
        padding: 2.5rem 0 3rem;
    }
    .local-section {
        padding: 3.5rem 0 2.5rem;
    }
    .experience-section {
        padding: 1.5rem 0 2.5rem;
    }
    .cta-final-section {
        padding: 2.5rem 0 3rem;
    }
    .why-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 16px;
    }
    .why-grid {
        margin-bottom: 1.75rem;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.25rem;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .why-grid > [class*="col-"] {
        display: flex;
    }
    .why-card {
        min-height: 0;
        padding: 1.15rem 1.25rem;
        gap: 1rem;
        width: 100%;
        height: 100%;
        flex: 1 1 auto;
    }
    .why-wide-card {
        height: auto;
        min-height: 200px;
        padding: 2rem 2rem 2rem 45%;
        background-position: left center;
    }
    .local-row {
        --bs-gutter-y: 0;
    }
    .local-image {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 562 / 389;
    }
    .local-card-wrap {
        margin: 130px auto 0;
        width: 100%;
        max-width: 420px;
    }
    .local-card {
        height: auto;
        min-height: 220px;
        border-radius: 26px;
        width: 100%;
        max-width: 100%;
        padding: 32px 28px 28px;
    }
    .local-card-logo {
        left: 50%;
        transform: translateX(-50%);
        top: -100px;
    }
    .bone-dengo {
        max-width: 120px;
    }
    /* EXPERIENCE SECTION - Tablet */
    .experience-text {
        max-width: 100%;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    .experience-text p {
        font-size: 1rem;
        line-height: 1.4;
    }
    .gallery-grid {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
        max-width: 720px;
    }
    .gallery-grid > [class*="col-"] {
        flex: 0 0 auto;
        width: 50%;
    }
    /* CTA FINAL SECTION - Tablet */
    .cta-image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .cta-text {
        max-width: 100%;
    }
    .cta-text p {
        font-size: 1rem;
        line-height: 1.4;
    }
    .cta-final-bottom {
        margin-top: 2.5rem;
    }
    .cta-final-headline {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    .cta-final-sub {
        font-size: 1rem;
    }
    .btn-cta-final {
        width: 100%;
        max-width: 332px;
    }
}

/* ====== RESPONSIVE - MOBILE (<576) ====== */
@media (max-width: 575.98px) {
    .site-header {
        height: 60px;
    }
    .intro-section {
        padding: 2.5rem 0 3rem;
    }
    .why-section {
        padding: 2.5rem 0 3rem;
    }
    .local-section {
        padding: 3.5rem 0 2.5rem;
    }
    .experience-section {
        padding: 1.5rem 0 2.5rem;
    }
    .cta-final-section {
        padding: 2.5rem 0 3rem;
    }
    .intro-paragraph {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
    .risk-block {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
        margin-top: 1rem;
    }
    .risk-block > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .risk-image-wrap {
        max-width: 100%;
        margin: 0 auto;
    }
    .risk-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }
    .risk-title {
        font-size: 1.25rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }
    .risk-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .form-card {
        padding: 20px 18px;
        border-radius: 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    .form-card-intro {
        font-size: 15px;
        line-height: 1.35;
        margin: 0 0 14px;
    }
    .form-card .form-label-light {
        font-size: 16px;
    }
    .form-card .form-helper-light {
        font-size: 12px;
    }
    .form-card .form-control-restricao {
        min-height: 70px;
    }
    .form-card .btn-reservar {
        width: 100%;
        max-width: 290px;
    }
    .why-title {
        font-size: 1.7rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 12px;
    }
    .why-grid {
        margin-bottom: 1.5rem;
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
        gap: 1rem;
    }
    .why-grid > [class*="col-"] {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 0;
        display: flex;
    }
    .why-card {
        min-height: 0;
        padding: 1.1rem 1.15rem;
        gap: 0.9rem;
        border-radius: 14px;
        width: 100%;
        height: 100%;
    }
    .why-card-icon {
        width: 56px;
        height: 58px;
        border-radius: 7px;
    }
    .why-card-icon img {
        width: auto;
        height: auto;
        object-fit: contain;
    }
    .why-card-icon img[src*="icon-card1"] { width: 32px; height: 28px; }
    .why-card-icon img[src*="icon-card2"] { width: 28px; height: 29px; }
    .why-card-icon img[src*="icon-card3"] { width: 28px; height: 35px; }
    .why-card-icon img[src*="icon-card4"] { width: 28px; height: 27px; }
    .why-card-text {
        font-size: 1rem;
        line-height: 1.2;
    }
    .why-wide-card {
        height: auto;
        min-height: 180px;
        padding: 1.75rem 1.4rem;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(55, 0, 83, 0.92) 55%, rgba(55, 0, 83, 1) 100%), url('../img/wide-card-bg.jpg');
        background-position: center;
        border-radius: 14px;
    }
    .why-wide-card p {
        font-size: 0.95rem;
    }
    .btn-white-cta {
        width: 100%;
        max-width: 290px;
    }
    .local-image {
        border-radius: 16px;
    }
    .local-card-wrap {
        margin-top: 110px;
        max-width: 100%;
        padding: 0 4px;
    }
    .local-card {
        padding: 28px 1.25rem 1.5rem;
        height: auto;
        min-height: 0;
        border-radius: 22px;
    }
    .local-card-logo {
        left: 50%;
        transform: translateX(-50%);
        top: -90px;
        width: 110px;
        height: 90px;
    }
    .bone-dengo {
        max-width: 86px;
    }
    /* EXPERIENCE SECTION - Mobile */
    .experience-text {
        max-width: 100%;
        padding: 0 0.25rem;
        margin-bottom: 1.75rem;
    }
    .experience-text p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    .gallery-grid {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    .gallery-image {
        border-radius: 16px;
    }
    /* CTA FINAL SECTION - Mobile */
    .cta-image {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
    .cta-text {
        max-width: 100%;
    }
    .cta-text p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    .cta-final-bottom {
        margin-top: 2.5rem;
    }
    .cta-final-headline {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    .cta-final-sub {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .btn-cta-final {
        width: 100%;
        max-width: 332px;
        height: 56px;
        line-height: 56px;
        padding: 0;
        font-size: 1rem;
        border-radius: 12px;
    }
    /* FOOTER - Mobile */
    .site-footer {
        height: 90px;
    }
    .footer-logo {
        height: 38px;
        width: 115px;
    }
}
