
.consulta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
    padding: 5rem 2rem;
    position: relative;
}

#formulario {
    scroll-margin-top: 100px;
}

/* Elementos decorativos de fondo */
.consulta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.consulta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Título con estrella igual que los demás H2 */
.consulta-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Estrella sobre el título del formulario */
.consulta-title::before {
    content: '✦';
    display: block;
    text-align: center;
    color: var(--brand-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Línea decorativa bajo el título */
.consulta-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-red));
    margin: 20px auto 0;
    border-radius: 2px;
}

.consulta-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 5px solid var(--brand-orange);
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.15);
    background: #fff;
}

.consent-container {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(245, 124, 0, 0.05);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--brand-orange);
}

.consent-container input { margin-top: 4px; }

.consent-container a {
    color: var(--brand-orange);
    font-weight: 600;
}

.form-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .consulta-form { padding: 2rem; }
    .consulta-title { font-size: 2rem; }
}
/* ================= CAMPO DESCRIPCIÓN A ANCHO COMPLETO ================= */
.form-group.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

.form-group.full-width textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

/* Ajuste para que el textarea no herede limitaciones del .form-row */
.form-group {
    display: flex;
    flex-direction: column;
}