/* ===================================
   CONTATO PAGE
   It! Wheel - Página de Contato
   =================================== */


/* =============================================
   GRADIENT BACKGROUND WRAPPER
   ============================================= */

/* Body background for contato page: match gradient end so no gap shows */
.contato-page {
    background-color: #EEF7F8;
}

.contato-gradient-wrapper {
    position: relative;
    background: linear-gradient(180deg, #C6EBF6 0%, #EEF7F8 100%);
    min-height: 100vh;
    overflow: visible;
}

/* Sections inside gradient — transparent so gradient shows through */
.contato-page .section-blog,
.contato-page .section-parceiros,
.contato-page .section-banner-publicidade {
    background: transparent !important;
}
.contato-page .section-parceiros .bg2 {
    background-color: #D2EAEF !important;
}
.contato-page .section-banner-publicidade {
    margin-top: -50px;
}
.contato-page .section-parceiros {
    margin-bottom: 120px;
    margin-top: -120px;
}


/* =============================================
   BANNER HERO + LINHA INVERTIDA
   (Same pattern as blog)
   ============================================= */
.contato-banner-wrapper {
    z-index: auto;
}

.contato-banner {
    position: relative;
    width: 100%;
    overflow: visible !important;
    top: -90px;
}

.contato-banner-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Dark gradient overlay for header contrast */
.contato-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0) 100%);
}

/* Text overlay */
.contato-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-banner-text {
    text-align: center;
}

.contato-banner-text h1 {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 400;
    font-size: 45px;
    line-height: 54px;
    letter-spacing: 0.02em;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
    margin-left: 490px;
    margin-bottom: 30px;
    text-align: left;
}

/* Linha invertida — clip-path reveal top→bottom */
.contato-banner-linha {
    position: absolute;
    right: 0;
    bottom: -186px;
    width: auto;
    z-index: 115;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    animation: contatoClipRevealTopBottom 3.5s cubic-bezier(0.22, 1, 0.36, 1.5) 0.3s forwards;
}

@keyframes contatoClipRevealTopBottom {
    0%   { clip-path: inset(0 0 100% 0); }
    100% { clip-path: inset(0 0 0% 0); }
}

@keyframes astronaut-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}


/* =============================================
   BARRA INGRESSOS CONTATO
   (Same as blog — reuses sticky-ingresso-* classes)
   ============================================= */
.contato-ingresso-anchor {
    position: relative;
    z-index: 120;
    display: flex;
    justify-content: flex-end;
    margin-top: -280px;
    overflow: hidden;
}

.contato-ingresso-anchor.has-placeholder {
    min-height: 79px;
}

.contato-ingresso-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px 0 40px;
    width: 1109px;
    max-width: 100%;
    height: 79px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    transform: translateX(110%);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    pointer-events: none;
}

.contato-ingresso-bar.is-visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Stagger children */
.contato-ingresso-bar .sticky-ingresso-label,
.contato-ingresso-bar .sticky-ingresso-btn {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.contato-ingresso-bar.is-visible .sticky-ingresso-label {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}
.contato-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}
.contato-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}
.contato-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.75s;
}

.contato-ingresso-bar.is-stuck {
    position: fixed;
    right: 0;
    z-index: 201;
    border-radius: 200px 0 0 200px;
    transform-origin: right center;
    transform: scaleX(0.82) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    will-change: transform, opacity;
}

.contato-ingresso-bar.is-stuck.is-stuck-active {
    transform: scaleX(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.contato-ingresso-bar.is-banner-hidden {
    transform-origin: right center;
    transform: scaleX(0.82) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contato-ingresso-bar.is-stuck-top {
    top: 15px;
    bottom: auto;
}

.contato-ingresso-bar.is-stuck-bottom {
    top: auto;
    bottom: var(--blog-mobile-ingresso-bottom-gap, 16px);
}
.contato-ingresso-bar.is-stuck .sticky-ingresso-label,
.contato-ingresso-bar.is-stuck .sticky-ingresso-btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
}

/* Scale label & buttons */
.contato-ingresso-bar .sticky-ingresso-label {
    font-size: 16px;
    margin-right: 12px;
}
.contato-ingresso-bar .sticky-ingresso-btn {
    font-size: 13px;
    padding: 9px 20px;
    width: 152px;
    height: 44px;
}
.contato-ingresso-bar .sticky-ingresso-btn img {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
    margin-left: -5px;
}
.contato-ingresso-bar .sticky-ingresso-btn span {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}



/* =============================================
   NUVENS FLUTUANTES (same as blog)
   ============================================= */
.contato-nuvens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.contato-nuvens .nuvem-float {
    position: absolute;
    height: auto;
    will-change: transform;
}

.contato-nuvens .nuvem1 {
    top: 10%;
    width: 918px;
    animation: contatoNuvemDrift1 160s linear infinite;
    animation-delay: -110s;
}
.contato-nuvens .nuvem2 {
    top: 8%;
    width: 683px;
    animation: contatoNuvemDrift2 180s linear infinite;
    animation-delay: -70s;
}
.contato-nuvens .nuvem3 {
    top: 2%;
    width: 1071px;
    animation: contatoNuvemDrift3 200s linear infinite;
    animation-delay: -20s;
}

@keyframes contatoNuvemDrift1 {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-120%); }
}
@keyframes contatoNuvemDrift2 {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-120%); }
}
@keyframes contatoNuvemDrift3 {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-120%); }
}


/* =============================================
   CONTATO CONTENT — Form + Info
   ============================================= */
.contato-content {
    position: relative;
    z-index: 4;
    padding: 120px 0 90px;
}

.contato-content .wrap {
    max-width: 1280px;
    position: relative;
}

.contato-inner {
    display: flex;
    align-items: flex-start;
    gap: 1px;
}

/* ---- LEFT COLUMN: Heading + Info ---- */
.contato-left {
    flex: 0 0 480px;
    position: relative;
}

.contato-heading {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 0 0 30px;
}

.contato-descricao {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0;
    color: #279BB1;
    margin: 0 0 60px;
    max-width: 630px;
}

/* Astronauta flutuante — absoluto dentro da coluna esquerda */
.contato-astronauta {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 188px;
    pointer-events: none;
}
.contato-astronauta img {
    width: 188px;
    height: 228px;
    display: block;
    animation: astronaut-bob 3s ease-in-out infinite;
}

/* Funcionamento */
.contato-funcionamento-titulo {
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #EC6608;
    margin: 40px 0 20px;
}

