/* === TYPEFORM FULLSCREEN === */
.typeform {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-bg);
    overflow: hidden;
}
.typeform-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-border);
    z-index: 2;
}
.typeform-progress-bar {
    height: 100%;
    background: var(--color-gold);
    transition: width 0.4s ease;
    width: 0%;
}
.typeform-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 32px;
    cursor: pointer;
    transition: color var(--transition);
}
.typeform-close:hover { color: var(--color-text); }

/* === SLIDES === */
.typeform-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.tf-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.tf-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.tf-slide.exit-up {
    opacity: 0;
    transform: translateY(-40px);
    pointer-events: none;
}
.tf-slide-content {
    width: 100%;
    max-width: 560px;
    padding: 24px;
}

/* === LABELS & INPUTS === */
.tf-label {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(24px, 5vw, 36px);
    color: var(--color-text);
    margin-bottom: 32px;
}
.tf-hint {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    margin: -20px 0 28px;
    opacity: 0.85;
}
.tf-input {
    width: 100%;
    padding: 16px 0;
    font-size: 20px;
    font-family: var(--font-body);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-border);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition);
}
.tf-input:focus {
    border-bottom-color: var(--color-gold);
}
.tf-input::placeholder {
    color: var(--color-text-dim);
}
.tf-input-prefix {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-border);
    transition: border-color var(--transition);
}
.tf-input-prefix:focus-within {
    border-bottom-color: var(--color-gold);
}
.tf-input-prefix span {
    font-size: 20px;
    color: var(--color-gold);
    margin-right: 8px;
}
.tf-input-prefix .tf-input {
    border-bottom: none;
}

/* === BUTTONS === */
.tf-next {
    margin-top: 32px;
    display: block;
}
.tf-back {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 14px;
    cursor: pointer;
    margin-top: 16px;
    font-family: var(--font-body);
}
.tf-back:hover { color: var(--color-text); }
.tf-skip {
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
    font-family: var(--font-body);
    text-decoration: underline;
}

/* === CONFIRMATION === */
.tf-summary {
    background: var(--color-bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.tf-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}
.tf-summary-item:last-child { border-bottom: none; }
.tf-summary-label { color: var(--color-text-muted); }
.tf-summary-value { color: var(--color-text); font-weight: 500; }
.tf-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-muted);
}
.tf-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-gold);
    width: 18px;
    height: 18px;
}

/* === SUCCESS === */
.tf-success { text-align: center; }
.tf-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.tf-success h2 { color: var(--color-gold); margin-bottom: 8px; }
.tf-pix-box {
    background: var(--color-bg-light);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}
.tf-pix-box h3 { font-size: 18px; margin-bottom: 16px; }
.tf-pix-key {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gold);
    background: var(--color-bg);
    padding: 12px;
    border-radius: var(--radius-sm);
    user-select: all;
    cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
    .tf-label { font-size: 22px; margin-bottom: 24px; }
    .tf-input { font-size: 18px; }
}
