/* Suscripción profesional estilo Flutter */
.subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.input:focus {
    border-color: #f5c518; /* amarillo Flutter */
}

.btn {
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.btn--next {
    background: #000;
    color: #f5c518;
}

.btn--brand {
    background: #000;
    color: #f5c518;
}

.btn:hover {
    opacity: 0.9;
}

#sub-msg {
    font-size: 0.9rem;
    color: #f5c518;
    margin-top: 10px;
}
