body {
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: #e0f7fa;
    text-align: center;
  }
  
  h1 {
    color: #01579b;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .boton-inscribirse {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #4fc3f7;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background-color 0.4s ease; /* ← TRANSICIÓN */
  }
  
  .boton-inscribirse:hover {
    background-color: #0288d1; /* ← COLOR AL PASAR EL MOUSE */
  }
  