/* Typeform fullscreen compartilhado por LPs autossuficientes.
   A home já possui estas regras em style.css. */
.tg-tf-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    background: #0c0c0d;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s cubic-bezier(0, 0, .36, 1), visibility .35s cubic-bezier(0, 0, .36, 1);
}

.tg-tf-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.tg-tf-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .1);
}

.tg-tf-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--si-blue, #1283c4);
    transition: width .35s cubic-bezier(0, 0, .36, 1);
}

.tg-tf-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transition: background-color .35s ease;
}

.tg-tf-close:hover { background: rgba(255, 255, 255, .18); }

.tg-tf-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-tf-step {
    width: 100%;
    max-width: 640px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .4s ease, transform .4s ease;
}

.tg-tf-step.is-in {
    opacity: 1;
    transform: none;
}

.tg-tf-eyebrow,
.tg-tf-count {
    margin-bottom: 16px;
    font-family: var(--si-font-display, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--si-blue-bright, #41b1f2);
}

.tg-tf-title,
.tg-tf-q {
    font-family: var(--si-font-display, 'Outfit', sans-serif);
    font-weight: 600;
    color: #fff;
    text-transform: none;
}

.tg-tf-title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.1;
}

.tg-tf-q {
    margin-bottom: 8px;
    font-size: clamp(22px, 4vw, 34px);
    line-height: 1.2;
}

.tg-tf-opt {
    font-size: .6em;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
}

.tg-tf-sub {
    max-width: 540px;
    margin: 14px 0 28px;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
}

.tg-tf-sub-highlight {
    font-weight: 700;
    color: var(--si-blue-bright, #41b1f2);
}

.tg-tf-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.tg-tf-option {
    padding: 18px 22px;
    border: 1.5px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    transition: border-color .35s ease, background-color .35s ease, transform .35s ease;
}

.tg-tf-option:hover,
.tg-tf-option.is-sel {
    border-color: var(--si-blue, #1283c4);
    background: rgba(18, 131, 196, .14);
    transform: translateX(4px);
}

.tg-tf-input {
    width: 100%;
    margin-top: 22px;
    padding: 14px 4px;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, .2);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: clamp(18px, 3vw, 24px);
    transition: border-color .35s ease;
}

textarea.tg-tf-input {
    min-height: 70px;
    resize: vertical;
    line-height: 1.4;
}

.tg-tf-input::placeholder { color: rgba(255, 255, 255, .3); }
.tg-tf-input:focus { outline: 0; border-color: var(--si-blue, #1283c4); }
.tg-tf-input + .tg-tf-input { margin-top: 16px; }

.tg-tf-error {
    margin: 14px 0 0;
    color: #ff7a7a;
    font-size: 14px;
    font-weight: 600;
}

.tg-tf-overlay .tg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-top: 28px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #3fd0ff 0%, var(--si-neon-deep, #0b8fd9) 100%);
    box-shadow: 0 14px 40px rgba(34, 196, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .28);
    color: #fff;
    font-family: var(--si-font-display, 'Outfit', sans-serif);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
    cursor: pointer;
    transition: transform .35s ease, filter .35s ease;
}

.tg-tf-overlay .tg-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.tg-tf-overlay .tg-button:disabled { opacity: .6; cursor: wait; transform: none; }
.tg-tf-step [data-tg-turnstile] { margin-top: 20px; }

.tg-tf-foot {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 640px;
    height: 64px;
    margin: 0 auto;
}

.tg-tf-back {
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.tg-tf-back:hover { color: #fff; }
.tg-tf-hint { color: rgba(255, 255, 255, .35); font-size: 12px; }

@media (max-width: 767px) {
    .tg-tf-overlay { padding-inline: 20px; }
    .tg-tf-foot { height: 56px; }
    .tg-tf-hint { display: none; }
    .tg-tf-overlay .tg-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .tg-tf-overlay,
    .tg-tf-progress span,
    .tg-tf-step,
    .tg-tf-option,
    .tg-tf-overlay .tg-button { transition: none; }
}
