/* Reset y base */
html,
body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  /* Garantiza altura completa */
  overflow-x: clip;
  /* Evita scroll horizontal fantasma */
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f0f4fd 0%, #e0e7ff 100%);
  position: relative;
  box-sizing: border-box;
}


/* blobs decorativos fijos (no afectan al layout) */
body::before,
body::after {
  content: "";
  position: fixed;
  /* <-- cambió */
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  /* no bloquea interacción */
}

body::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -120px;
  background: radial-gradient(circle, #6366f1 0%, #ec1e78 80%);
}

body::after {
  width: 340px;
  height: 340px;
  right: -100px;
  bottom: -100px;
  background: radial-gradient(circle, #0eff9b 0%, #6366f1 80%);
}

#selector-sede,
#formulario-consentimiento,
form {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Títulos y textos */
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 18px;
  text-align: center;
}

p {
  text-align: center;
}

/* Logo */
.logoform {
  max-width: 180px;
  margin-bottom: 24px;
  display: block;
}

/* Formularios */
form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(99, 102, 241, 0.10);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;

  @media screen and (max-width: 600px) {


    width: 90%;
    padding: 24px 16px;
    margin: 20px auto;


  }
}

/* Contenedor principal del consentimiento */
.consentimiento {
    border: 1px solid #ccc;
    padding: 10px;
    background: #f9f9f9;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 20px;
}

/* Párrafos con espaciado */
.consentimiento p {
    margin-bottom: 12px;
    text-align: start;
}

/* Negritas */
.consentimiento b {
    font-weight: bold;
}


/* Etiquetas y campos */
label {
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 8px;
  display: block;
  width: 100%;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  margin-bottom: 18px;
  font-size: 16px;
  background: #f8fafc;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #6366f1;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
  field-sizing: content;
}

/* Botones */
.buttongroup {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

button {
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  transition: transform 0.1s;
  margin-right: 10px;
}

button:nth-child(1) {
  background: linear-gradient(90deg, #f87171 0%, #fca5a5 100%);
}

button:nth-child(2) {
  background: linear-gradient(90deg, #0eff9b 0%, #6dfa60 100%);
}

button:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Selector de sede */
.sede-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  width: 100%;
  max-width: 400px;
}

.sede-selector h1 {
  font-size: 1.8em;
  margin-bottom: 16px;
  color: #000000;
  text-align: center;
  margin-bottom: 100px;

  @media screen {
    width: 80%;
    margin-bottom: 10px;

  }

}

.sede-selector button {
  width: 100%;
  min-width: 220px;
  max-width: 350px;
  margin: 10px 0;
  padding: 18px 0;
  font-size: 1.2em;
  background-color: #ec1e78;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);

  @media (max-width: 600px) {
    width: 80%;
  }
}

.sede-selector button:hover {
  background-color: #c2185b;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 600px) {
  .sede-selector {
    max-width: 95vw;
  }

  .sede-selector button {
    min-width: 0;
    max-width: 100%;
    font-size: 1em;
    padding: 14px 0;
  }

  body::before {
    width: 220px;
    height: 220px;
    left: -60px;
    top: -60px;
  }

  body::after {
    width: 180px;
    height: 180px;
    right: -50px;
    bottom: -50px;
  }
}

/* Firma */
#signature-pad {
  border-radius: 8px;
  border: 2px solid #6366f1;
  background: #f0f0f0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  margin-bottom: 18px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Consentimiento */
#formulario-consentimiento {
  display: none;
}

/* Utilidades */
.no-select {
  user-select: none;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE/Edge */
  -moz-user-select: none;
  /* Firefox */
  touch-action: manipulation;
  pointer-events: none;
}