* {
  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;
   filter: blur(3px);
}

.thumbnail {
  width: 22%;
  border-radius: 0.5rem;
  filter: blur(5px);
  cursor: pointer;
  transition: filter 0.3s;
}

.thumbnail:hover {
  filter: blur(3px);
}

@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;
}
/* Caja SEO */
.seo-box {
  background: linear-gradient(135deg, #fff0f5, #ffe4ec);
  border: 1px solid #f3b6c9;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.seo-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animación */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título */
.seo-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #d63384;
  text-align: left;
}

/* Texto */
.seo-text {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-title {
    font-size: 1.8rem;
  }

  .seo-text {
    font-size: 1rem;
  }
}

.main-offset {
  padding-top: 25px; /* ajustá si tu navbar es más alto */
}

/* SEO Footer */
.seo-footer-box {
  background: #fafafa;
  border: 1px solid #e6e6e6;
}

.seo-footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
}

.seo-footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .seo-footer-title {
    font-size: 1.3rem;
  }
}
