.mc4wp-form label,
.mc4wp-form input,
.mc4wp-form textarea,
.mc4wp-form select,
.mc4wp-form input::placeholder,
.mc4wp-form textarea::placeholder {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    letter-spacing: 0.2px !important;
    line-height: 1.3em !important;
    color: #4d0f15 !important;
}

.mc4wp-form p {
    margin: 0 !important;         /* elimina espacios arriba/abajo */
    padding: 0 !important;
}

.mc4wp-form label {
    display: block;
    margin: -10 0 1px 0 !important;    /* separación mínima */
    color: #4d0f15 !important;
}

/* ============================================================
   3) INPUTS ELEGANTES Y COMPACTOS
   ============================================================ */

.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"],
.mc4wp-form input[type="tel"],
.mc4wp-form textarea {
    width: 100% !important;
    margin-top: -15px !important;  
    margin-bottom: 8px !important;  
    padding: 8px 10px !important;
    border: 1px solid #4d0f15 !important;
    background: transparent !important;
    color: #4d0f15 !important;
    border-radius: 2px !important;
}

/* Placeholder */
.mc4wp-form input::placeholder,
.mc4wp-form textarea::placeholder {
    color: #4d0f15 !important;
    opacity: 0.7;
}

/* ============================================================
   4) RADIO BUTTONS COMPACTOS
   ============================================================ */

.mc4wp-form input[type="radio"] {
    margin-right: 6px !important;
}

.mc4wp-form label input[type="radio"] {
    margin-top: 0 !important;
}

.mc4wp-form label input[type="radio"] + label {
    margin-bottom: 2px !important;
	margin-top: 20px !important;
}

/* ============================================================
   5) TEXTAREA MÁS PEQUEÑO
   ============================================================ */

.mc4wp-form textarea {
    min-height: 90px !important;
}

/* ============================================================
   6) BOTÓN DE ENVÍO
   ============================================================ */

.mc4wp-form input[type="submit"] {
    background: #321110 !important;
    border: 1px solid #321110 !important;
    color: #f5f2e9 !important;
    padding: 10px 24px !important;
    margin-top: 8px !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: .3s ease;
}

.mc4wp-form input[type="submit"]:hover {
    background: #000000 !important;
    color: #f5f2e9 !important;
}

