/* ============================================================
   DJ PACKS PRO — styles.css
   Paleta: Rojo · Azul Metálico · Gris Metálico
   v=20260528
   ============================================================ */

/* ---- ACCESSIBILITY ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #060810;
  --bg-2:         #080c14;
  --bg-card:      #0d1220;
  --bg-card-2:    #111827;
  --red:          #e01a12;
  --red-dark:     #8b0000;
  --red-glow:     rgba(224, 26, 18, 0.55);
  --yellow:       #ffd700;
  --yellow-soft:  #ffc400;
  --yellow-glow:  rgba(255, 215, 0, 0.35);
  --blue-metal:   #2a6dd9;
  --blue-dark:    #0f2a5a;
  --blue-glow:    rgba(42, 109, 217, 0.4);
  --silver:       #8a9ab5;
  --silver-light: #c4cedd;
  --white:        #ffffff;
  --white-soft:   #e8ecf4;
  --gray:         #6b7fa0;
  --line:         rgba(42, 109, 217, 0.12);
  --cd-bar-h:     60px;
  --radius:       10px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: var(--cd-bar-h);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ---- CONTAINERS ------------------------------------------- */
.container {
  width: min(100%, 900px);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ---- SECTION UTILITIES ------------------------------------ */
.section-dark { background: var(--bg-2); }

.section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.section-title--metallic {
  background: linear-gradient(
    180deg,
    #e8f0ff 0%,
    #8a9ab5 25%,
    #dde8f8 45%,
    #5d7299 70%,
    #c4cedd 85%,
    #e8f0ff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(42,109,217,0.3));
}

/* Defensive rule — prevents invisible text if JS splits this element */
.reveal[data-split] { opacity: 1; transform: none; }

.section-sub {
  text-align: center;
  color: var(--silver);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ---- COUNTDOWN BAR ---------------------------------------- */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #030508 0%, #0f2a5a 35%, #8b0000 65%, #030508 100%);
  border-bottom: 2px solid var(--blue-metal);
  height: var(--cd-bar-h);
  display: flex;
  align-items: center;
}

.countdown-bar__inner {
  width: 100%;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-bar__label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.4vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.countdown-bar__timer {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  min-width: 42px;
}

.countdown-num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--yellow);
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.countdown-sep {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--silver-light);
  margin-bottom: 0.5rem;
}

.countdown-bar__cta {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--blue-metal);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

@media (hover: hover) {
  .countdown-bar__cta:hover {
    transform: scale(1.06);
    box-shadow: 0 0 14px var(--blue-glow);
  }
}

/* ---- HERO ------------------------------------------------- */
.hero {
  width: 100%;
  background: #000;
  line-height: 0;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---- VIDEO DEMO ------------------------------------------- */
.video-demo {
  background: var(--bg);
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, #1a0000, var(--red-dark));
  border: 2px solid var(--red);
  border-radius: 50px;
  padding: 1.3rem 3rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 0 20px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.07);
}

.btn-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--red);
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

@media (hover: hover) {
  .btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(224,26,18,0.25);
    border-color: var(--yellow);
  }
  .btn-video:hover .btn-video__play { transform: scale(1.15); }
}

/* Wrapper del video — oculto por defecto, se despliega al hacer clic */
.video-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease-out), opacity 0.4s ease, margin-top 0.35s;
  margin-top: 0;
}

.video-wrapper.is-open {
  max-height: 600px;
  opacity: 1;
  margin-top: 1.75rem;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(224,26,18,0.45);
  box-shadow: 0 0 40px rgba(0,0,0,0.85), 0 0 20px var(--red-glow);
}

.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- BENEFITS --------------------------------------------- */
.benefits {
  padding: 4rem 0 4.5rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.benefit-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--white-soft);
  line-height: 1.55;
}

.benefit-card strong { color: var(--white); }

@media (hover: hover) {
  .benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42,109,217,0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(42,109,217,0.12);
  }
}

