/* FORMULÁRIO ESTILO TYPEFORM */

.page-form {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.form-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.typeform-form {
    position: relative;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-content {
    text-align: left;
    padding: 60px 0;
}

.step-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 24px;
    line-height: 1.3;
}

.step-label {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-text);
    display: block;
    margin-bottom: 12px;
}

.step-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 48px;
    line-height: 1.6;
}

.step-description-optional {
    font-size: 14px;
    color: #9CA3AF;
    font-style: italic;
    margin-bottom: 32px;
    display: block;
}

.step-example {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.required-asterisk {
    color: #EF4444;
    font-size: 24px;
    margin-left: 4px;
}

/* INPUTS */
.form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #374151;
    color: var(--light-text);
    font-size: 18px;
    font-family: inherit;
    padding: 12px 0;
    margin-bottom: 48px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--primary-green);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6B7280;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.textarea-hint {
    font-size: 14px;
    color: #6B7280;
    margin-top: -32px;
    margin-bottom: 48px;
}

/* PHONE INPUT */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #374151;
    padding-bottom: 12px;
    margin-bottom: 48px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.country-selector:hover {
    background: rgba(255, 255, 255, 0.05);
}

.flag-icon {
    font-size: 20px;
}

.chevron {
    color: var(--gray-text);
    font-size: 12px;
}

.phone-input {
    flex: 1;
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.phone-input-wrapper:focus-within {
    border-bottom-color: var(--primary-green);
}

/* CHOICE OPTIONS */
.choice-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.choice-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #374151;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.choice-option:hover {
    border-color: var(--primary-green);
    background: rgba(16, 185, 129, 0.05);
}

.choice-option input[type="radio"] {
    display: none;
}

.choice-option input[type="radio"]:checked + .choice-letter {
    background: var(--primary-green);
    color: #000;
    border-color: var(--primary-green);
}

.choice-option input[type="radio"]:checked ~ .choice-text {
    color: var(--light-text);
    font-weight: 600;
}

.choice-letter {
    width: 40px;
    height: 40px;
    border: 2px solid #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-text);
    margin-right: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.choice-text {
    color: var(--gray-text);
    font-size: 16px;
    transition: color 0.3s ease;
}

/* BUTTONS */
.btn-continue {
    margin-top: 32px;
    position: relative;
    padding: 20px 48px;
    font-size: 16px;
    font-weight: 600;
    width: auto;
    min-width: 200px;
}

.key-hint {
    position: absolute;
    right: -120px;
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

/* THANK YOU PAGE */
.thank-you-content {
    text-align: center;
    padding: 60px 0;
}

.thank-you-text {
    font-size: 24px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-description {
    font-size: 14px;
    color: #9CA3AF;
    font-style: italic;
    margin-bottom: 48px;
}

.btn-calendly {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 32px;
    min-width: 250px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .step-title {
        font-size: 32px;
    }

    .step-label {
        font-size: 20px;
    }

    .step-description {
        font-size: 16px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
    }

    .choice-option {
        padding: 16px;
    }

    .choice-text {
        font-size: 15px;
    }

    .key-hint {
        display: none;
    }

    .btn-continue {
        width: 100%;
    }

    .thank-you-text {
        font-size: 20px;
    }
}