.contato-funcionamento-info {
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.05em;
    text-transform: none;
    color: #279BB1;
    margin: 0;
    margin-bottom: -10px;
    
}
.contato-funcionamento-info a {
    color: #279BB1;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.15em; 
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 41px;
    vertical-align: middle;

}
.contato-funcionamento-info a:hover {
    opacity: 0.7;
}


/* ---- RIGHT COLUMN: Form ---- */
.contato-right {
    flex: 1;
    max-width: 632px;
    margin-left: 100px;
    margin-top: 60px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-form input,
.contato-form textarea {
    width: 632px;
    max-width: 100%;
    height: 50px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    padding: 0 25px;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #279BB1;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #279BB1;
    opacity: 0.6;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.contato-form textarea {
    height: 152px;
    padding: 15px 25px;
    resize: none;
    line-height: 1.4;
}

/* Phone input with DDI selector */
.contato-telefone-wrapper {
    display: flex;
    align-items: center;
    width: 632px;
    max-width: 100%;
    height: 50px;
    border: 2px solid #279BB1;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contato-telefone-wrapper:focus-within {
    border-color: #EC6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}
.contato-ddd-select {
    flex-shrink: 0;
    padding-left: 20px;
    
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contato-ddi-icon {
    width: 10px;
    height: 5px;
    pointer-events: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.contato-ddd-select.is-open .contato-ddi-icon {
    transform: rotate(180deg);
}
.contato-ddi {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    color: #279BB1;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.contato-telefone-input {
    border: none !important;
    border-radius: 0 !important;
    height: 100% !important;
    flex: 1;
    box-shadow: none !important;
}
.contato-telefone-input:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Submit row */
.contato-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.contato-privacidade {
    font-family: 'Exo', sans-serif !important;
    font-size: 13px;
    color: #279BB1;
    max-width: 380px;
}
.contato-privacidade a {
    color: #EC6608;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.contato-privacidade a:hover {
    opacity: 0.7;
}

/* Submit button — blue gradient with card-ingresso hover animation */
.contato-submit {
    width: 200px;
    height: 48px;
    border: none;
    border-radius: 64px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: box-shadow 0.4s ease;
    flex-shrink: 0;
}
.contato-submit span {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.5s var(--ease-animation, cubic-bezier(0.22, 1, 0.36, 1));
}
.contato-submit::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0%);
    transition: transform 0.5s var(--ease-animation, cubic-bezier(0.22, 1, 0.36, 1));
    z-index: 1;
    color: #FFF;
}
.contato-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 64px;
}
.contato-submit:hover {
    box-shadow: 0px 0px 0px 3px rgba(60, 60, 60, 0.15);
}
.contato-submit:hover span {
    transform: translateY(-250%);
}
.contato-submit:hover::before {
    transform: translateY(-100%);
}
.contato-submit:hover::after {
    opacity: 1;
}


/* =============================================
   MAPA LOCALIZAÇÃO
   ============================================= */
.contato-mapa {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 490px;
    overflow: hidden;
}

.contato-mapa [data-google-map-canvas] {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(111, 218, 239, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contato-map-fallback {
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(490px + 60px);
    border: 0;
    display: block;
}

.contato-mapa.is-ready [data-google-map-canvas] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contato-mapa.is-ready .contato-map-fallback {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.contato-mapa .map-overlay-action {
    position: absolute;
    top: 20px;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 999px;
    padding: 10px 14px 9px;
    font-family: 'ClashDisplay', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(1, 74, 110, 0.16);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.contato-mapa.is-ready .map-overlay-action {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contato-mapa .map-open-external {
    left: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: #014A6E;
}

.contato-mapa .map-open-external:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
}

.contato-mapa .map-overlay-action[hidden] {
    display: none;
}

/* Custom location pin overlay */
.contato-mapa .mapa-pin-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: 5;
    pointer-events: none;
    width: 70px;
    height: auto;
}
.contato-mapa .mapa-pin-custom img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}


/* =============================================
   RESPONSIVE — NOTEBOOK (≤1440px)
   Scale: 1440/1920 = 0.75
   ============================================= */
@media only screen and (max-width: 1440px) {

    /* ---- Gradient sections spacing ---- */
    .contato-page .section-banner-publicidade {
        margin-top: -38px;
    }
    .contato-page .section-parceiros {
        margin-bottom: 90px;
        margin-top: -90px;
    }

    /* ---- Banner ---- */

    .contato-banner-text h1 {
        font-size: 34px;
        line-height: 41px;
        margin-left: 368px;
        margin-bottom: 23px;
    }
    .contato-banner-linha {
        bottom: -100px;
           width: 318px;
    height: 321px; 
    }

    /* ---- Ingresso bar ---- */
    .contato-ingresso-anchor {
        margin-top: -250px;
    }
    .contato-ingresso-bar {
        width: 832px;
        height: 65px;
        gap: 10px;
        padding: 0 23px 0 30px;
    }
    .contato-ingresso-bar .sticky-ingresso-label {
        font-size: 14px;
        margin-right: 10px;
    }
    .contato-ingresso-bar .sticky-ingresso-btn {
        font-size: 12px;
        padding: 7px 16px;
        width: 108px;
        height: 31px;
    }
    .contato-ingresso-bar .sticky-ingresso-btn img {
        width: 15px;
        height: 15px;
        margin-bottom: 4px;
        margin-left: -7px;
    }
    .contato-ingresso-bar .sticky-ingresso-btn span {
        font-size: 10px;
        letter-spacing: 0.01em;
    }
    .contato-nuvens .nuvem3 { width: 803px; }

    /* ---- Content layout ---- */
    .contato-content {
        padding: 90px 0 68px;
    }
    .contato-content .wrap {
        max-width: 960px;
    }
    .contato-inner {
        gap: 1px;
    }

    /* ---- Left column ---- */
    .contato-left {
        flex: 0 0 360px;
    }
    .contato-heading {
        font-size: 20px;
        margin-bottom: 23px;
    }
    .contato-descricao {
        font-size: 17px;
        margin-bottom: 45px;
        max-width: 473px;
    }

    /* Astronauta */
    .contato-astronauta {
        right: -15px;
        width: 141px;
    }
    .contato-astronauta img {
        width: 141px;
        height: 171px;
    }

    /* Funcionamento */
    .contato-funcionamento-titulo {
        font-size: 14px;
        margin: 30px 0 15px;
    }
    .contato-funcionamento-info {
        font-size: 13px;
        line-height: 22px;
    }
    .contato-funcionamento-info a {
        font-size: 14px;
        line-height: 34px;
    }

    /* ---- Right column (Form) ---- */
    .contato-right {
        max-width: 474px;
        margin-left: 75px;
        margin-top: 45px;
    }
    .contato-form {
        gap: 13px;
    }
    .contato-form input,
    .contato-form textarea {
        width: 474px;
        height: 42px;
        border-radius: 21px;
        padding: 0 20px;
        font-size: 14px;
    }
    .contato-form textarea {
        height: 114px;
        padding: 12px 20px;
    }

    /* Phone wrapper */
    .contato-telefone-wrapper {
        width: 474px;
        height: 42px;
        border-radius: 21px;
    }
    .contato-ddd-select {
        padding-left: 16px;
    }
    .contato-ddi {
        font-size: 14px;
    }

    /* Submit */
    .contato-submit {
        width: 170px;
        height: 40px;
        font-size: 13px;
    }
    .contato-privacidade {
        font-size: 12px;
        max-width: 285px;
    }

    /* ---- Map ---- */
    .contato-mapa {
        height: 368px;
    }
    .contato-map-fallback {
        height: calc(368px + 45px);
        top: -45px;
    }
    .contato-mapa .mapa-pin-custom {
        width: 53px;
    }

    .contato-mapa .map-overlay-action {
        top: 14px;
        padding: 8px 11px 7px;
        font-size: 10px;
    }

    .contato-mapa .map-open-external {
        left: 14px;
    }
}


/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   Escala: 1024/1440 ≈ 0.711 (do notebook)
   ============================================= */
@media only screen and (max-width: 1024px) {
/* ===================================
   CONTATO PAGE — 1024px BREAKPOINT
   Escala base: 1920 → 1024 (fator ≈ 0.533)
   =================================== */

@media (max-width: 1024px) {

    /* =============================================
       GRADIENT BACKGROUND WRAPPER
       ============================================= */
    .contato-page {
        background-color: #EEF7F8;
    }

    .contato-gradient-wrapper {
        position: relative;
        background: linear-gradient(180deg, #C6EBF6 0%, #EEF7F8 100%);
        min-height: 100vh;
        overflow: visible;
    }

    .contato-page .section-blog,
    .contato-page .section-parceiros,
    .contato-page .section-banner-publicidade {
        background: transparent !important;
        margin-top: 70px !important;
    }
    .contato-page .section-parceiros .bg2 {
        background-color: #D2EAEF !important;
    }
    .contato-page .section-banner-publicidade {
        margin-top: -27px;  /* -50px × 0.533 */
    }
    .contato-page .section-parceiros {
        margin-bottom: 64px; /* 120px × 0.533 */
        margin-top: -64px !important;
    }


    /* =============================================
       BANNER HERO + LINHA INVERTIDA
       ============================================= */
    .contato-banner-wrapper {
        z-index: auto;
    }

    .contato-banner {
        position: relative;
        width: 100%;
        overflow: visible !important;
        top: -48px; /* -90px × 0.533 */
    }

    .contato-banner-img {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

    .contato-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 30%;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0) 100%);
    }

    .contato-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contato-banner-text {
        text-align: center;
    }

    .contato-banner-text h1 {
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 400;
        font-size: 24px;     /* 45px × 0.533 */
        line-height: 29px;   /* 54px × 0.533 */
        letter-spacing: 0.02em;
        color: #FFF;
        text-transform: uppercase;
        margin: 0;
        margin-left: 261px;  /* 490px × 0.533 */
        margin-bottom: 16px; /* 30px × 0.533 */
        text-align: left;
    }

    /* Linha invertida */
    .contato-banner-linha {
        position: absolute;
        right: 0;
        bottom: -130px; /* -207px × 0.533 */
        width: 220px;
        z-index: 115;
        pointer-events: none;
        clip-path: inset(0 0 100% 0);
        animation: contatoClipRevealTopBottom 3.5s cubic-bezier(0.22, 1, 0.36, 1.5) 0.3s forwards;
    }

    @keyframes contatoClipRevealTopBottom {
        0%   { clip-path: inset(0 0 100% 0); }
        100% { clip-path: inset(0 0 0% 0); }
    }

    @keyframes astronaut-bob {
        0%, 100% { transform: translateY(0); }
        50%      { transform: translateY(-8px); } /* -15px × 0.533 */
    }


    /* =============================================
       BARRA INGRESSOS CONTATO
       ============================================= */
    .contato-ingresso-anchor {
        position: relative;
        z-index: 120;
        display: flex;
        justify-content: flex-end;
        margin-top: -161px; /* -280px × 0.533 */
    }

    .contato-ingresso-bar {
        display: flex;
        align-items: center;
        gap: 6px;            /* 12px × 0.533 */
        padding: 0 16px 0 21px; /* 0 30px 0 40px × 0.533 */
        width: 591px;        /* 1109px × 0.533 */
        max-width: 100%;
        height: 42px;        /* 79px × 0.533 */
        background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
        border-top-left-radius: 107px;    /* 200px × 0.533 */
        border-bottom-left-radius: 107px;
        transform: translateX(110%);
        opacity: 0;
        transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
        pointer-events: none;
    }

    .contato-ingresso-bar.is-visible {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Stagger children */
    .contato-ingresso-bar .sticky-ingresso-label,
    .contato-ingresso-bar .sticky-ingresso-btn {
        opacity: 0;
        transform: translateX(16px); /* 30px × 0.533 */
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .contato-ingresso-bar.is-visible .sticky-ingresso-label {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }
    .contato-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(2) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.45s;
    }
    .contato-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(3) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.6s;
    }
    .contato-ingresso-bar.is-visible .sticky-ingresso-btn:nth-child(4) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.75s;
    }

    /* Stuck near top */
    .contato-ingresso-bar.is-stuck {
        position: fixed;
        top: 8px;  /* 15px × 0.533 */
        right: 0;
        z-index: 201;
        border-radius: 107px 0 0 107px;
        transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .contato-ingresso-bar.is-stuck .sticky-ingresso-label,
    .contato-ingresso-bar.is-stuck .sticky-ingresso-btn {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0s;
    }

    /* Scale label & buttons */
    .contato-ingresso-bar .sticky-ingresso-label {
        font-size: 9px;      /* 16px × 0.533 */
        margin-right: 6px;   /* 12px × 0.533 */
    }
    .contato-ingresso-bar .sticky-ingresso-btn {
        font-size: 7px;      /* 13px × 0.533 */
        padding: 5px 11px;   /* 9px 20px × 0.533 */
        width: 81px;         /* 152px × 0.533 */
        height: 23px;        /* 44px × 0.533 */
    }
    .contato-ingresso-bar .sticky-ingresso-btn img {
        width: 10px;         /* 18px × 0.533 */
        height: 10px;
        margin-bottom: 2px;
        margin-left: -3px;
    }
    .contato-ingresso-bar .sticky-ingresso-btn span {
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500 !important;
        font-size: 7px;
        line-height: 100%;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }


    /* =============================================
       NUVENS FLUTUANTES
       ============================================= */
    .contato-nuvens {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        pointer-events: none;
        overflow: visible;
    }

    .contato-nuvens .nuvem-float {
        position: absolute;
        height: auto;
        will-change: transform;
    }

    .contato-nuvens .nuvem1 {
        top: 10%;
        width: 489px;  /* 918px × 0.533 */
        animation: contatoNuvemDrift1 160s linear infinite;
        animation-delay: -110s;
    }
    .contato-nuvens .nuvem2 {
        top: 8%;
        width: 364px;  /* 683px × 0.533 */
        animation: contatoNuvemDrift2 180s linear infinite;
        animation-delay: -70s;
    }
    .contato-nuvens .nuvem3 {
        top: 2%;
        width: 571px;  /* 1071px × 0.533 */
        animation: contatoNuvemDrift3 200s linear infinite;
        animation-delay: -20s;
    }

    @keyframes contatoNuvemDrift1 {
        0%   { transform: translateX(100vw); }
        100% { transform: translateX(-120%); }
    }
    @keyframes contatoNuvemDrift2 {
        0%   { transform: translateX(100vw); }
        100% { transform: translateX(-120%); }
    }
    @keyframes contatoNuvemDrift3 {
        0%   { transform: translateX(100vw); }
        100% { transform: translateX(-120%); }
    }


    /* =============================================
       CONTATO CONTENT — Form + Info
       ============================================= */
    .contato-content {
        position: relative;
        z-index: 4;
        padding: 64px 0 48px; /* 120px 0 90px × 0.533 */
    }

    .contato-content .wrap {
        max-width: 682px; /* 1280px × 0.533 */
        position: relative;
    }

    .contato-inner {
        display: flex;
        align-items: flex-start;
        gap: 1px;
    }

    /* ---- LEFT COLUMN: Heading + Info ---- */
    .contato-left {
        flex: 0 0 256px; /* 480px × 0.533 */
        position: relative;
    }

    .contato-heading {
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500;
        font-size: 13px;   /* 24px × 0.533 */
        line-height: 120%;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #EC6608;
        margin: 0 0 16px;  /* 30px × 0.533 */
    }

    .contato-descricao {
        font-family: 'Exo', sans-serif !important;
        font-weight: 500;
        font-size: 11px;   /* 20px × 0.533 */
        line-height: 130%;
        letter-spacing: 0;
        color: #279BB1;
        margin: 0 0 32px;  /* 60px × 0.533 */
        max-width: 336px;  /* 630px × 0.533 */
    }

    /* Astronauta flutuante */
    .contato-astronauta {
        position: absolute;
        right: -11px;  /* -20px × 0.533 */
        bottom: 0;
        width: 100px;  /* 188px × 0.533 */
        pointer-events: none;
    }
    .contato-astronauta img {
        width: 100px;
        height: 122px; /* 228px × 0.533 */
        display: block;
        animation: astronaut-bob 3s ease-in-out infinite;
    }

    /* Funcionamento */
    .contato-funcionamento-titulo {
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500;
        font-size: 9px;    /* 16px × 0.533 */
        line-height: 100%;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #EC6608;
        margin: 21px 0 11px; /* 40px 0 20px × 0.533 */
    }

    .contato-funcionamento-info {
        font-family: 'Exo', sans-serif !important;
        font-weight: 500;
        font-size: 8px;    /* 15px × 0.533 */
        line-height: 14px; /* 27px × 0.533 */
        letter-spacing: 0.05em;
        text-transform: none;
        color: #279BB1;
        margin: 0;
        margin-bottom: -5px;
    }
    .contato-funcionamento-info a {
        color: #279BB1;
        text-decoration: none;
        transition: opacity 0.3s ease;
        letter-spacing: 0.15em;
        font-weight: 400;
        font-style: normal;
        font-size: 9px;    /* 16px × 0.533 */
        line-height: 22px; /* 41px × 0.533 */
        vertical-align: middle;
    }
    .contato-funcionamento-info a:hover {
        opacity: 0.7;
    }


    /* ---- RIGHT COLUMN: Form ---- */
    .contato-right {
        flex: 1;
        max-width: 337px;  /* 632px × 0.533 */
        margin-left: 53px; /* 100px × 0.533 */
        margin-top: 32px;  /* 60px × 0.533 */
    }

    .contato-form {
        display: flex;
        flex-direction: column;
        gap: 9px;          /* 16px × 0.533 */
    }

    .contato-form input,
    .contato-form textarea {
        width: 337px;      /* 632px × 0.533 */
        max-width: 100%;
        height: 27px;      /* 50px × 0.533 */
        border: 1px solid #279BB1; /* 2px × 0.533 → 1px mínimo */
        border-radius: 13px; /* 25px × 0.533 */
        background: transparent;
        padding: 0 13px;   /* 0 25px × 0.533 */
        font-family: 'Exo', sans-serif !important;
        font-weight: 500;
        font-size: 9px;    /* 16px × 0.533 */
        line-height: 100%;
        letter-spacing: 0.02em;
        text-transform: none;
        color: #279BB1;
        outline: none;
        margin-bottom: 10px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .contato-form input::placeholder,
    .contato-form textarea::placeholder {
        color: #279BB1;
        opacity: 0.6;
    }

    .contato-form input:focus,
    .contato-form textarea:focus {
        border-color: #EC6608;
        box-shadow: 0 0 0 2px rgba(236, 102, 8, 0.1);
    }

    .contato-form textarea {
        height: 81px;      /* 152px × 0.533 */
        padding: 8px 13px; /* 15px 25px × 0.533 */
        resize: none;
        line-height: 1.4;
        margin-top: 10px;
    }

    /* Phone input with DDI selector */
    .contato-telefone-wrapper {
        display: flex;
        align-items: center;
        width: 337px;      /* 632px × 0.533 */
        max-width: 100%;
        height: 27px;      /* 50px × 0.533 */
        border: 1px solid #279BB1;
        border-radius: 13px;
        background: transparent;
        overflow: hidden;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .contato-telefone-wrapper:focus-within {
        border-color: #EC6608;
        box-shadow: 0 0 0 2px rgba(236, 102, 8, 0.1);
    }
    .contato-ddd-select {
        flex-shrink: 0;
        padding-left: 11px; /* 20px × 0.533 */
        height: 100%;
        display: flex;
        align-items: center;
        gap: 4px;           /* 8px × 0.533 */
    }
    .contato-ddi-icon {
        width: 5px;         /* 10px × 0.533 */
        height: 3px;        /* 5px × 0.533 */
        pointer-events: none;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .contato-ddd-select.is-open .contato-ddi-icon {
        transform: rotate(180deg);
    }
    .contato-ddi {
        background: transparent;
        border: none;
        outline: none;
        font-family: 'Exo', sans-serif !important;
        font-weight: 500;
        font-size: 9px;    /* 16px × 0.533 */
        color: #279BB1;
        text-transform: uppercase;
        cursor: pointer;
        padding: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    .contato-telefone-input {
        border: none !important;
        border-radius: 0 !important;
        height: 100% !important;
        width: auto !important;
        margin-bottom: 0 !important;
        padding: 2px 13px 0 5px !important;
        flex: 1;
        box-shadow: none !important;
    }
    .contato-telefone-input::placeholder {
        transform: translateY(1px);
        display: inline-block;
    }
    .contato-telefone-input:focus {
        border: none !important;
        box-shadow: none !important;
    }

    /* Submit row */
    .contato-form-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 4px;   /* 8px × 0.533 */
    }
    .contato-privacidade {
        font-family: 'Exo', sans-serif !important;
        font-size: 7px;    /* 13px × 0.533 */
        color: #279BB1;
        max-width: 203px;  /* 380px × 0.533 */
    }
    .contato-privacidade a {
        color: #EC6608;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    .contato-privacidade a:hover {
        opacity: 0.7;
    }

    /* Submit button */
    .contato-submit {
        width: 107px;      /* 200px × 0.533 */
        height: 26px;      /* 48px × 0.533 */
        border: none;
        border-radius: 34px; /* 64px × 0.533 */
        background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500;
        font-size: 8px;    /* 15px × 0.533 */
        line-height: 100%;
        letter-spacing: 0.1em;
        text-align: center;
        text-transform: uppercase;
        color: #FFF;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 0;
        transition: box-shadow 0.4s ease;
        flex-shrink: 0;
    }
    .contato-submit span {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .contato-submit::before {
        content: attr(data-text);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(0%);
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1;
        color: #FFF;
    }
    .contato-submit::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 0;
        border-radius: 34px;
    }
    .contato-submit:hover {
        box-shadow: 0px 0px 0px 2px rgba(60, 60, 60, 0.15);
    }
    .contato-submit:hover span {
        transform: translateY(-250%);
    }
    .contato-submit:hover::before {
        transform: translateY(-100%);
    }
    .contato-submit:hover::after {
        opacity: 1;
    }


    /* =============================================
       MAPA LOCALIZAÇÃO
       ============================================= */
    .contato-mapa {
        position: relative;
        z-index: 4;
        width: 100%;
        height: 261px;     /* 490px × 0.533 */
        overflow: hidden;
    }

    /* Force map visible on tablets — skip waypoint animation */
    .contato-mapa.waypoint {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .contato-map-fallback {
        width: 100%;
        height: calc(261px + 32px); /* (490px + 60px) × 0.533 */
        border: 0;
        display: block;
        top: -32px; /* -60px × 0.533 */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Custom location pin overlay */
    .contato-mapa .mapa-pin-custom {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -80%);
        z-index: 5;
        pointer-events: none;
        width: 37px;       /* 70px × 0.533 */
        height: auto;
    }
    .contato-mapa .mapa-pin-custom img {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    }

    .contato-mapa .map-overlay-action {
        top: 12px;
        padding: 7px 10px 6px;
        font-size: 9px;
    }

    .contato-mapa .map-open-external {
        left: 12px;
    }

} /* end @media (max-width: 1024px) */
  
}


/* Mobile picker — hidden globally, shown via mobile media query */
.inst-ingresso-mobile-picker {
    display: none;
}

/* =============================================
   INGRESSO SELECT DROPDOWN (mobile, inside bar)
   Same base styles as institucional/blog/itapema
   ============================================= */
.inst-ingresso-select-wrap {
    position: relative;
}
.inst-ingresso-select-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 284px;
    height: 46px;
    border-radius: 64px;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 20px;
}
.inst-ingresso-select-icon,
.inst-ingresso-dropdown-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.inst-ingresso-select-btn[data-inst-current-key="individual"] .inst-ingresso-select-icon,
.inst-ingresso-dropdown-item[data-key="individual"] .inst-ingresso-dropdown-icon {
    background-image: url('../img/home/individual.png');
}

.inst-ingresso-select-btn[data-inst-current-key="cabine"] .inst-ingresso-select-icon,
.inst-ingresso-dropdown-item[data-key="cabine"] .inst-ingresso-dropdown-icon {
    background-image: url('../img/home/cabine.webp');
}

.inst-ingresso-select-btn[data-inst-current-key="especial"] .inst-ingresso-select-icon,
.inst-ingresso-dropdown-item[data-key="especial"] .inst-ingresso-dropdown-icon {
    background-image: url('../img/home/especial.png');
}

.inst-ingresso-select-label {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.inst-ingresso-select-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}
.inst-ingresso-select-wrap.is-open .inst-ingresso-select-arrow {
    transform: translateY(2px) rotate(-135deg);
}
.inst-ingresso-dropdown-list {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 284px;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(180deg, #EEF7F8 0%, #9FE4F1 100%);
    border: none;
    border-radius: 24px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
    z-index: 310;
}
.inst-ingresso-select-wrap.is-open .inst-ingresso-dropdown-list {
    max-height: 220px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 14px;
}
.inst-ingresso-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 18px;
    margin-bottom: 8px;
    border-radius: 64px;
    color: #EC6608;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease;
}
.inst-ingresso-dropdown-icon {
    filter: brightness(0) saturate(100%) invert(49%) sepia(94%) saturate(1910%) hue-rotate(357deg) brightness(96%) contrast(92%);
}

.inst-ingresso-dropdown-text {
    text-align: left;
}

.inst-ingresso-dropdown-item:last-child { margin-bottom: 0; }
.inst-ingresso-dropdown-item.is-active,
.inst-ingresso-dropdown-item:hover { background: rgba(236, 102, 8, 0.12); border-radius: 64px; }

/* Mobile funcionamento — hidden globally, shown via mobile media query */
.contato-funcionamento-mobile {
    display: none;
}


/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media only screen and (max-width: 768px) {

    body:not(.is-home) {
        --home-mobile-side-gap: clamp(23.111px, 5.9259vw, 32px);
        --home-mobile-content-width: min(476px, calc(100vw - (var(--home-mobile-side-gap) * 2)));
        --home-mobile-blog-card-width: clamp(300.444px, 77.037vw, 416px);
        --home-mobile-footer-width: clamp(277.667px, 88.1481vw, 476px);
        --home-mobile-footer-map-btn-width: clamp(109.083px, 34.6296vw, 187px);
        --home-mobile-footer-map-btn-height: clamp(28px, 8.8889vw, 48px);
        --home-mobile-partner-slot-width: clamp(104.333px, 26.7407vw, 144.406px);
        --home-mobile-partner-logo-width: clamp(57.778px, 14.8148vw, 80px);
        --home-mobile-partner-logo-height: clamp(47.667px, 12.2222vw, 66px);
        --home-mobile-cta-width: min(508px, calc(94.0741vw));
        --home-mobile-cta-control-width: min(369px, calc(68.3333vw));
        --home-mobile-card-gap: clamp(12px, 2.963vw, 16px);
        --home-mobile-banner-title-size: clamp(20.222px, 5.1852vw, 28px);
        --home-mobile-banner-copy-size: clamp(15.889px, 4.0741vw, 22px);
        --home-mobile-cta-title-size: clamp(18.056px, 4.6296vw, 25px);
        --home-mobile-section-title-lg: clamp(21.667px, 5.5556vw, 30px);
        --home-mobile-section-title-md: clamp(20.222px, 5.1852vw, 28px);
        --home-mobile-fs-18: clamp(13px, 3.3333vw, 18px);
        --home-mobile-fs-16: clamp(11.556px, 2.963vw, 16px);
        --home-mobile-blog-cat-size: clamp(14.444px, 3.7037vw, 20px);
        --home-mobile-blog-title-size: clamp(15.889px, 4.0741vw, 22px);
        --home-mobile-promo-btn-width: clamp(166.111px, 42.5926vw, 230px);
        --home-mobile-promo-btn-height: clamp(43.333px, 11.1111vw, 60px);
        --home-mobile-gallery-btn-width: clamp(216.667px, 55.5556vw, 300px);
        --home-mobile-gallery-btn-height: clamp(43.333px, 11.1111vw, 60px);
        --home-mobile-panel-btn-width: clamp(166.111px, 42.5926vw, 230px);
        --home-mobile-panel-btn-height: clamp(56px, 14.2593vw, 77px);
        --home-mobile-itapema-card-width: clamp(308.389px, 79.0741vw, 427px);
        --home-mobile-blog-btn-width: clamp(132.889px, 34.0741vw, 184px);
        --home-mobile-blog-btn-height: clamp(33.944px, 8.7037vw, 47px);
          --blog-mobile-ingresso-bar-width: min(508px, 94.0741vw);
          --blog-mobile-ingresso-bar-height: clamp(57.056px, 14.6294vw, 79px);
          --blog-mobile-ingresso-select-width: min(284px, 52.5926vw);
          --blog-mobile-ingresso-select-height: clamp(33.351px, 8.5516vw, 46.179px);
          --blog-mobile-ingresso-bottom-gap: clamp(12px, 3.0769vw, 16px);
          --home-mobile-lines-width: clamp(144.444px, 37.037vw, 200px);
        --home-mobile-lines-height: clamp(145.574px, 37.3055vw, 201.4499px);
        --home-mobile-astronaut-width: clamp(143.722px, 36.8519vw, 199px);
        --home-mobile-astronaut-height: clamp(179.833px, 46.1111vw, 249px);
        --contato-mobile-text-box-inset: clamp(22px, 5.641vw, 26px);
        --contato-mobile-text-box-width: calc(var(--home-mobile-content-width) - (var(--contato-mobile-text-box-inset) * 2));
        --contato-mobile-intro-box-width: calc(var(--contato-mobile-text-box-width) - clamp(48px, 12.3077vw, 66px));
        --contato-mobile-submit-width: min(250px, 46.2963vw);
        --contato-mobile-submit-height: min(60px, 11.1111vw);
        --contato-mobile-submit-font-size: clamp(12.278px, 3.1481vw, 17px);
    }

    /* =============================================
       BANNER — 430px fixed height (same as post)
       ============================================= */
    .contato-banner {
        min-height: 430px;
       
    }
    .contato-banner-img {
        height: 430px;
        object-fit: cover;
        object-position: center top;
    }
    .contato-banner-text h1 {
        font-size: 28px;
        line-height: 34px;
        margin-left: 0;
        text-align: center;
    }
    .contato-banner-linha {
        width: var(--home-mobile-lines-width);
        height: var(--home-mobile-lines-height);
        bottom: 13px;
        z-index: 0;
        object-fit: contain;
    }

    /* =============================================
       NUVENS — same positions as post mobile
       ============================================= */
    .contato-nuvens .nuvem1 {
        top: 290px;
        left: -120px;
        width: 350px;
        animation: none;
    }
    .contato-nuvens .nuvem2 {
        top: 350px;
        right: -70px;
        left: auto;
        width: 320px;
        animation: none;
        z-index: -1 !important;
    
    }
    .contato-nuvens .nuvem3 {
        top: 200px;
        left: 120px;
        width: 370px;
        animation: none;
    }

    /* =============================================
       INGRESSO BAR — same mobile pattern as blog/post
       ============================================= */
    .contato-ingresso-anchor {
        margin-top: -240px;
        overflow: visible;
    }
    .contato-ingresso-anchor.has-placeholder {
        min-height: var(--blog-mobile-ingresso-bar-height);
    }
    .contato-ingresso-bar {
        width: var(--blog-mobile-ingresso-bar-width);
        max-width: var(--blog-mobile-ingresso-bar-width);
        height: var(--blog-mobile-ingresso-bar-height);
        border-top-left-radius: 200px;
        border-bottom-left-radius: 200px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0;
        gap: 0;
        margin-left: auto;
        justify-content: space-between;
        align-items: center;
    }
    .contato-ingresso-bar.is-stuck {
        position: fixed;
        right: 0;
        z-index: 201;
        border-radius: 200px 0 0 200px;
        transform-origin: right center;
        transform: scaleX(0.82) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        will-change: transform, opacity;
    }
    .contato-ingresso-bar.is-stuck.is-stuck-active {
        transform: scaleX(1) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .contato-ingresso-bar.is-banner-hidden {
        transform-origin: right center;
        transform: scaleX(0.82) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .contato-ingresso-bar.is-stuck-top {
        top: auto;
        bottom: var(--blog-mobile-ingresso-bottom-gap);
    }
    .contato-ingresso-bar.is-stuck-bottom {
        top: auto;
        bottom: var(--blog-mobile-ingresso-bottom-gap);
    }
    .contato-ingresso-bar .sticky-ingresso-label,
    .contato-ingresso-bar .sticky-ingresso-btn {
        display: none !important;
    }
    .inst-ingresso-mobile-picker {
        display: flex;
        align-items: center;
        width: 100%;
        gap: clamp(8px, 1.8519vw, 10px);
        padding: 0 clamp(10px, 2.5926vw, 14px) 0 clamp(19px, 4.8148vw, 26px);
    }
    .inst-ingresso-mobile-label {
        color: #fff;
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500;
        font-size: clamp(12px, 3.3333vw, 18px);
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: clamp(10px, 2.5926vw, 14px);
    }
    .contato-ingresso-bar .inst-ingresso-select-wrap {
        margin-left: auto;
        flex-shrink: 0;
    }
    .contato-ingresso-bar .inst-ingresso-select-btn {
        width: var(--blog-mobile-ingresso-select-width);
        height: var(--blog-mobile-ingresso-select-height);
        font-size: clamp(11px, 2.5926vw, 14px);
        padding: 0 clamp(12px, 3.3333vw, 18px);
        gap: clamp(8px, 2.2222vw, 12px);
    }
    .contato-ingresso-bar .inst-ingresso-dropdown-list {
        width: var(--blog-mobile-ingresso-select-width);
    }
    .inst-ingresso-dropdown-item {
        min-height: clamp(40px, 9.2593vw, 50px);
        font-size: clamp(11px, 2.5926vw, 14px);
        color: #858585;
    }
    .inst-ingresso-select-icon,
    .inst-ingresso-dropdown-icon {
        width: clamp(17px, 4.6296vw, 20px);
        height: clamp(17px, 4.6296vw, 20px);
        flex-basis: clamp(17px, 4.6296vw, 20px);
    }
    .inst-ingresso-dropdown-icon {
        filter: brightness(0) saturate(100%) invert(52%);
    }

    /* =============================================
       CONTENT LAYOUT — single column
       ============================================= */
    .contato-content {
        padding: 150px 0 32px;
    }
    .contato-content .wrap,
    .contato-content .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: var(--home-mobile-side-gap) !important;
        padding-right: var(--home-mobile-side-gap) !important;
        box-sizing: border-box;
    }
    .contato-inner {
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
        flex-direction: column;
        gap: 0;
    }
    .contato-left {
        flex: none;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
        padding: 0;
    }
    .contato-heading {
        width: var(--contato-mobile-intro-box-width);
        max-width: var(--contato-mobile-intro-box-width);
        font-size: 27px;
        color: #EC6608;
        margin: 0 0 26px var(--contato-mobile-text-box-inset);
    }
    .contato-descricao {
        width: var(--contato-mobile-intro-box-width);
        max-width: var(--contato-mobile-intro-box-width);
        font-size: 18px;
        margin: 0 0 32px var(--contato-mobile-text-box-inset);
    }
    /* Hide desktop funcionamento (inside left col) on mobile */
    .contato-funcionamento {
        display: none;
    }
    .contato-astronauta {
        display: block;
        position: absolute;
        top: -18px;
        right: -20px;
        width: 100px;
        height: 128px;
        pointer-events: none;
        z-index: 10;
    }
    .contato-astronauta img {
        width: 120px;
        height: 148px;
        object-fit: contain;
        display: block;
        animation: astronaut-bob 3s ease-in-out infinite;
    }

    .contato-right {
        flex: none;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
        padding: 0;
    }
    .contato-form {
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
    }
    .contato-form input,
    .contato-form textarea {
        width: 100%;
        max-width: 100%;
        height: 54px;
        border: 2px solid #279BB1;
        border-radius: 27px;
        padding: 0 20px;
        font-size: 17px !important;
        line-height: 1.2;
        box-sizing: border-box;
    }
    .contato-form input::placeholder,
    .contato-form textarea::placeholder,
    .contato-telefone-input::placeholder {
        font-size: 15px;
        line-height: 1.2;
    }
    .contato-form textarea {
        height: 148px;
        border: 2px solid #279BB1;
        border-radius: 18px;
        padding: 14px 20px;
        font-size: 17px !important;
        line-height: 1.35;
    }
    .contato-telefone-wrapper {
        width: 100%;
        max-width: 100%;
        height: 54px;
        border: 2px solid #279BB1;
        border-radius: 27px;
        box-sizing: border-box;
    }
    .contato-ddi {
        font-size: 18px !important;
    }
    .contato-telefone-input {
        padding: 0 20px 0 8px !important;
        font-size: 17px !important;
        line-height: 1.2;
    }
    .contato-telefone-input::placeholder {
        transform: none;
    }
    .contato-form-footer {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
    }
    .contato-privacidade {
        display: none;
    }
    .contato-submit {
        width: var(--contato-mobile-submit-width);
        height: var(--contato-mobile-submit-height);
        font-size: 14px;
        margin: 0;
    }

    /* =============================================
       MOBILE FUNCIONAMENTO — below form
       ============================================= */
    .contato-funcionamento-mobile {
        display: block;
        width: 100%;
        max-width: var(--contato-mobile-text-box-width);
        margin: 0 auto;
        text-align: center !important;
        padding: 48px 0 0;
    }
    .contato-funcionamento-mobile .contato-funcionamento-titulo {
        font-size: 20px;
        color: #EC6608;
        margin: 0 0 24px;
        text-align: center !important;
    }
    .contato-funcionamento-mobile .contato-funcionamento-info {
        font-size: 18px !important;
        text-align: center !important;
        line-height: 1.7;
        margin: 0;
    }
    .contato-funcionamento-mobile .contato-funcionamento-horario-secundario {
        margin-top: 8px;
    }
    .contato-funcionamento-mobile .contato-funcionamento-contato {
        margin-top: 42px;
    }
    .contato-funcionamento-mobile .contato-funcionamento-endereco {
        margin-top: 10px;
    }
    .contato-funcionamento-mobile .contato-funcionamento-info a {
        font-size: 18px !important;
        line-height: 1.7 !important;
    }

    .contato-mapa {
        width: 100%;
        max-width: none;
        height: 580px;
        margin: 70px 0 0;
    }
    .contato-map-fallback {
        width: 100%;
        height: calc(580px + 60px);
        top: -60px;
    }

    .contato-mapa .map-overlay-action {
        top: 12px;
        padding: 8px 10px 7px;
        font-size: 9px;
    }

    .contato-mapa .map-open-external {
        left: 12px;
    }
    .contato-page .section-blog {
        padding: 108px 0;
        overflow: visible;
        margin-left: 0;
        margin-top: -40px !important;
        margin-bottom: -140px !important;
    }
    .contato-page .blog-3linhas {
        display: none;
        width: var(--home-mobile-lines-width) !important;
        height: var(--home-mobile-lines-height) !important;
        left: 0;
        bottom: 0;
        right: auto;
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }
    .contato-page .section-blog .wrap,
    .contato-page .section-blog .wrap.wide {
        max-width: 540px;
        margin: 0 auto;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible;
        box-sizing: border-box;
    }
    .contato-page .section-blog h2 {
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto 15px !important;
        font-size: var(--home-mobile-section-title-md) !important;
        line-height: 1.15 !important;
        padding-left: var(--home-mobile-side-gap);
        padding-right: var(--home-mobile-side-gap);
        box-sizing: border-box;
    }
    .contato-page .blog-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: var(--home-mobile-card-gap);
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        justify-content: flex-start;
        width: calc(100% - var(--home-mobile-side-gap));
        max-width: none;
        padding: 8px 0 24px;
        margin-top: 24px !important;
        margin-left: var(--home-mobile-side-gap);
        scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-sizing: border-box;
    }
    .contato-page .blog-cards::-webkit-scrollbar { display: none; }
    .contato-page .blog-card {
        flex: 0 0 var(--home-mobile-blog-card-width);
        width: var(--home-mobile-blog-card-width);
        max-width: var(--home-mobile-blog-card-width);
        height: auto !important;
        scroll-snap-align: start;
        border-radius: 20px;
        overflow: visible;
    }
    .contato-page .blog-card-link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        margin-right: 0 !important;
    }
    .contato-page .blog-card-figure {
        width: 100%;
        height: auto;
        aspect-ratio: 416 / 301;
        border-radius: 20px;
        overflow: hidden;
    }
    .contato-page .blog-card-figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
    }
    .contato-page .blog-card-body {
        width: 100%;
        max-width: calc(var(--home-mobile-blog-card-width) - clamp(24px, 6.1111vw, 34px));
        margin: 16px 0 0;
        margin-left: 20px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    .contato-page .blog-card-cat {
        margin: 0;
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500 !important;
        font-size: var(--home-mobile-blog-cat-size) !important;
        line-height: 100% !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        color: #EC6608;
    }
    .contato-page .blog-card-title {
        font-family: 'Exo', sans-serif !important;
        font-weight: 500 !important;
        font-size: var(--home-mobile-blog-title-size) !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        min-height: 0;
        margin-right: 0 !important;
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        -webkit-box-orient: initial;
        width: 85%;
    }
    .contato-page .blog-card-btn {
        width: var(--home-mobile-blog-btn-width);
        height: var(--home-mobile-blog-btn-height);
        font-size: var(--home-mobile-fs-16);
        margin-top: 2px;
    }
    .contato-page .blog-card-btn span,
    .contato-page .blog-card-btn::before {
        font-family: 'ClashDisplay', sans-serif !important;
        font-weight: 500 !important;
        font-size: var(--home-mobile-fs-16) !important;
        line-height: 100% !important;
        letter-spacing: 0.1em !important;
        text-align: center;
        text-transform: uppercase;
    }

    .contato-page .section-parceiros {
        padding: 22px 0 32px;
        margin-top: -15px !important;
        overflow: visible;
    }
    .contato-page .section-parceiros .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible;
        box-sizing: border-box;
    }
    .contato-page .section-parceiros h2 {
        margin-top: 10px !important;
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--home-mobile-side-gap);
        padding-right: var(--home-mobile-side-gap);
        box-sizing: border-box;
    }
    .contato-page .section-parceiros .bg2 {
        width: 100%;
        height: 132px;
        left: 0;
        right: 0;
        top: 120px;
        transform: none;
        margin: 0;
    }
    .contato-page .parceiros-title-outside {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }
    .contato-page .section-parceiros .slide-parceiros {
        width: calc(100% - var(--home-mobile-side-gap));
        max-width: none;
        margin: 0 0 0 var(--home-mobile-side-gap) !important;
        overflow: visible;
    }
    .contato-page .section-parceiros .slide-parceiros .owl-stage-outer {
        overflow: hidden;
    }
    .contato-page .section-parceiros .slide-parceiros .owl-stage {
        display: flex !important;
        align-items: center !important;
    }
    .contato-page .section-parceiros .slide-parceiros .owl-item {
        width: var(--home-mobile-partner-slot-width) !important;
        min-width: var(--home-mobile-partner-slot-width);
        min-height: 132px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contato-page .section-parceiros .slide-parceiros .item-parceiro {
        width: var(--home-mobile-partner-slot-width);
        min-width: var(--home-mobile-partner-slot-width);
        min-height: var(--home-mobile-partner-logo-height);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .contato-page .section-parceiros .slide-parceiros .item-parceiro img {
        width: var(--home-mobile-partner-logo-width) !important;
        height: var(--home-mobile-partner-logo-height) !important;
        max-width: var(--home-mobile-partner-logo-width) !important;
        max-height: var(--home-mobile-partner-logo-height) !important;
        margin-top: 100px;
        object-fit: contain;
        object-position: center;
    }
    .contato-page .section-parceiros .slide-parceiros .item-parceiro a {
        width: 100%;
        height: var(--home-mobile-partner-logo-height);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* =====================================================================
   RESPONSIVIDADE FLUIDA · 1280 → 1920 — linha abaixo do banner (ondas-4)
   Interpola entre o snapshot (max-width:1440, cobre 1280) e o default 1920.
   ===================================================================== */
@media only screen and (min-width: 1281px) and (max-width: 1920px) {
    .contato-banner-linha {
        bottom: clamp(-186px, calc(-100px - (100vw - 1280px) * 0.134375), -100px);
        width: clamp(318px, calc(318px + (100vw - 1280px) * 0.19375), 442px);
        height: clamp(321px, calc(321px + (100vw - 1280px) * 0.165625), 427px);
    }
}