/* ---- OFFER / CTA SECTIONS --------------------------------- */
.offer {
  background: linear-gradient(180deg, #04060d 0%, #060810 60%, #04060d 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(42,109,217,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(224,26,18,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offer--alt {
  background: linear-gradient(180deg, #060810 0%, #080c14 50%, #060810 100%);
}

.offer--dark {
  background: linear-gradient(180deg, #040609 0%, #060810 100%);
}

.offer__tag {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 1rem;
}

.offer__headline {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.offer__headline--glow {
  color: var(--yellow);
  text-shadow:
    0 0 30px rgba(255,215,0,0.6),
    0 0 60px rgba(255,215,0,0.3);
}

.offer__price-block {
  margin-bottom: 1.5rem;
}

.offer__normal {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 0.4rem;
}

.offer__normal del {
  color: var(--red);
  text-decoration: line-through;
  font-weight: 700;
}

.offer__promo {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: var(--white-soft);
  line-height: 1.2;
}

.offer__promo strong {
  color: var(--yellow);
  font-size: clamp(2rem, 7vw, 3.2rem);
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
  display: inline-block;
}

.offer__badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin: 0.75rem 0 1.5rem;
}

.offer__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  color: var(--white-soft);
  font-size: 0.9rem;
}

.offer__urgency {
  margin-top: 1.25rem;
  color: var(--silver);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---- CTA BUTTON ------------------------------------------- */
.btn-cta {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border: 2px solid var(--blue-metal);
  border-radius: 50px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow:
    0 0 20px var(--red-glow),
    0 0 40px rgba(224,26,18,0.2),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.btn-cta--xl {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  padding: 1.2rem 3rem;
}

@media (hover: hover) {
  .btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
      0 0 30px var(--red-glow),
      0 0 70px rgba(224,26,18,0.35),
      0 0 20px var(--blue-glow),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }
}

/* Pulse animation for CTAs */
.pulse {
  animation: btnPulse 2.4s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow:
      0 0 20px var(--red-glow),
      0 0 40px rgba(224,26,18,0.2),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
  50% {
    box-shadow:
      0 0 35px var(--red-glow),
      0 0 70px rgba(224,26,18,0.4),
      0 0 18px var(--blue-glow),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
}

/* ---- INCLUDES --------------------------------------------- */
.includes {
  padding: 4rem 0 4.5rem;
}

.includes__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.include-item:first-child { border-top: 1px solid var(--line); }

.include-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.include-item__text h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.include-item__text p {
  font-size: 0.93rem;
  color: var(--white-soft);
  line-height: 1.55;
}

.include-item__text strong { color: var(--silver-light); }

.include-item--bonus {
  background: linear-gradient(90deg, rgba(255,215,0,0.06) 0%, transparent 100%);
  border-left: 3px solid var(--yellow);
}

.include-item--bonus .include-item__text h3 { color: var(--yellow); }

@media (hover: hover) {
  .include-item:not(.include-note):hover {
    background: rgba(42,109,217,0.05);
  }
}

.include-note {
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--silver);
  font-style: italic;
  border-bottom: none;
  border-top: 1px solid var(--line);
}

/* ---- TESTIMONIALS ----------------------------------------- */
.testimonials {
  padding: 4rem 0 4.5rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  color: rgba(42,109,217,0.1);
  line-height: 1;
  pointer-events: none;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42,109,217,0.35);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 25px rgba(42,109,217,0.12);
  }
}

.testimonial-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--blue-metal);
  box-shadow: 0 0 0 2px rgba(42,109,217,0.25), 0 4px 16px rgba(0,0,0,0.5);
  background: var(--bg-card-2);
  transition: box-shadow 0.3s;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Encuadres específicos por tipo de foto */
