.lead-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 45px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-rla {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-sec);
    padding-left: 5px;
}

/* --- UNIFICACIÓN DE INPUTS Y SELECTS --- */
.form-rla input, 
.form-rla select {
    padding: 18px 25px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #f9f9fb;
    font-size: 1rem;
    font-family: inherit; /* Hereda la tipografía Plus Jakarta Sans */
    color: var(--text-main);
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    box-sizing: border-box;
    /* Elimina el diseño nativo de los selects en Safari/Chrome/Firefox */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Estilo específico para Select (Añadimos flecha personalizada) */
.form-rla select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px; /* Espacio para que el texto no choque con la flecha */
}

/* --- FOCO UNIFICADO --- */
.form-rla input:focus, 
.form-rla select:focus {
    outline: none;
    border-color: var(--cherry);
    background: white;
    box-shadow: 0 10px 20px rgba(230, 29, 66, 0.05);
}

.btn-submit {
    background: var(--text-main);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--cherry);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 29, 66, 0.2);
}

/* Ajuste responsivo para tablets y móviles */
@media (max-width: 992px) {
    .lead-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
}