body {
  font-family: 'Segoe UI', sans-serif;
}

.titulo-principal {
  color: rgb(110, 113, 114);
}

.sub-titulo {
  color: #DA7F36;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.banner {
  max-height: 350px;
  object-fit: cover;
  width: 100%;
}

.badge-tipo {
  background-color: #7D0996;
  color: white;
}

.card-img-top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  object-fit: cover;
  height: 200px;
}

.card-title {
  font-weight: 600;
}

.btn-outline-primary {
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #7D0996;
  border-color: #7D0996;
  color: white;
}

.login-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #7D0996;
  border-radius: 2px;
}

.btn-primary:not(.sin-estilo) {
  background-color: #910AAE;
  border-color: #910AAE;
}

.btn-primary:not(.sin-estilo):hover {
  background-color: #9700B8;
  border-color: #9700B8;
}

.alert {
  font-size: 0.95rem;
}

.form-box {
  border: 2px solid #eee6ef;
  padding: 2rem;
  background-color: #fff;
}

.btn-pagar {
  background-color: #7D0996;
  border: none;
  color: #fff;
  padding: 4px 12px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-radius: 0.375rem;
}

.btn-pagar:hover {
  background-color: #9700B8;
  color: #fff;
}

.btn-cancelar {
  background-color: #dc3545;
  border: none;
  color: #fff;
  padding: 4px 12px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-radius: 0.375rem;
}

.btn-cancelar:hover {
  background-color: #bd2130;
  color: #fff;
}

.estado-pagado {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 5px 14px;
  border-radius: 15px;
  font-size: 0.80rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-uppercase::placeholder {
  text-transform: none;
}

.resaltado-amarillo {
  background-color: #FFFACD;
  color: black;
}

.requisitos {
  border: 2px solid #007bff;
  background-color: #e7f1ff;
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.floating-help-btn {
  position: fixed;
  bottom: 20px;
  /* Posiciona el botón a 20px del margen inferior */
  right: 20px;
  /* Posiciona el botón a 20px del margen derecho */
  z-index: 1050;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.floating-help-btn:hover {
  transform: scale(1.05);
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .floating-help-btn {
    bottom: 15px;
    /* También ajusta la posición en móviles */
    right: 15px;
    padding: 10px 15px;
    font-size: 14px;
  }
}