.testimonial-card__avatar img.avatar--female {
  object-position: center 18%;   /* DJ mujer — centra en rostro y cabeza */
}
.testimonial-card__avatar img.avatar--male1 {
  object-position: center 22%;   /* DJ hombre con lentes — centra en cabeza/hombros */
}
.testimonial-card__avatar img.avatar--male2 {
  object-position: center 25%;   /* DJ hombre nightclub — zona superior con cara */
}

/* Variante dorada para el testimonio central (DJ mujer) */
.testimonial-card__avatar--gold {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(255,215,0,0.3), 0 4px 20px rgba(255,215,0,0.15);
}

/* Tarjeta destacada (centro) */
.testimonial-card--featured {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(160deg, #0a0f1e 0%, var(--bg-card) 100%);
}

.testimonial-card--featured .testimonial-card__stars {
  color: var(--yellow);
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(255,215,0,0.5);
}

@media (hover: hover) {
  .testimonial-card:hover .testimonial-card__avatar {
    box-shadow: 0 0 0 3px rgba(42,109,217,0.5), 0 6px 20px rgba(0,0,0,0.6);
  }
  .testimonial-card--featured:hover .testimonial-card__avatar {
    box-shadow: 0 0 0 3px rgba(255,215,0,0.6), 0 6px 20px rgba(255,215,0,0.2);
  }
}

.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--white-soft);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.testimonial-card__author strong {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--silver);
  letter-spacing: 0.02em;
}

/* ---- FAQ -------------------------------------------------- */
.faq {
  padding: 4rem 0 4.5rem;
}

.faq__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
}

.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  list-style: none;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--red);
  transition: transform 0.35s var(--ease-out);
}

.faq-item[open] .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__q {
  color: var(--silver-light);
  background: rgba(42,109,217,0.06);
}

@media (hover: hover) {
  .faq-item__q:hover {
    background: rgba(42,109,217,0.04);
    color: var(--silver-light);
  }
}

.faq-item__a {
  padding: 0.1rem 1.5rem 1.25rem;
  animation: fadeDown 0.35s var(--ease-out) both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-item__a p {
  font-size: 0.93rem;
  color: var(--white-soft);
  line-height: 1.65;
}

.faq-item__a strong { color: var(--white); }

/* ---- PAYMENT ---------------------------------------------- */
.payment {
  background: var(--bg);
  padding: 4rem 0 4.5rem;
  text-align: center;
  position: relative;
}

.payment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-metal), var(--red), var(--blue-metal), transparent);
}

.payment__subtitle {
  color: var(--white-soft);
  font-size: 1rem;
  margin: 0.5rem auto 2rem;
  max-width: 550px;
}


.payment__instructions {
  max-width: 540px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.payment__instructions p {
  font-size: 0.97rem;
  color: var(--white-soft);
  line-height: 1.6;
}

.payment__instructions strong { color: var(--white); }

.payment__security {
  font-size: 1rem;
  color: var(--yellow);
  font-weight: 600;
}

/* ---- PAYMENT CARDS (rediseño minimalista) ------------------ */
.payment__cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.75rem;
}

/* Tarjeta base */
.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2rem 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  max-width: 300px;
  min-width: 200px;
  text-align: center;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s, border-color 0.28s;
}

/* Acento superior por marca */
.pay-card--bbva { border-top-color: var(--blue-metal); }
.pay-card--oxxo { border-top-color: var(--red); }

@media (hover: hover) {
  .pay-card--bbva:hover {
    transform: translateY(-6px);
    border-color: rgba(42,109,217,0.35);
    border-top-color: var(--blue-metal);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 22px rgba(42,109,217,0.14);
  }
  .pay-card--oxxo:hover {
    transform: translateY(-6px);
    border-color: rgba(224,26,18,0.3);
    border-top-color: var(--red);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 22px rgba(224,26,18,0.12);
  }
}

/* Etiqueta de tipo de pago */
.pay-card__tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(138,154,181,0.07);
  border: 1px solid rgba(138,154,181,0.15);
  border-radius: 50px;
  padding: 0.28rem 0.9rem;
  white-space: nowrap;
}

