/* Modal de suscripción */
.modal-subscription {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Asegúrate de que esté por encima de otros elementos */
}

.modal-subscription-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.btn-subscription {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #1a9348;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.btn-subscription:hover {
  background-color: #014d1e;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: black;
  height: 40px;
  padding: 3px 15px;
  letter-spacing: 0.01em;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
  cursor: pointer;
}

#subscribeButton {
  cursor: pointer;
}

#closeSubscriptionModal {
  border-radius: 8px;
  cursor: pointer;
}
