/* ===================== */
/* HERO DARK             */
/* ===================== */

.hero-dark {
  padding-top: 56px;
  background: var(--hdh-black);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Brick dot pattern */
.hero-dark-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

/* Ember glow from bottom */
.hero-dark-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196, 57, 29, 0.2) 0%, rgba(196, 57, 29, 0.05) 40%, transparent 70%);
  animation: hero-glow 4s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* Spark canvas */
#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-dark-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-2xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sorteo Mundialista promo strip — captura atención y manda al sorteo */
.hero-sorteo-strip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(90deg, var(--hdh-ember) 0%, #d94a23 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  color: #fff;
  text-decoration: none;
  margin-bottom: 18px;
  box-shadow: 0 8px 28px rgba(196,57,29,0.45), 0 0 0 0 rgba(196,57,29,0.6);
  animation: sorteo-pulse-ring 2.6s ease-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  max-width: 100%;
}

.hero-sorteo-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,57,29,0.6);
}

/* Shimmer pasando cada tanto sobre el strip */
.hero-sorteo-strip::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: sorteo-shimmer 3.2s ease-in-out infinite;
}

@keyframes sorteo-pulse-ring {
  0%   { box-shadow: 0 8px 28px rgba(196,57,29,0.45), 0 0 0 0 rgba(196,57,29,0.55); }
  70%  { box-shadow: 0 8px 28px rgba(196,57,29,0.45), 0 0 0 14px rgba(196,57,29,0); }
  100% { box-shadow: 0 8px 28px rgba(196,57,29,0.45), 0 0 0 0 rgba(196,57,29,0); }
}

@keyframes sorteo-shimmer {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.hero-sorteo-emoji {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  position: relative;
  z-index: 1;
}

.hero-sorteo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-sorteo-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}

.hero-sorteo-text em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

.hero-sorteo-arrow {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.hero-sorteo-strip:hover .hero-sorteo-arrow {
  transform: translateX(4px);
}

.hero-sorteo-pulse { display: none; } /* placeholder por si querés un dot animado en el futuro */

.hero-dark-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hdh-ember-light);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.03);
  margin-bottom: var(--space-xl);
}

.hero-logo-wrap {
  position: relative;
  margin-bottom: var(--space-md);
  cursor: pointer;
}

/* Fire glow behind logo on hover */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 57, 29, 0.12) 0%,
    rgba(160, 40, 20, 0.08) 25%,
    rgba(120, 25, 10, 0.05) 45%,
    rgba(80, 15, 5, 0.02) 65%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-logo-wrap:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: fire-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes fire-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.hero-dark-logo {
  height: 220px;
  filter: drop-shadow(0 4px 48px rgba(196, 57, 29, 0.35));
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
  position: relative;
  z-index: 1;
}

.hero-logo-fire {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 0;
  z-index: 2;
}

.hero-logo-wrap:hover .hero-logo-default {
  opacity: 0;
  transform: scale(0.97);
}

.hero-logo-wrap:hover .hero-logo-fire {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 0 40px rgba(196, 57, 29, 0.3)) drop-shadow(0 0 80px rgba(120, 25, 10, 0.2));
}

.hero-dark-line {
  width: 48px;
  height: 3px;
  background: var(--hdh-ember);
  margin-bottom: var(--space-lg);
}

.hero-dark h1 {
  color: #fff;
  margin-bottom: var(--space-md);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: 600;
  white-space: nowrap;
}


.hero-dark-subtitle {
  font-size: 13px;
  color: var(--hdh-steel-mid);
  margin-bottom: var(--space-xl);
  letter-spacing: 1px;
}

.hero-dark-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-dark {
    padding-top: 64px;
  }

  .hero-dark-content {
    padding: var(--space-3xl) 0;
  }

  .hero-dark-logo {
    height: 360px;
  }

  .hero-logo-wrap::before {
    width: 700px;
    height: 700px;
  }

  .hero-dark h1 {
    font-size: 28px;
  }

  .hero-dark-subtitle {
    font-size: 15px;
  }

  .hero-dark-ctas {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-md);
    width: auto;
  }

  .hero-dark-glow {
    width: 1000px;
    height: 1000px;
  }
}

/* ===================== */
/* TRUST BAR             */
/* ===================== */

