body {
  font-family: Arial, sans-serif;
  max-width: 400px;
  margin: 40px auto;
  text-align: center;
  background: #f6f6f6;
  padding: 20px;
  border-radius: 10px;
}
h1 { color: #c91f2b; }
input {
  width: 80%;
  padding: 10px;
  font-size: 16px;
}
button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #c91f2b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
button:hover { background-color: #a41620; }
iframe {
  border: 1px solid #ccc;
  margin-top: 10px;
}


/* ===== FOOTER AL FONDO GARANTIZADO ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh; /* fuerza a ocupar toda la altura de la ventana */
  padding-bottom: 40px; /* deja espacio para el footer fijo */
  box-sizing: border-box;
}

#footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
}

#firma {
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

#firma:hover {
  color: #b30000;
}
