
:root {
    --antares-bg: #010318;
    --antares-panel: #12162b;
    --antares-input: #0c1022;
    --antares-red: #d6013b;
    --antares-red-soft: #e67493;
    --antares-red-dark: #aa0035;
    --antares-text: #ffffff;
    --antares-line: rgba(255,255,255,.12);
    --antares-ease: cubic-bezier(.03,.78,.33,1);
}

html.antares-form-open,
body.antares-form-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

html.antares-scroll-restore {
    scroll-behavior: auto !important;
}

.antares-form-overlay,
.antares-form-overlay * {
    box-sizing: border-box;
}

.antares-form-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    pointer-events: none;
    font-family: "Poppins", Arial, sans-serif;
}

.antares-form-overlay.is-preparing,
.antares-form-overlay.is-open {
    visibility: visible;
}

.antares-form-overlay.is-open {
    pointer-events: auto;
}

.antares-form-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(1,3,24,.84);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    transition: opacity .32s ease;
}

.antares-form-overlay.is-open .antares-form-backdrop {
    opacity: 1;
}

.antares-form-modal {
    position: relative;
    width: 560px;
    height: 460px;
    padding: 48px 38px 18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    color: var(--antares-text);
    background:
        radial-gradient(circle at 100% 0%, rgba(214,1,59,.16), transparent 35%),
        var(--antares-panel);
    box-shadow: 0 30px 80px rgba(0,0,0,.40);
    opacity: 0;
    transform: translate3d(0,20px,0) scale(.986);
    transition:
        opacity .40s var(--antares-ease),
        transform .48s var(--antares-ease);
    overflow: visible;
    isolation: isolate;
}

.antares-form-overlay.is-open .antares-form-modal {
    opacity: 1;
    transform: translate3d(0,0,0) scale(1);
}

.antares-form-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    border-radius: inherit;
    background: #010318;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .42s ease, visibility 0s linear .42s;
}

.antares-form-modal.is-loader-mode::before {
    opacity: 1;
    visibility: visible;
    transition: opacity .42s ease, visibility 0s;
}

/* X fora do painel: canto superior direito da viewport. */
.antares-form-close {
    position: fixed;
    z-index: 1000001;
    top: 20px;
    right: 22px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 0;
    cursor: pointer;
    transform: translate3d(0,-5px,0);
    transition:
        opacity .22s ease,
        transform .34s var(--antares-ease) !important;
}

.antares-form-overlay.is-open .antares-form-close {
    opacity: .70;
    transform: translate3d(0,0,0);
}

.antares-form-close:hover {
    opacity: 1 !important;
    transform: translate3d(0,0,0) !important;
}

.antares-form-close svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #fff;
}

.antares-form-content {
    position: relative;
    z-index: 3;
    height: 100%;
    opacity: 1;
    transition: opacity .22s ease, transform .26s var(--antares-ease);
}

.antares-form-content.is-final-leaving {
    opacity: 0;
    transform: translate3d(0,-5px,0);
    pointer-events: none;
}

/* ---------- Títulos ---------- */


.antares-title-step1,
.antares-title-step2 {
    position: absolute;
    inset: 0;
    will-change: opacity, transform;
}

.antares-title-step1 {
    opacity: 1;
    transform: translate3d(0,0,0);
    transition: opacity .22s ease, transform .31s var(--antares-ease);
}

.antares-title-step2 {
    opacity: 0;
    transform: translate3d(0,18px,0);
    pointer-events: none;
    transition: opacity .28s ease, transform .36s var(--antares-ease);
}

.antares-title-step1 h2,
.antares-title-step2 h3,
.antares-success-stage h3 {
    margin: 0;
    font-family: "Antares", "Times New Roman", serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.2px;
}

.antares-title-step1 h2 {
    font-size: 38px;
    line-height: 1.08;
    white-space: nowrap;
}

.antares-title-step1 p {
    max-width: 100%;
    margin: 8px 0 0;
    color: rgba(255,255,255,.60);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.42;
    font-weight: 400;
}

.antares-title-step2 h3 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.12;
}

.antares-form-content.is-forwarding .antares-title-step1 {
    opacity: 0;
    transform: translate3d(0,17px,0);
}

.antares-form-content.is-step-two .antares-title-step1 {
    opacity: 0;
    transform: translate3d(0,17px,0);
    pointer-events: none;
}

.antares-form-content.is-step-two .antares-title-step2 {
    opacity: 1;
    transform: translate3d(0,0,0);
}