.trust-bar {
  background: var(--hdh-bone);
  padding: var(--space-xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-md);
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--hdh-steel);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.trust-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hdh-steel);
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }

  .trust-item {
    flex-direction: row;
    text-align: left;
  }
}

/* ===================== */
/* PRODUCTO ESTRELLA     */
/* ===================== */

.product-star {
  padding: var(--space-2xl) 0;
}

.product-star .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.product-star-image {
  background: #fff;
  position: relative;
  overflow: visible;
  border-radius: var(--radius);
  padding: 0;
}

/* ---- Slider ---- */

.product-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(10,10,10,0.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-arrow:hover {
  background: var(--hdh-ember);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow--prev { left: 10px; }
.slider-arrow--next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 30;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-dot.active {
  background: var(--hdh-ember);
  transform: scale(1.3);
}

/* ---- Hotspot system ---- */

.hotspot-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
}

.hotspot-base-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
}

.hotspot {
  position: absolute;
  z-index: 20;
}

.hotspot:hover,
.hotspot.active {
  z-index: 100;
}

/* Dot base */
.hotspot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 2px 8px rgba(0,0,0,0.5);
}

.hotspot-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: hotspot-pulse 2.8s ease-in-out infinite;
}

@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(2); opacity: 0; }
}

/* Todos los dots usan la misma identidad — se activan en ember al hover */
.hotspot-dot--amber,
.hotspot-dot--cyan,
.hotspot-dot--ember,
.hotspot-dot--green,
.hotspot-dot--violet { background: #fff; }

/* Tooltip */
.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--hdh-black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 200px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

/* Adjust tooltip side when data-pos=left */
.hotspot[data-pos="left"] .hotspot-tooltip {
  left: auto;
  right: calc(100% + 14px);
  bottom: 50%;
  transform: translateY(50%) translateX(4px);
}

.hotspot[data-pos="left"]:hover .hotspot-tooltip,
.hotspot[data-pos="left"].active .hotspot-tooltip {
  transform: translateY(50%) translateX(0);
}

.hotspot[data-pos="right"] .hotspot-tooltip {
  left: calc(100% + 14px);
  bottom: 50%;
  top: auto;
  transform: translateY(50%) translateX(-4px);
}

.hotspot[data-pos="right"]:hover .hotspot-tooltip,
.hotspot[data-pos="right"].active .hotspot-tooltip {
  transform: translateY(50%) translateX(0);
}

.hotspot:hover .hotspot-tooltip,
.hotspot.active .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
}

.hotspot:hover .hotspot-dot,
.hotspot.active .hotspot-dot {
  transform: scale(1.4);
  background: var(--hdh-ember);
  box-shadow: 0 0 0 3px rgba(196,57,29,0.2), 0 2px 8px rgba(196,57,29,0.4);
}

/* Tooltip line between dot and tooltip */
.hotspot-tooltip::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--hdh-black);
  border: 1px solid rgba(255,255,255,0.1);
  transform: rotate(45deg);
}

.hotspot[data-pos="left"] .hotspot-tooltip::before {
  right: -5px;
  top: 50%;
  margin-top: -4px;
  border-left: none;
  border-bottom: none;
}

.hotspot[data-pos="right"] .hotspot-tooltip::before {
  left: -5px;
  top: 50%;
  margin-top: -4px;
  border-right: none;
  border-top: none;
}

.hotspot-tooltip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 6px;
}

.hotspot-tooltip span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--hdh-steel-mid);
  line-height: 1.5;
}

/* Hotspot overlay (mobile) — anclado al body para escapar de cualquier transform parent */
.hotspot-overlay {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  background: var(--hdh-black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  display: none;
}

.hotspot-overlay.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hotspot-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
}

.hotspot-overlay span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--hdh-steel-mid);
}

@media (max-width: 767px) {
  .hotspot-overlay {
    display: block;
  }
}

.product-star-info .overline {
  display: block;
  margin-bottom: var(--space-sm);
}

.product-star-info h2 {
  margin-bottom: var(--space-md);
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-spec {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--hdh-steel);
}

.product-spec svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--hdh-ember);
  fill: none;
  stroke-width: 2;
}

.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--hdh-black);
  margin-bottom: var(--space-xs);
}

