 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      background: url('images/Grupo.png') no-repeat center center/cover;
      color: #fff;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header, footer {
      background: #000;
      text-align: center;
      padding: 30px 10px;
    }

    header img {
      max-width: 280px;
      height: auto;
    }

    footer {
      font-size: 18px;
      color: #fff;
    }

    .container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px 20px;
    }

    .form-box {
      max-width: 400px;
      width: 100%;
      /*background: rgba(0, 0, 0, 0.7);*/
      padding: 30px 20px;
      border-radius: 12px;
      text-align: center;
    }

    .registrate{
      width: 350px;justify-self:center; 
      font-family: 'Majesti', serif;
      font-size:31px; 
      line-height:1.2; 
      margin-bottom:6%;

    }

    .contacto{
      margin-top:30px; 
      display:flex; 
      justify-content:center; 
      gap:40px;
    }

    .key-icon {
      width: 208px;
      margin: 15px auto;
    }

    h2 {
      font-size: 28px;
      font-weight: 300;
      margin-bottom: 10px;
    }

    p {
      font-size: 16px;
      line-height: 1.4;
      margin-bottom: 0px;
    }

    input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: none;
      border-radius: 0px;
      font-size: 14px;
    }

    .btn {
      display: block;
      margin-left: auto;
      background: #9c8a6a;
      border: none;
      color: #fff;
      padding: 14px;
      font-size: 16px;
      border-radius: 0px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: bold;
      width: 100%;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 22%;
    }

    .btn:hover {
      background: #b49b72;
    }

    .links {
      margin-top: 25px;
    }

    .links a {
      display: block;
      color: #fff;
      text-decoration: none;
      margin: 5px 0;
      font-size: 15px;
    }

    .legal {
      margin-top: 20px;
      font-size: 12px;
      color: #aaa;
    }

    .legal a {
      color: #fff;
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 480px) {
      h2 {
        font-size: 22px;
      }

      p {
        font-size: 14px;
      }

      .btn {
        width: 100%;
      }
    }


    /* ===== MODAL ===== */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000;
  color: #fff;
  max-width: 360px;
  width: 90%;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #9c8a6a;
  position: relative;
}

.modal-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.modal-content .intro {
  font-size: 42px;
  font-style: italic;
  margin-bottom: 25px;
}

.pasos {
  display: flex;
  flex-direction: column;
  gap: 15px; /* espacio entre pasos */
}

.paso {
  display: flex;
  align-items: flex-start; /* alinear icono y texto arriba */
  gap: 25px; /* espacio entre icono y texto */
  font-size: 14px;
  color: #fff;
}

.paso strong {
  color: #fff;
}

.paso .icono {
  flex-shrink: 0;  /* evita que el ícono se deforme */
  width: 30px;     /* ancho fijo para todos los checks */
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paso .icono img {
  width: 100%;
  height: auto;
  display: block;
}

.paso p {
  margin: 0;
  line-height: 1.4;
  font-size: 17px;
  text-align: left; /* asegura alineación a la izquierda */
}


.cerrar {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.btn-cerrar {
  margin-top: 5px;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
}

@font-face {
  font-family: 'Majesti';
  src: url('Majesti-Banner-LightItalic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.botonmodal{
  color: #9c8a6a;
  font-size: 20px;
}

.beneficios{
  font-size: 19px;
}

#toast-container > .toast {
  background-color: #9c8a6a !important;
  color: #FFF !important;
}

#toast-container.toast-top-center {
  top: 90px; /* ajusta la distancia desde arriba */
}


@media (max-width: 768px) {

      header, footer {
      background: #000;
      text-align: center;
      padding: 10px 10px;
    }

    header img {
      max-width: 280px;
      height: auto;
    }

    footer {
      font-size: 18px;
      color: #fff;
    }

    .container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0px 20px;
    }

    .form-box {
      max-width: 400px;
      width: 100%;
      /*background: rgba(0, 0, 0, 0.7);*/
      padding: 0px 20px;
      border-radius: 12px;
      text-align: center;
    }

    .registrate{
      width: 350px;justify-self:center; 
      font-family: 'Majesti', serif;
      font-size:22px; 
      line-height:1.2; 
      margin-bottom:2%;

    }

    .contacto{
      margin-top:10px; 
      display:flex; 
      justify-content:center; 
      gap:40px;
    }

    .key-icon {
      width: 180px;
      margin: 10px auto 0px auto;
    }

    h2 {
      font-size: 28px;
      font-weight: 300;
      margin-bottom: 10px;
    }

    p {
      font-size: 16px;
      line-height: 1.4;
      margin-bottom: 0px;
    }

    input {
      width: 100%;
      padding: 12px;
      margin: 6px 0;
      border: none;
      border-radius: 0px;
      font-size: 14px;
    }

    .btn {
      display: block;
      margin-left: auto;
      background: #9c8a6a;
      border: none;
      color: #fff;
      padding: 14px;
      font-size: 16px;
      border-radius: 0px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: bold;
      width: 100%;
      text-align: center;
      margin-top: 10px;
      margin-bottom: 7%;
    }

    .btn:hover {
      background: #b49b72; 
    }

    .links {
      margin-top: 25px;
    }

    .links a {
      display: block;
      color: #fff;
      text-decoration: none;
      margin: 0px 0;
      font-size: 15px;
    }

    .legal {
      margin-top: 16px;
      font-size: 12px;
      color: #aaa;
      margin-bottom: 7px;
    }

    .legal a {
      color: #fff;
      text-decoration: underline;
    }

        /* ===== MODAL ===== */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000;
  color: #fff;
  max-width: 360px;
  width: 90%;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #9c8a6a;
  position: relative;
}

.modal-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.modal-content .intro {
  font-size: 42px;
  font-style: italic;
  margin-bottom: 25px;
}

.pasos {
  display: flex;
  flex-direction: column;
  gap: 15px; /* espacio entre pasos */
}

.paso {
  display: flex;
  align-items: flex-start; /* alinear icono y texto arriba */
  gap: 25px; /* espacio entre icono y texto */
  font-size: 14px;
  color: #fff;
}

.paso strong {
  color: #fff;
}

.paso .icono {
  flex-shrink: 0;  /* evita que el ícono se deforme */
  width: 30px;     /* ancho fijo para todos los checks */
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paso .icono img {
  width: 100%;
  height: auto;
  display: block;
}

.paso p {
  margin: 0;
  line-height: 1.4;
  font-size: 17px;
  text-align: left; /* asegura alineación a la izquierda */
}


.cerrar {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.btn-cerrar {
  margin-top: 5px;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
}

@font-face {
  font-family: 'Majesti';
  src: url('Majesti-Banner-LightItalic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.botonmodal{
  color: #9c8a6a;
  font-size: 15px;
}

.beneficios{
  font-size: 19px;
}

}