.antares-form-content.is-returning .antares-title-step2 {
    opacity: 0;
    transform: translate3d(0,20px,0);
    transition-duration: .24s;
}

/* ---------- Progresso ---------- */

.antares-form-progress {
    position: relative;
    z-index: 6;
    height: 31px;
    margin: 0 0 1px;
}

.antares-form-progress-track {
    width: 100%;
    height: 4px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,.09);
}

.antares-form-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#d6013b,#e72a60);
    transition: width .32s var(--antares-ease);
}

.antares-form-progress-copy {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
    color: rgba(255,255,255,.42);
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1;
}

/* ---------- Etapas ---------- */

.antares-form-stage,
#antares-diagnostico-form,
.antares-form-step {
    position: relative;
    width: 100%;
    height: 263px;
}

.antares-form-stage,
#antares-diagnostico-form {
    overflow: visible;
}

.antares-form-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.antares-form-step.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.antares-form-step.is-leaving {
    opacity: 0;
    transform: translate3d(0,-6px,0);
    transition: opacity .20s ease, transform .23s var(--antares-ease);
    pointer-events: none;
}

.antares-honeypot,
.antares-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ---------- Etapa 1 ---------- */

.antares-form-step-1 {
    padding-top: 6px;
}

.antares-field {
    position: relative;
    margin: 0 0 13px;
}

.antares-input-shell {
    position: relative;
    width: 100%;
}

.antares-input-icon {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 50%;
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,.46);
    transform: translateY(-50%);
    pointer-events: none;
    transition: color .16s ease;
}

.antares-input-icon-whatsapp {
    width: 19px;
    height: 19px;
}

.antares-input-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.antares-input-icon path {
    fill: currentColor;
}

.antares-input-shell:focus-within .antares-input-icon {
    color: rgba(255,255,255,.80);
}

.antares-field input {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 49px !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    border-radius: 11px !important;
    outline: 0 !important;
    background: var(--antares-input) !important;
    color: #f5f5f7 !important;
    box-shadow: none !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: border-color .16s ease, background-color .16s ease !important;
}

.antares-field input::placeholder {
    color: rgba(255,255,255,.36) !important;
    opacity: 1;
}

.antares-field input:focus {
    border-color: rgba(214,1,59,.70) !important;
    background: #0d1125 !important;
}

.antares-field.has-error input {
    border-color: rgba(255,74,105,.82) !important;
}

.antares-field-error,
.antares-investment-error,
.antares-form-status {
    font-family: "Poppins", Arial, sans-serif;
    color: #ff728d;
    font-size: 10.5px;
}

.antares-field-error {
    display: block;
    min-height: 2px;
    margin-top: 2px;
}

/* ---------- Etapa 2: layout preservado ---------- */

.antares-form-step-2 {
    padding-top: 10px;
}

.antares-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.antares-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: var(--antares-input);
    cursor: pointer;
    transition:
        border-color .16s ease,
        background-color .16s ease,
        transform .16s ease;
}

.antares-option:hover {
    border-color: rgba(214,1,59,.38);
    background: #10142a;
    transform: translate3d(0,-1px,0);
}

.antares-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.antares-option-radio {
    position: relative;
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    transition: background-color .16s ease, border-color .16s ease;
}

.antares-option-radio::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transition: transform .16s ease;
}

.antares-option-text {
    color: rgba(255,255,255,.82);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 600;
}

.antares-option:has(input:checked) {
    border-color: rgba(214,1,59,.65);
    background: rgba(214,1,59,.07);
}

.antares-option input:checked + .antares-option-radio {
    border-color: var(--antares-red);
    background: var(--antares-red);
}

.antares-option input:checked + .antares-option-radio::after {
    transform: scale(1);
}

.antares-investment-error {
    display: block;
    min-height: 12px;
    margin-top: 4px;
}

/* ---------- Botões ---------- */

.antares-form-actions {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: -7px;
    display: flex;
    justify-content: flex-end;
    overflow: visible;
}

.antares-form-step-1 .antares-form-actions {
    bottom: -7px;
}

.antares-form-actions--split {
    justify-content: space-between;
    gap: 14px;
}