.product-price-note {
  font-size: 13px;
  color: var(--hdh-ember);
  margin-bottom: var(--space-sm);
}

.product-price-note strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.product-price-disclaimer {
  font-size: 12px;
  color: var(--hdh-steel);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  padding: 10px 14px;
  background: var(--hdh-bone);
  border-left: 3px solid var(--status-success, #2E7D5B);
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s;
}

.product-price-disclaimer strong {
  color: var(--hdh-ember);
  font-weight: 700;
}

/* Estado alert (cuando NO es manta) */
.product-price-disclaimer.alert {
  background: rgba(196, 57, 29, 0.06);
  border-left-color: var(--hdh-ember);
}

/* Animación flash al cambiar variante */
@keyframes price-flash {
  0%   { background-color: rgba(196, 57, 29, 0.18); transform: scale(1); }
  40%  { background-color: rgba(196, 57, 29, 0.25); transform: scale(1.02); }
  100% { background-color: transparent; transform: scale(1); }
}

.product-price-note.flash-update {
  animation: price-flash 0.6s ease;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}

.product-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .product-star {
    padding: var(--space-3xl) 0;
  }

  .product-star .container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .product-star-image {
    flex: 1.3;
    padding: var(--space-2xl);
  }

  .hotspot-wrap {
    aspect-ratio: 1;
  }

  .product-star-info {
    flex: 1;
  }

  .product-price {
    font-size: 32px;
  }

  .product-ctas {
    flex-direction: row;
  }
}

/* ===================== */
/* LÍNEAS DE PRODUCTO    */
/* ===================== */

.product-lines {
  padding: var(--space-2xl) 0;
}

.product-lines h2 {
  margin-bottom: var(--space-xl);
}

.lines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.line-card {
  background: var(--hdh-bone);
  overflow: hidden;
}

.line-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--hdh-clay);
}

.line-card-body {
  padding: var(--space-lg);
}

.line-card-body h3 {
  margin-bottom: var(--space-xs);
}

.line-card-body p {
  font-size: 14px;
  color: var(--hdh-steel-mid);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .product-lines {
    padding: var(--space-3xl) 0;
  }

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

/* ===================== */
/* CÓMO FUNCIONA         */
/* ===================== */

.how-it-works {
  background: var(--hdh-black);
  padding: var(--space-2xl) 0;
}

.how-it-works h2 {
  color: #fff;
  margin-bottom: var(--space-xl);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 64px;
  color: var(--hdh-silver);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step h3 {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.step p {
  font-size: 14px;
  color: var(--hdh-steel-mid);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: var(--space-3xl) 0;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }

  .step-number {
    font-size: 80px;
  }
}

/* ===================== */
/* SOCIAL PROOF          */
/* ===================== */

.social-proof {
  padding: var(--space-2xl) 0;
}

.social-proof h2 {
  margin-bottom: var(--space-xl);
}

/* Carrusel automático de clientes */
.clients-carousel-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.clients-carousel-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
}

.clients-carousel-wrap:hover .clients-carousel-track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-img {
  height: 320px;
  width: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 10;
  position: relative;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  padding: 0;
}

.lightbox-close:hover {
  opacity: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.testimonial {
  background: var(--hdh-bone);
  padding: var(--space-xl);
  text-align: left;
  border-radius: var(--radius);
  border-left: 3px solid var(--hdh-ember);
}

.testimonial-stars {
  color: var(--hdh-ember);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial blockquote {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--hdh-black);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--hdh-black);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--hdh-steel-mid);
}

@media (min-width: 768px) {
  .social-proof {
    padding: var(--space-3xl) 0;
  }

  .carousel-img {
    height: 420px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================== */
/* BANNER PROMO          */
/* ===================== */

.promo-banner {
  position: relative;
  background: linear-gradient(135deg, var(--hdh-ember-dark) 0%, var(--hdh-ember) 40%, var(--hdh-ember-light) 100%);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  text-align: center;
}

.promo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
  animation: promo-shimmer 6s ease-in-out infinite alternate;
}

@keyframes promo-shimmer {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hdh-ember-dark);
  background: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.promo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.promo-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-xs);
}

.promo-detail {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xl);
}

