@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

/* scrool */
html {
  scroll-behavior: smooth;
}

.scroll-fade-wrapper {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroll-fade-wrapper::-webkit-scrollbar {
  display: none;
}
/* -------- */

body {
  background-color: #000;
  color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.beige {
  color: #f1df97
}
.verde {
  color: #3c573e;
}
.cafe {
  color: #4b3621;
}
.morado{
  color: #1d1c38;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85)
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Estilo responsivo mejorado del logo */
.logo-luna {
  max-width: 90vw;
  max-height: 90vh;
  width: clamp(280px, 40vw, 480px);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease;
}

.logo-luna:hover {
  transform: scale(1.02);
  }

/* parallax */
.parallax-bg {
  will-change: transform;
  transform: translateZ(0);
  }

  /* carta florecente */
  .neon-border {
  transform: scale(1.02);
  box-shadow: 0 0 35px 5px rgba(29, 28, 56, 0.85);
  backdrop-filter: blur(2px); 
  }

  .neon-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg, #00f0ff, #1d1c38, #ffc6ff);
    background-size: 300% 300%;
    animation: pulseBorder 4s ease infinite;
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
  }

  @keyframes pulseBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

.scroll-fade-wrapper {
  position: relative;
}

.scroll-fade-wrapper::before,
.scroll-fade-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.scroll-fade-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
}

.scroll-fade-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));

}

.accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  background-image: none !important;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
}

.promo-card {
  background: linear-gradient(135deg, #222, #1a1a1a);
  color: #ddd;
  padding: 2.2rem;
  border-radius: 1.25rem;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.promo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px 5px rgba(29, 28, 56, 0.85);
  backdrop-filter: blur(2px);
}

.promo-header {
  position: relative;
}

.promo-subtitle {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.promo-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f3f3f3;
  margin: 0;
  line-height: 1.2;
}

.promo-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s ease;
  text-decoration: none;
}

.promo-btn:hover {
  background-color: #1ebe58;
  color: #fff;
}

.promo-footer {
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1.25rem;
}

.promo-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-checklist li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.img-uniforme {
    height: 250px;
    object-fit: cover;
    object-position: center;
}