.antares-btn {
    position: relative;
    z-index: 21;
    min-height: 52px;
    border: 0;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.antares-btn-primary {
    width: 100%;
    padding: 0 22px !important;
    overflow: hidden;
    border: 1px solid #d6013b !important;
    border-radius: 20px / 100% !important;
    color: #fff !important;
    background: linear-gradient(to right,#e67493,#d6013b) !important;
    box-shadow:
        inset 0 0 5px 5px #ffffff25,
        0 5px 0 #aa0035,
        0 15px 10px #00000050 !important;
    transition: transform .18s ease, box-shadow .18s ease !important;
}

.antares-btn-primary::before {
    content: "";
    position: absolute;
    top: 7%;
    left: 0;
    width: 0;
    height: 86%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    transform: skewX(-20deg);
    pointer-events: none;
}

.antares-btn-primary:hover {
    z-index: 50;
    transform: scale(1.04);
}

.antares-btn-primary:hover::before {
    animation: antaresShine .46s linear;
}

.antares-btn-primary:active {
    transform: scale(1);
    box-shadow:
        inset 0 0 5px 5px #ffffff25,
        0 5px 0 #aa0035,
        0 10px 5px #00000085 !important;
}

.antares-btn-primary > span {
    position: relative;
    z-index: 2;
}

.antares-btn-continue {
    width: 210px;
}

.antares-btn-secondary {
    width: 118px;
    padding: 0 18px !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    border-radius: 12px !important;
    color: rgba(255,255,255,.72) !important;
    background: rgba(255,255,255,.035) !important;
    box-shadow: none !important;
    transition: border-color .16s ease, background-color .16s ease !important;
}

.antares-btn-secondary:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,.23) !important;
    background: rgba(255,255,255,.055) !important;
}

.antares-btn:disabled {
    opacity: .58;
    cursor: wait;
}

.antares-btn-arrow {
    display: inline-block;
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    vertical-align: -1px;
}

@keyframes antaresShine {
    0% { left: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ---------- Cascatas ---------- */

@keyframes antaresCascade {
    from {
        opacity: 0;
        transform: translate3d(0,12px,0);
    }
    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

/* Abertura completa: título -> subtítulo -> barra -> nome -> WhatsApp -> botão */
.antares-form-overlay.is-opening .antares-title-step1 h2,
.antares-form-overlay.is-opening .antares-title-step1 p,
.antares-form-overlay.is-opening .antares-form-progress,
.antares-form-overlay.is-opening .antares-form-step-1 .antares-cascade-item {
    opacity: 0;
}

.antares-form-overlay.is-opening.is-open .antares-title-step1 h2 {
    animation: antaresCascade .44s var(--antares-ease) .25s forwards;
}

.antares-form-overlay.is-opening.is-open .antares-title-step1 p {
    animation: antaresCascade .44s var(--antares-ease) .32s forwards;
}

.antares-form-overlay.is-opening.is-open .antares-form-progress {
    animation: antaresCascade .44s var(--antares-ease) .40s forwards;
}

.antares-form-overlay.is-opening.is-open .antares-form-step-1 .antares-cascade-item:nth-child(1) {
    animation: antaresCascade .44s var(--antares-ease) .48s forwards;
}

.antares-form-overlay.is-opening.is-open .antares-form-step-1 .antares-cascade-item:nth-child(2) {
    animation: antaresCascade .44s var(--antares-ease) .56s forwards;
}

.antares-form-overlay.is-opening.is-open .antares-form-step-1 .antares-cascade-item:nth-child(3) {
    animation: antaresCascade .44s var(--antares-ease) .64s forwards;
}

/* Cascata explícita ao entrar na etapa 2. */
.antares-form-step-2.run-cascade .antares-cascade-item {
    opacity: 0;
    animation: antaresCascade .42s var(--antares-ease) forwards;
}

.antares-form-step-2.run-cascade .antares-option:nth-child(1) { animation-delay: .06s; }
.antares-form-step-2.run-cascade .antares-option:nth-child(2) { animation-delay: .13s; }
.antares-form-step-2.run-cascade .antares-option:nth-child(3) { animation-delay: .20s; }
.antares-form-step-2.run-cascade .antares-form-actions { animation-delay: .27s; }

/* Cascata explícita quando volta à etapa 1. */
.antares-form-step-1.run-cascade .antares-cascade-item {
    opacity: 0;
    animation: antaresCascade .42s var(--antares-ease) forwards;
}

.antares-form-step-1.run-cascade .antares-cascade-item:nth-child(1) { animation-delay: .06s; }
.antares-form-step-1.run-cascade .antares-cascade-item:nth-child(2) { animation-delay: .13s; }
.antares-form-step-1.run-cascade .antares-cascade-item:nth-child(3) { animation-delay: .20s; }

/* ---------- Status / loader ---------- */

.antares-form-status {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    min-height: 14px;
    text-align: center;
}

.antares-submit-stage {
    position: absolute;
    z-index: 15;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.antares-loader-stage.is-visible,
.antares-success-stage.is-visible {
    opacity: 1;
    visibility: visible;
}

.antares-horse-frame {
    position: relative;
    width: 185px;
    max-width: 46vw;
}

.antares-horse-loader,
.antares-horse-hold {
    display: block;
    width: 100%;
    height: auto;
}

.antares-horse-loader {
    opacity: 0;
    transform: scale(.95);
}

.antares-horse-hold {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

.antares-loader-stage.is-visible .antares-horse-loader {
    animation: antaresHorseIn .46s ease forwards;
}

.antares-loader-stage.is-holding .antares-horse-loader {
    opacity: 0 !important;
    visibility: hidden;
    animation: none !important;
}

.antares-loader-stage.is-holding .antares-horse-hold {
    opacity: 1;
    visibility: visible;
}

.antares-loader-stage.is-exiting .antares-horse-loader,
.antares-loader-stage.is-exiting .antares-horse-hold {
    visibility: visible;
    animation: antaresHorseOut .64s var(--antares-ease) forwards !important;
}

@keyframes antaresHorseIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes antaresHorseOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.72);
    }
}

.antares-success-inner {
    width: 100%;
    max-width: 470px;
    text-align: center;
}

.antares-success-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
}

.antares-success-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.antares-success-icon path {
    fill: #d6013b;
}

.antares-success-stage h3 {
    font-size: 32px;
    line-height: 1.15;
}

.antares-success-stage p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 13.5px;
    line-height: 1.5;
}

