* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000000;
}

.thumbnails {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 22%;
  border-radius: 0.5rem;
  filter: blur(3px);
  cursor: pointer;
  transition: filter 0.3s;
}

.thumbnail:hover {
  filter: blur(1px);
}

@media (max-width: 600px) {
  .thumbnail {
    width: 45%;
  }
  .main-section {
    flex-direction: column;
    text-align: center;
  }
}
.overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-pago {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-pago-content {
  background: linear-gradient(to bottom right, #fff0f5, #ffe4e1);
  margin: auto;
  padding: 30px;
  border: 2px solid #f8bbd0;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #d63384;
  font-size: 28px;
  font-weight: bold;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.3s;
}
.close-btn:hover {
  color: #ad1457;
}

.modal-title {
  font-size: 28px;
  color: #d63384;
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  margin-bottom: 10px;
}
.bg-pink {
  background-color: #f48fb1 !important;
}
.bg-rosita {
  background-color: #f8bbd0;
}
