.formulario-page {
    background: #fafafa;
    padding: 40px 0 80px;
}
.formulario-page .page-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.steps-bar {
    display: flex;
    gap: 40px;
    padding: 0 0 0;
}
.step-indicator {
    font-size: 0.9rem;
    color: #aaa;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
    cursor: default;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.step-indicator.active {
    color: #1a1a2e;
    font-weight: 600;
    border-bottom-color: #e94560;
}
.step-indicator.completed {
    color: #1a1a2e;
    border-bottom-color: #1a1a2e;
}

.form-body {
    padding: 40px 0 0;
}
.step-panel {
    display: none;
}
.step-panel.active {
    display: block;
}
.step-panel h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.2;
}
.step-panel h1.search-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.step-panel .step-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row.full {
    grid-template-columns: 1fr;
}
.form-field {
    display: flex;
    flex-direction: column;
}
.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
    outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #e94560;
}
.form-field textarea {
    resize: vertical;
    min-height: 100px;
}
.form-field input::placeholder {
    color: #bbb;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    gap: 16px;
}
.btn-next, .btn-submit {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    background: #e94560;
    color: white;
}
.btn-next {
    margin-left: auto;
}
.btn-next:hover, .btn-submit:hover {
    background: #d63a52;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}
.btn-back {
    background: none;
    border: none;
    color: #888;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 14px 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.btn-back:hover {
    color: #1a1a2e;
}

.faq-section {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.faq-question:hover {
    color: #e94560;
}
.faq-plus {
    font-size: 1.3rem;
    color: #e94560;
    font-weight: 300;
    min-width: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 0 18px 32px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.privacy-check input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #e94560;
}
.privacy-check label {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.5;
}
.privacy-check label a {
    color: #e94560;
    text-decoration: none;
}

.pills-input-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: text;
    transition: border-color 0.3s ease;
    min-height: 52px;
}
.pills-input-wrap:focus-within {
    border-color: #e94560;
}
.pills-input-wrap input {
    flex: 1;
    min-width: 150px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1a1a2e;
    padding: 4px 0;
    font-family: inherit;
    background: transparent;
}
.pills-input-wrap input::placeholder { color: #bbb; }
.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f1f3;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
    animation: pillIn 0.2s ease;
}
@keyframes pillIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.pill-tag .pill-x {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    color: white;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: 1;
}
.pill-tag .pill-x:hover {
    background: #e94560;
}

.switches-section {
    margin-top: 30px;
}
.switches-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.switches-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
}
.switch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border-bottom: 1px solid #f0f0f0;
}
.switch-item.active {
}
.switch-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a2e;
}
.switch-sublabel {
    font-size: 0.75rem;
    color: #999;
    display: block;
}
.switch-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: #ddd;
    border-radius: 50px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}
.switch-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.switch-item.active .switch-toggle {
    background: #e94560;
}
.switch-item.active .switch-toggle::after {
    transform: translateX(20px);
}

.field-error { border-color: #e94560 !important; }
.error-msg { font-size: 0.8rem; color: #e94560; margin-top: 4px; display: none; }

@media (max-width: 768px) {
    .formulario-page .page-layout { padding: 0 20px; }
    .form-row { grid-template-columns: 1fr; }
    .steps-bar { gap: 20px; }
    .step-indicator { font-size: 0.8rem; }
    .step-panel h1 { font-size: 1.6rem; }
    .step-panel h1.search-title { font-size: 2rem; }
    .switches-row { grid-template-columns: 1fr; }
}
