/* Componentes reutilizables: botones, badges, pills, cards */
.cta {
  border: 1px solid rgba(254, 250, 177, 0.5);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: var(--gold);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.cta.primary {
  background: linear-gradient(120deg, var(--gold), var(--amber));
  color: #1b140c;
  border: none;
}

.cta.secondary {
  border-color: rgba(20, 58, 42, 0.7);
  color: var(--forest);
  background: rgba(254, 250, 177, 0.08);
}

.cta.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Special highlight for Promoción Exclusiva Web */
.cta-highlight {
  position: relative;
  box-shadow: 0 0 20px rgba(254, 250, 177, 0.4),
              0 0 40px rgba(254, 250, 177, 0.2),
              0 4px 12px rgba(0, 0, 0, 0.3);
  animation: highlight-pulse 2s ease-in-out infinite;
}

.cta-highlight::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--amber), var(--gold));
  background-size: 200% 200%;
  animation: highlight-border 3s linear infinite;
  opacity: 0.6;
  z-index: -1;
  filter: blur(4px);
}

@keyframes highlight-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(254, 250, 177, 0.4),
                0 0 40px rgba(254, 250, 177, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(254, 250, 177, 0.6),
                0 0 60px rgba(254, 250, 177, 0.4),
                0 0 90px rgba(254, 250, 177, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
  }
}

@keyframes highlight-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-highlight:hover {
  animation: none;
  box-shadow: 0 0 35px rgba(254, 250, 177, 0.7),
              0 0 70px rgba(254, 250, 177, 0.5),
              0 0 100px rgba(254, 250, 177, 0.3),
              0 6px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px) scale(1.03);
}

.cta-highlight:hover::before {
  opacity: 0.9;
  filter: blur(6px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  background: rgba(254, 250, 177, 0.15);
  border: 1px solid rgba(254, 250, 177, 0.5);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  color: var(--gold);
  margin-bottom: 1.6rem
}

.card-label {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(200, 200, 200, 0.85);
  margin-bottom: 0.1rem;
}

.card {
  background: rgba(21, 20, 17, 0.6);
  border: 1px solid rgba(254, 250, 177, 0.08);
  padding: 2rem;
  border-radius: 1.25rem;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.name-pill {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(254, 250, 177, 0.3);
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.name-pill:hover {
  border-color: rgba(254, 250, 177, 0.6);
  background: rgba(254, 250, 177, 0.1);
  transform: translateY(-2px);
}

.name-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