/* Contenedor transparente del logo */
.pay-card__logo-wrap {
  width: 100%;
  background: transparent;
  border-radius: 8px;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-card__logo {
  max-height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

/* BBVA SVG blanco — un poco más grande para igualar visualmente al OXXO */
.pay-card--bbva .pay-card__logo {
  max-height: 52px;
  max-width: 160px;
}

/* Descripción debajo del logo */
.pay-card__desc {
  font-size: 0.87rem;
  color: var(--silver);
  line-height: 1.65;
}

/* Separador vertical  ─ ó ─ */
.pay-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  flex-shrink: 0;
  gap: 0.5rem;
}

.pay-sep__line {
  display: block;
  width: 1px;
  flex: 1;
  min-height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(42,109,217,0.18), transparent);
}

.pay-sep__text {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Responsive: apila verticalmente en móvil */
@media (max-width: 580px) {
  .payment__cards {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .pay-card {
    max-width: 100%;
    width: 100%;
  }
  .pay-sep {
    flex-direction: row;
    padding: 1.1rem 0;
    width: 100%;
    gap: 0.75rem;
  }
  .pay-sep__line {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: unset;
    background: linear-gradient(to right, transparent, rgba(42,109,217,0.18), transparent);
  }
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  background: #25d366;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

@media (hover: hover) {
  .btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  }
}

/* ---- FOOTER ----------------------------------------------- */
.footer {
  background: #030508;
  border-top: 1px solid rgba(42,109,217,0.1);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__brand {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--red), var(--blue-metal), var(--silver-light), var(--blue-metal), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.footer__tagline {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--silver);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.footer__note {
  font-size: 0.78rem;
  color: rgba(196,206,221,0.3);
  margin-top: 1rem;
}

.footer__divider {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 1.5rem auto 1.25rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(196,206,221,0.35);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.footer__legal-sep { display: none; } /* separador · no aplica en layout vertical */

.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(196,206,221,0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

@media (hover: hover) {
  .footer__legal-link:hover {
    color: var(--silver-light);
  }
}

/* Acordeón desplegable en footer */
.footer__accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__accordion summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  list-style: none;
}

.footer__accordion summary::-webkit-details-marker { display: none; }

.footer__accordion-arrow {
  font-size: 0.55rem;
  color: rgba(196,206,221,0.35);
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.footer__accordion[open] .footer__accordion-arrow {
  transform: rotate(180deg);
}

.footer__accordion-body {
  margin-top: 0.75rem;
  max-width: 520px;
  background: rgba(42,109,217,0.05);
  border: 1px solid rgba(42,109,217,0.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  animation: fadeDown 0.3s var(--ease-out) both;
  text-align: left;
}

.footer__accordion-body p {
  font-size: 0.8rem;
  color: rgba(196,206,221,0.6);
  line-height: 1.7;
}

.footer__accordion-body strong {
  color: rgba(196,206,221,0.85);
}

/* ---- SCROLL REVEAL ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grids */
.benefits__grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.benefits__grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.benefits__grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.benefits__grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.benefits__grid .reveal:nth-child(6) { transition-delay: 0.35s; }

.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.payment__options .reveal:nth-child(3) { transition-delay: 0.1s; }

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 600px) {
  .countdown-bar__inner {
    gap: 0.5rem;
    padding-inline: 0.75rem;
  }

  .countdown-bar__label {
    font-size: clamp(0.78rem, 3.5vw, 0.92rem);
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .countdown-bar__cta {
    font-size: 0.75rem;
    padding: 0.32rem 0.75rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

.offer__promo strong {
    display: block;
  }
}

@media (max-width: 400px) {
  :root { --cd-bar-h: 56px; }
}

/* ---- REDUCE MOTION — only intrusive effects --------------- */
@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; }
  .footer__brand { animation: none; background-position: 0% center; }
}
