/* =========================================================
   ROAD 2 FIT · PROTECCIÓN DE CONTENIDO
   Impide seleccionar el contenido visible del sitio.
   Los campos editables conservan la selección para no
   dificultar el acceso ni la captura de datos personales.
   ========================================================= */

body,
body *{
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}

input,
textarea,
select,
option,
[contenteditable="true"],
[contenteditable="true"] *{
  -webkit-user-select:text;
  -moz-user-select:text;
  -ms-user-select:text;
  user-select:text;
}
