/* Contenedor */
.ge-actividad-info,
.ge-desfile-info {
  max-width: 760px;
  margin: 40px auto 24px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2d8c8;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ge-actividad-info h3,
.ge-desfile-info h3 {
  margin: 0 0 16px;
  color: #4b1224;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.ge-actividad-info div,
.ge-desfile-info div {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}

.ge-actividad-info div p,
.ge-desfile-info div p {
  margin: 0 0 12px;
}

.ge-actividad-info > p,
.ge-desfile-info > p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 12px 0 0;
  padding: 10px 14px;
  background: #f8f5ef;
  border-radius: 999px;
  color: #333;
  font-size: 14px;
}

.ge-actividad-info > p strong,
.ge-desfile-info > p strong {
  color: #4b1224;
}

/* Formulario */
.ge-formulario-entrada {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2d8c8;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ge-formulario-entrada > div:not(.ge-formulario-mensaje) {
  margin-bottom: 20px;
}

.ge-formulario-entrada label {
  display: block;
  margin-bottom: 8px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.ge-formulario-entrada input[type="email"],
.ge-formulario-entrada input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d8cbbd;
  border-radius: 10px;
  background: #ffffff;
  color: #222;
  font-size: 15px;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ge-formulario-entrada input[type="email"]:focus,
.ge-formulario-entrada input[type="text"]:focus {
  outline: none;
  border-color: #4b1224;
  box-shadow: 0 0 0 3px rgba(75, 18, 36, 0.12);
}

.ge-formulario-entrada button[type="submit"] {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  border: none;
  border-radius: 10px;
  background: #4b1224;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.ge-formulario-entrada button[type="submit"]:hover {
  background: #651a32;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(75, 18, 36, 0.22);
}

.ge-formulario-entrada button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

.ge-formulario-mensaje {
  margin-top: 16px !important;
  font-size: 14px;
  line-height: 1.5;
}

.ge-actividad-info,
.ge-formulario-entrada,
.ge-desfile-info {
  font-family: inherit;
}

/* Responsive */
@media (max-width: 600px) {
  .ge-actividad-info,
  .ge-desfile-info,
  .ge-formulario-entrada {
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
    padding: 20px;
    border-radius: 14px;
  }

  .ge-actividad-info,
  .ge-desfile-info {
    margin-top: 24px;
  }

  .ge-actividad-info h3,
  .ge-desfile-info h3 {
    font-size: 24px;
  }

  .ge-actividad-info > p,
  .ge-desfile-info > p {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: 0;
  }

  .ge-formulario-entrada button[type="submit"] {
    font-size: 15px;
  }
}

.ge-legal-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid #e2d8c8;
  border-radius: 14px;
  background: #ffffff;
  color: #111;
  font-size: 13px;
  line-height: 1.45;
}

.ge-legal-box p {
  margin: 0 0 14px;
}

.ge-legal-box a {
  color: #005ea8;
  text-decoration: underline;
}

.ge-legal-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.ge-legal-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.ge-boton-reserva:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(1);
}

.ge-boton-reserva.ge-boton-activo {
  opacity: 1;
  cursor: pointer;
  filter: none;
  box-shadow:
    0 0 0 3px rgba(75, 18, 36, 0.15),
    0 10px 24px rgba(75, 18, 36, 0.18);
}

/*popup*/
/* Popup reserva confirmada */
.ge-popup-exito-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 12, 15, 0.55);
  box-sizing: border-box;
  animation: gePopupFadeIn 0.2s ease forwards;
}

.ge-popup-exito {
  position: relative;
  width: 100%;
  max-width: 430px;
  padding: 34px 28px 28px;
  background: #ffffff;
  border: 1px solid #e2d8c8;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
  box-sizing: border-box;
  animation: gePopupEntrada 0.25s ease forwards;
}

.ge-popup-exito-cerrar {
  position: absolute;
  top: 16px;
  right: 18px;
  width: auto;
  height: auto;
  padding: 4px;
  border: none;
  background: transparent;
  color: #4b1224;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.ge-popup-exito-cerrar:hover {
  background: transparent;
  color: #4b1224;
}

.ge-popup-exito-icono {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #4b1224;
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 64px;
}

.ge-popup-exito h3 {
  margin: 0 0 10px;
  color: #4b1224;
  font-size: 24px;
  font-weight: 800;
}

.ge-popup-exito p {
  margin: 0 0 24px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.ge-popup-exito-boton {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  background: #4b1224;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.ge-popup-exito-boton:hover {
  background: #651a32;
}

.ge-popup-saliendo {
  animation: gePopupFadeOut 0.2s ease forwards;
}

@keyframes gePopupFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gePopupFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes gePopupEntrada {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
