/* ===== Colección: Edición Limitada ===== */

/* Variables gold */
:root {
  --gold-light: #ffd700;
  --gold-medium: #d4af37;
  --gold-dark: #b8860b;
  --gold-shine: #fff4d4;
}

/* HERO EXCLUSIVO */
.hero-limitada {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.12), transparent 50%),
              linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

@media (min-width: 992px) {
  .hero-limitada {
    padding-top: 0;
  }
}

/* Shine effect */
.hero-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 215, 0, 0.1) 60deg,
    transparent 120deg
  );
  animation: rotate-shine 20s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

@keyframes rotate-shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#gold-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.hero-limitada .container {
  position: relative;
  z-index: 1;
}

/* Hero badge exclusive */
.hero-badge-exclusive {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.15));
  border: 2px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  color: var(--gold-shine);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--starlight);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.gradient-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium), var(--gold-dark));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 8s ease infinite;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(248, 247, 243, 0.85);
  font-weight: 600;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-wrap: pretty;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  color: var(--starlight);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DISPONIBILIDAD */
.disponibilidad-section {
  background: linear-gradient(180deg, #f8f7f3 0%, #e8e7e3 100%);
}

.availability-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.banner-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  color: #121212;
  font-size: 2rem;
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.banner-content {
  flex: 1;
  min-width: 250px;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--areya-text);
  margin-bottom: 0.5rem;
}

.banner-text {
  color: var(--areya-muted);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GALERÍA */
.galeria-limitada {
  background: #f8f7f3;
  padding: 6rem 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-medium);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--areya-text);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--areya-muted);
  font-weight: 600;
  line-height: 1.6;
}

/* Filter pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.pill-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: white;
  color: var(--areya-text);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pill-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.pill-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  border-color: transparent;
  color: #121212;
}

/* Cards limitadas */
.limitada-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.limitada-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
}

.limitada-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 0;
}

.limitada-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.limitada-card:hover .limitada-img {
  transform: scale(1.1);
}

/* Card status */
.card-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-status--available {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.card-status--reserved {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.card-serie {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  color: #121212;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.card-badge-exclusive {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: var(--gold-shine);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Precios con oferta */
.pieza-price {
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.precio-vis {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.precio-new {
  font-weight: 900;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.precio-old {
  text-decoration: line-through;
  opacity: .5;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--areya-muted);
}

.precio-off {
  position: relative;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-medium) 100%);
  color: #121212;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow:
    0 3px 10px rgba(212, 175, 55, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.precio-off::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.precio-off::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine-badge 3s infinite;
  pointer-events: none;
}

@keyframes shine-badge {
  0% {
    left: -60%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.precio-off:hover {
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(212, 175, 55, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.precio-off i {
  font-size: 0.7rem;
  animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Badge de descuento opcional en la imagen (piedras/resina) */
.pieza-badge--off {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium)) !important;
  border-color: transparent !important;
  color: #121212 !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4) !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
}


/* Overlay */
.limitada-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.limitada-card:hover .limitada-overlay {
  opacity: 1;
  transform: translateY(0);
}

.limitada-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.limitada-desc {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.overlay-details {
  display: flex;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-shine);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Body de la card */
.limitada-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.limitada-info {
  flex: 1;
}

.limitada-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--areya-text);
  margin-bottom: 0.5rem;
}

.limitada-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-serie {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.limitada-price {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

/* QUÉ INCLUYE */
.incluye-section {
  padding: 6rem 0;
}

.incluye-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.incluye-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.incluye-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.incluye-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--starlight);
  margin-bottom: 1rem;
}

.incluye-text {
  color: rgba(248, 247, 243, 0.8);
  line-height: 1.7;
  font-weight: 600;
  font-size: 0.95rem;
}

/* FAQ */
.faq-limitada-section {
  background: linear-gradient(180deg, #e8e7e3 0%, #f8f7f3 100%);
  padding: 6rem 0;
}

.faq-limitada-section .accordion-item {
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-limitada-section .accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.faq-limitada-section .accordion-button {
  background: white;
  color: var(--areya-text);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.5rem 1.8rem;
  border: none;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.faq-limitada-section .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.08));
  color: var(--areya-text);
}

.faq-limitada-section .accordion-body {
  color: var(--areya-muted);
  line-height: 1.8;
  font-weight: 600;
  padding: 1.5rem 1.8rem 2rem;
  font-size: 1rem;
}

/* CTA FINAL */
.cta-limitada-section {
  background-image: url("../img/fondos/img2.webp"); /* tu imagen 16:9 */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--starlight);
  overflow: hidden;
}

.cta-limitada-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(184, 134, 11, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-limitada-section .container {
  position: relative;
  z-index: 1;
}

.cta-icon-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #121212;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--starlight);
  margin-bottom: 1.5rem;
}

.cta-lead {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(248, 247, 243, 0.85);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  text-wrap: pretty;
  line-height: 1.7;
}

/* BOTONES */
.btn-outline-magic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: 14px;
  border: 2px solid transparent;
  background-image:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold-medium), var(--gold-dark)) border-box;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.btn-outline-magic:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-medium), var(--gold-dark));
  color: #121212;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-magic:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn-outline-magic:disabled,
.btn-outline-magic[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* FILTRO DE PIEZAS */
.pieza-item {
  transition: all 0.5s ease;
}

.pieza-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .filter-pills {
    justify-content: center;
  }
  
  .availability-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-action {
    width: 100%;
  }
  
  .banner-action .btn {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-features {
    flex-direction: column;
  }
  
  .feature-badge {
    width: 100%;
    justify-content: center;
  }
}

/* REDUCE MOTION */
@media (prefers-reduced-motion: reduce) {
  .hero-shine,
  .badge-glow,
  .icon-pulse,
  .icon-float,
  .gradient-gold,
  .precio-off::after,
  .precio-off i {
    animation: none !important;
  }
}