/* =====================================
   TEXTOS
===================================== */
.title {
    font-size: 36px;
    margin-bottom: 12px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 420px;
    margin-bottom: 32px;
}

.field-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2px;
    display: block;
}

.input {
    width: 100%;
    max-width: 420px;
    background: var(--bg-input);
    border: 1px solid var(--border-soft);
    padding: 14px 16px;
    border-radius: 50px;
    color: var(--text-main);
    outline: none;
}

#inputTextArea {
    border-radius: 30px;
    resize: none; /* 🚫 impede redimensionar */
    overflow-y: auto; /* ✅ scroll vertical */
}

.input:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.35);
}

/* =====================================
   TEXTO DE AJUDA
===================================== */
.helper-text {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================
   ETAPAS — VISIBILIDADE
===================================== */
/* Todas as etapas começam escondidas */
.editor-step {
    display: none;
    flex-direction: column;
    gap: 10px;
}

/* Etapa ativa visível */
.editor-step.is-active {
    display: flex;
}