.antares-success-spinner-wrap {
    width: 24px;
    height: 24px;
    margin: 16px auto 0;
}

.antares-success-spinner {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255,.18);
    border-top-color: var(--antares-red);
    border-radius: 50%;
    animation: antaresSuccessSpin .72s linear infinite;
}

@keyframes antaresSuccessSpin {
    to {
        transform: rotate(360deg);
    }
}

.antares-success-cascade {
    opacity: 0;
}

.antares-success-stage.is-visible .antares-success-cascade {
    animation: antaresCascade .46s var(--antares-ease) forwards;
}

.antares-success-stage.is-visible .antares-success-cascade:nth-child(1) { animation-delay: .04s; }
.antares-success-stage.is-visible .antares-success-cascade:nth-child(2) { animation-delay: .11s; }
.antares-success-stage.is-visible .antares-success-cascade:nth-child(3) { animation-delay: .18s; }
.antares-success-stage.is-visible .antares-success-cascade:nth-child(4) { animation-delay: .25s; }

/* ---------- Mobile ---------- */

@media (max-width: 640px) {
    .antares-form-overlay {
        align-items: flex-start;
        justify-content: center;
        padding: 54px 0 8px;
    }

    .antares-form-close {
        top: 10px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .antares-form-modal {
        width: 360px;
        max-width: 360px;
        height: min(400px, calc(100dvh - 64px));
        max-height: calc(100dvh - 64px);
        padding: 30px 30px 14px;
        border-radius: 24px;
        overflow-y: auto;
        overflow-x: visible;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .antares-form-modal::-webkit-scrollbar {
        display: none;
    }


    .antares-title-step1 h2 {
        font-size: 24px;
        line-height: 1.08;
        white-space: nowrap;
        padding-top: 10px;
    }

    .antares-title-step1 p {
        margin-top: 7px;
        font-size: 14px;
        line-height: 1.38;
    }

    .antares-title-step2 h3 {
        font-size: 21px;
        line-height: 1.14;
        text-wrap: balance;
    }

    .antares-form-progress {
        height: 29px;
    }

    .antares-form-stage,
    #antares-diagnostico-form,
    .antares-form-step {
        height: 251px;
    }

    .antares-form-step-1 {
        padding-top: 0px;
        margin-top: -3px;
    }

    .antares-field {
        margin-bottom: 11px;
    }

    .antares-field input {
        height: 50px;
        font-size: 16px !important;
    }

    .antares-form-step-1 .antares-form-actions {
        bottom: 7px;
    }

    .antares-form-step-2 {
        padding-top: 2px;
    }

    .antares-options {
        gap: 8px;
    }

    .antares-option {
        height: 48px;
        padding: 0 12px;
    }

    .antares-option-text {
        font-size: 11.5px;
    }

    .antares-form-step-2 .antares-form-actions {
        bottom: 7px;
    }

    .antares-btn-continue {
        width: 100%;
    }

    .antares-form-actions--split .antares-btn-secondary {
        width: 88px;
        flex: 0 0 88px;
        padding: 0 11px !important;
    }

    .antares-form-actions--split .antares-btn-primary {
        flex: 1 1 auto;
    }

    .antares-success-stage h3 {
        font-size: 27px;
    }
}

@media (max-width: 640px) and (max-height: 560px) {
    .antares-form-overlay {
        padding-top: 48px;
    }

    .antares-form-modal {
        height: calc(100dvh - 56px);
        max-height: calc(100dvh - 56px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .antares-form-backdrop,
    .antares-form-modal,
    .antares-form-close,
    .antares-form-content,
    .antares-title-step1,
    .antares-title-step2,
    .antares-form-step,
    .antares-cascade-item,
    .antares-horse-loader,
    .antares-horse-hold,
    .antares-success-cascade {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}


/* =========================================================
   v14 — overlay fora da viewport quando fechado
   ========================================================= */

.antares-form-overlay {
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(100vw, 0, 0) !important;
    transition:
        transform .46s cubic-bezier(.03,.78,.33,1),
        visibility 0s linear .46s !important;
    overscroll-behavior: contain !important;
}

.antares-form-overlay.is-preparing,
.antares-form-overlay.is-open,
.antares-form-overlay.is-closing {
    visibility: visible !important;
    transition:
        transform .46s cubic-bezier(.03,.78,.33,1),
        visibility 0s !important;
}

.antares-form-overlay.is-open {
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
}

.antares-form-overlay.is-closing {
    pointer-events: auto !important;
    transform: translate3d(100vw, 0, 0) !important;
}

.antares-form-overlay.is-open .antares-form-backdrop,
.antares-form-overlay.is-closing .antares-form-backdrop {
    pointer-events: auto !important;
}

/* O JS da v14 não adiciona mais estas classes, mas anulamos qualquer
   resíduo caso um cache entregue HTML/CSS em ordem diferente. */
html.antares-form-open,
body.antares-form-open {
    overflow: visible !important;
    overscroll-behavior: auto !important;
}

@media (max-width: 640px) {
    .antares-form-overlay {
        transform: translate3d(105vw, 0, 0) !important;
    }

    .antares-form-overlay.is-open {
        transform: translate3d(0, 0, 0) !important;
    }

    .antares-form-overlay.is-closing {
        transform: translate3d(105vw, 0, 0) !important;
    }
}


/* =========================================================
   v17 — subtítulo movido para dentro da etapa 1
   ========================================================= */

/* A title-zone não precisa mais reservar a altura antiga do subtítulo. */
.antares-title-zone {
    height: 65px;
}

.antares-step1-subtitle {
    margin: 0 0 16px;
    color: rgba(255,255,255,.60);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 400;
}

/* Estado inicial da nova cascata. */
.antares-form-overlay.is-opening .antares-step1-subtitle {
    opacity: 0;
}

/* Ordem:
   título -> barra -> subtítulo -> nome -> WhatsApp -> botão */
.antares-form-overlay.is-opening.is-open
.antares-form-step-1 .antares-step1-subtitle {
    animation: antaresCascade .44s var(--antares-ease) .48s forwards;
}

.antares-form-overlay.is-opening.is-open
.antares-form-step-1 .antares-field:nth-of-type(1) {
    animation: antaresCascade .44s var(--antares-ease) .56s forwards;
}

.antares-form-overlay.is-opening.is-open
.antares-form-step-1 .antares-field:nth-of-type(2) {
    animation: antaresCascade .44s var(--antares-ease) .64s forwards;
}

.antares-form-overlay.is-opening.is-open
.antares-form-step-1 .antares-form-actions {
    animation: antaresCascade .44s var(--antares-ease) .72s forwards;
}

/* Cascata ao voltar da etapa 2. */
.antares-form-step-1.run-cascade .antares-step1-subtitle {
    animation-delay: .06s;
}

.antares-form-step-1.run-cascade .antares-field:nth-of-type(1) {
    animation-delay: .13s;
}

.antares-form-step-1.run-cascade .antares-field:nth-of-type(2) {
    animation-delay: .20s;
}

.antares-form-step-1.run-cascade .antares-form-actions {
    animation-delay: .27s;
}

@media (max-width: 640px) {


    .antares-step1-subtitle {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.38;
    }
}