.promo-banner .btn-white {
  font-size: 14px;
  padding: 18px 44px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .promo-banner {
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + 16px);
  }

  .promo-title {
    font-size: 80px;
  }

  .promo-subtitle {
    font-size: 22px;
  }
}

/* ===================== */
/* MEMBRESÍA — Próximamente */
/* ===================== */

.membership {
  padding: var(--space-3xl) 0;
  background: var(--hdh-white);
}

/* Header centrado */
.membership-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.membership-header .overline {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hdh-ember);
  background: rgba(196, 57, 29, 0.08);
  border: 1px solid rgba(196, 57, 29, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-md);
}

.membership-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
  color: var(--hdh-black);
  margin-bottom: var(--space-sm);
}

.membership-header p {
  font-size: 16px;
  color: var(--hdh-steel-mid);
  line-height: 1.6;
}

/* Grid de 4 columnas — estilo trust-bar */
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: var(--space-xl);
}

.membership-card {
  background: var(--hdh-bone);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: background 0.25s;
}

.membership-card:hover {
  background: var(--hdh-clay);
}

.membership-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  color: var(--hdh-ember);
}

.membership-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.membership-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hdh-black);
  margin-bottom: var(--space-xs);
}

.membership-card p {
  font-size: 13px;
  color: var(--hdh-steel-mid);
  line-height: 1.55;
}

/* CTA centrado debajo del grid */
.membership-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.membership-cta .btn {
  min-width: 240px;
}

@media (min-width: 768px) {
  .membership-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================== */
/* FAQ                   */
/* ===================== */

.faq {
  padding: var(--space-2xl) 0;
  background: var(--hdh-white);
}

.faq h2 {
  margin-bottom: var(--space-xl);
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hdh-ember);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.faq-cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.faq-cta-link:hover {
  color: var(--hdh-ember-dark);
  gap: 10px;
}

.faq-cta-link:hover svg {
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .faq {
    padding: var(--space-3xl) 0;
  }
}

/* ===================== */
/* ANIMACIONES           */
/* ===================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== */
/* RESPONSIVE MOBILE     */
/* ===================== */

@media (max-width: 767px) {
  /* Hero más compacto */
  .hero-dark {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-dark h1 {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.15;
    letter-spacing: 1px;
    white-space: normal !important;
    word-wrap: break-word;
    padding: 0 16px;
    max-width: 100%;
  }

  .hero-dark-sub,
  .hero-dark-subtitle {
    font-size: 14px;
    padding: 0 16px;
    line-height: 1.5;
  }

  /* Sorteo strip: más compacto y centrado en mobile */
  .hero-sorteo-strip {
    margin: 0 12px 16px;
    padding: 8px 14px 8px 12px;
    gap: 10px;
  }
  .hero-sorteo-text strong { font-size: 11px; letter-spacing: 1px; }
  .hero-sorteo-text em { font-size: 10px; }
  .hero-sorteo-emoji { font-size: 16px; }
  .hero-sorteo-arrow { font-size: 16px; }

  .hero-dark-ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-dark-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Producto estrella H4 */
  .product-star .container {
    padding: 0 16px;
  }

  .product-star-image {
    padding: 0 !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  }

  .product-price {
    font-size: 28px;
  }

  .product-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .product-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hotspot dots un toque más grandes para mejor tap target */
  .hotspot-dot {
    width: 16px;
    height: 16px;
  }

  /* En mobile usamos un overlay anclado al body (.hotspot-overlay) — ocultamos los tooltips originales */
  .hotspot-tooltip,
  .hotspot[data-pos="left"] .hotspot-tooltip,
  .hotspot[data-pos="right"] .hotspot-tooltip {
    display: none !important;
  }

  /* Slider de producto */
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Líneas de producto: 1 columna */
  .lines-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Carousel clientes — más compacto */
  .clients-carousel-track .carousel-img {
    height: 220px !important;
  }

  /* Testimonios: 1 col */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial {
    padding: 20px;
  }

  /* Promo banner */
  .promo-title {
    font-size: 48px !important;
  }

  .promo-subtitle {
    font-size: 16px;
  }

  /* FAQ */
  .accordion-header {
    padding: 16px 18px;
    font-size: 14px;
  }

  /* Footer: stack ordenado */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Step grid */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-dark h1 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .promo-title {
    font-size: 38px !important;
  }
}