/* --- 1. FUENTE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

.wpcf7 {
    font-family: 'Inter', sans-serif;
}

/* --- 2. ETIQUETAS Y TÍTULO LEGAL (IDÉNTICOS) --- */
/* Aquí está la magia: aplicamos el estilo a 'label' y a '.titulo-legal' a la vez */
.wpcf7 label,
.titulo-legal {
    font-weight: 300 !important; /* Light */
    color: white;
    display: block;
    margin-bottom: 8px; /* Espacio debajo del título */
    font-size: 16px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

/* --- 3. INPUTS (Cajas blancas) --- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 0px !important;
    height: 45px;
    padding: 10px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    outline: none;
}

/* --- 4. TEXTO LEGAL PEQUEÑO --- */
.wpcf7 .legal-text {
    font-size: 12px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 0px; /* Pegado al título que acabamos de crear */
}

/* --- 5. CHECKBOX --- */
.wpcf7-list-item { margin: 0 !important; padding: 0 !important; }
.wpcf7-list-item label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
}
.wpcf7-list-item-label {
    color: white;
    font-size: 13px;
    font-weight: 300;
    text-align: left;
    line-height: 1.4;
}
/* Cuadrado blanco */
.wpcf7 input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    width: 16px;
    min-width: 16px;
    height: 16px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    margin-top: 3px;
    position: relative;
}
/* Tick negro */
.wpcf7 input[type="checkbox"]:checked::after {
    content: '✔';
    color: black;
    position: absolute;
    font-size: 12px;
    left: 2px;
    top: -2px;
    font-weight: bold;
}

/* --- 6. BOTÓN LIGHT --- */
.wpcf7 input[type="submit"] {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: none;
    border-radius: 0px !important;
    padding: 15px 50px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 300 !important; /* LIGHT */
    font-size: 14px;
    cursor: pointer;
    margin-top: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.wpcf7 input[type="submit"]:hover {
    background-color: #f0f0f0 !important;
}
/* --- ESTILO DE LOS MENSAJES DE RESPUESTA --- */
.wpcf7 form .wpcf7-response-output {
    color: #ffffff !important; /* Texto BLANCO */
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    border-width: 1px !important; /* Borde fino elegante */
    margin: 20px 0 0 0 !important; /* Separación del botón */
    padding: 10px !important;
}

/* Opcional: Si quieres cambiar el color del borde verde por defecto a blanco */
/* .wpcf7 form.sent .wpcf7-response-output { border-color: #ffffff !important; } */