/* =========================
   TOKENS (VARIABLES) - INTACTO
   ========================= */
:root {
  --bgTop: #070707;
  --bgMid: #121212;
  --bgBot: #2a1f08;

  --gold: #d6a534;
  --gold2: #f0c96a;

  --text: #f3f3f3;
  --muted: rgba(255, 255, 255, 0.78);
  --stroke: rgba(255, 255, 255, 0.1);

  --green1: #2afc74;
  --green2: #1ed760;
  --green3: #13b84d;
  --greenText: #07110a;

  --radius: 22px;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-hero: 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* =========================
   BASE - INTACTO
   ========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(to bottom, var(--bgTop) 0%, var(--bgMid) 35%, var(--bgBot) 100%);
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.55;
  letter-spacing: 0.15px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

video {
  display: block;
}

p,
li,
.muted {
  font-size: 1rem;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
.brand,
.now {
  font-family: 'League Spartan', system-ui, sans-serif;
}

h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  color: #fff;
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  margin: 0 0 12px;
  opacity: 0.92;
  text-align: center;
}

/* =========================
   ACCESSIBILITY - INTACTO
   ========================= */
.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #000;
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

/* =========================
   LAYOUT - OPTIMIZADO RESPONSIVE
   ========================= */
.container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 18px 0;
}

.footer {
  padding: 22px 0 30px;
}

.small {
  font-size: 12px;
  opacity: 0.85;
}

.glass {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================
   HERO - OPTIMIZADO
   ========================= */
.hero {
  padding: 0 0 10px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  padding-bottom: env(safe-area-inset-bottom);
}

.brand {
  text-align: center;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin: 0 0 6px;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
}

/* =========================
   HERO VIDEO - OPTIMIZADO
   ========================= */
.videoHero {
   position: relative;
  overflow: hidden;
  width: 100%;
   aspect-ratio: 9 / 16;
  min-height: 0;
  max-height: 620px;
  background: transparent;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.videoHero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  background: transparent;
  opacity: 1;
  display: block;
}

.videoHero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 26%, rgba(0, 0, 0, 0) 58%);
  z-index: 1;
  pointer-events: none;
}

.videoHero > .impactCard__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 108px;
  z-index: 4;
  display: block;
  padding: 0 20px;
  background: none;
  pointer-events: none;
  width: 100%;
  max-width: none;
  text-align: left;
}

@media (max-width: 480px) {
  .videoHero > .impactCard__overlay {
    bottom: 90px;
    padding: 0 15px;
   
  }
}

.videoHero > .impactCard__overlay .betweenHero__title {
  margin: 0 0 8px;
  font-weight: 950;
  color: var(--gold);
  font-size: clamp(28px, 8vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 260px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 380px) {
  .videoHero > .impactCard__overlay .betweenHero__title {
    max-width: 200px;
    font-size: clamp(22px, 7vw, 28px);
  }
}

.videoHero > .impactCard__overlay .impactCard__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.2;
  max-width: 240px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 380px) {
  .videoHero > .impactCard__overlay .impactCard__subtitle {
    max-width: 180px;
    font-size: 12px;
  }
}

.heroOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 6;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 18px;
}

.heroOverlay .btn {
  pointer-events: auto;
}

.heroOverlay .heroCopy {
  width: 100%;
  max-width: 420px;
}

.heroOverlay .ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* =========================
   BETWEEN HERO - INTACTO
   ========================= */
.betweenHero {
  width: 100%;
  max-width: 420px;
  margin: 16px auto;
  padding: 2px 4px;
}

.betweenHero__title {
  margin: 0 0 6px;
  font-weight: 950;
  color: var(--gold);
}

/* =========================
   BUTTONS - OPTIMIZADO RESPONSIVE
   ========================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  border-radius: 999px;
  padding: 16px 20px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.3) inset;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  will-change: transform;
}

.btn:active {
  transform: translateY(0) scale(0.985);
  filter: brightness(0.98);
}

.heroOverlay .btn,
.impactCard__overlay .btn {
  padding: 12px 18px;
  min-height: 46px;
  min-width: 220px;
  font-size: 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green1) 0%, var(--green2) 55%, var(--green3) 100%);
  color: var(--greenText);
  border: none;
  box-shadow: 0 0 0 1px rgba(18, 255, 105, 0.18), 0 10px 26px rgba(37, 211, 102, 0.4), 0 0 22px rgba(37, 211, 102, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 420px) {
  .heroOverlay .btn,
  .impactCard__overlay .btn {
    min-width: 180px;
    padding: 10px 15px;
    font-size: 0.95rem;
  }
}

.heroOverlay .btn:hover,
.impactCard__overlay .btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(18, 255, 105, 0.24), 0 14px 30px rgba(37, 211, 102, 0.52), 0 0 28px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn--green {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  width: max-content;
  margin: 16px auto 0;
  background: linear-gradient(180deg, var(--green1) 0%, var(--green2) 55%, var(--green3) 100%);
  color: var(--greenText);
  font-weight: 800;
  font-size: 14px;
  line-height: normal;
  border: none;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.15);
   transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  overflow: hidden;
  vertical-align: middle;
  max-width: 220px;
}

.heroOverlay .btn--green::after {
  content: none;
}

@media (max-width: 380px) {
  .btn--green {
    max-width: 180px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
}

.btn--green > * {
  margin: 0 !important;
  line-height: 1.1 !important;
  transform: none !important;
  position: relative;
  top: 0 !important;
}

.btn--green::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 60%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  animation: btnShine 4s linear infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}

.btn--ghost {
  background: linear-gradient(180deg, rgba(34, 255, 140, 0.18) 0%, rgba(16, 185, 129, 0.12) 100%);
  color: #d9ffe9;
  border: 1px solid rgba(34, 255, 140, 0.65);
  box-shadow: 0 0 0 1px rgba(34, 255, 140, 0.25), 0 0 12px rgba(34, 255, 140, 0.25), 0 0 28px rgba(34, 255, 140, 0.18),
    inset 0 0 10px rgba(34, 255, 140, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.btn--ghost:hover {
  background: linear-gradient(180deg, rgba(34, 255, 140, 0.28), rgba(16, 185, 129, 0.18));
  border-color: rgba(34, 255, 140, 0.95);
  box-shadow: 0 0 0 1px rgba(34, 255, 140, 0.45), 0 0 18px rgba(34, 255, 140, 0.45), 0 0 42px rgba(34, 255, 140, 0.28),
    inset 0 0 14px rgba(34, 255, 140, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.pulse {
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.08);
  }
}

/* =========================
   PLAY BUTTON - OPTIMIZADO
   ========================= */
.playBtn {
  position: absolute;
  inset: auto;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 3px solid rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 50;
}
.tVideo__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 480px) {
  .playBtn {
    width: 60px;
    height: 60px;
  }
}

.playBtn__icon {
  font-size: 28px;
  color: #111;
  transform: translateX(2px);
}

@media (max-width: 480px) {
  .playBtn__icon {
    font-size: 24px;
  }
}

.playBtn--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
}

.playBtn--dark .playBtn__icon {
  color: #f2f2f2;
}

.is-hidden {
  display: none;
}

/* =========================
   CTA ENTRE SECCIONES - OPTIMIZADO
   ========================= */
.videoCtaWrapper {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  padding: 0 16px;
}

.videoCtaWrapper .btn,
.videoCtaWrapper .btn--green {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 11px 16px;
  min-height: 42px;
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: ctaPulse 1.6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@media (max-width: 380px) {
  .videoCtaWrapper .btn,
  .videoCtaWrapper .btn--green {
    max-width: 260px;
    padding: 9px 12px;
    font-size: 13px;
  }
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.04);
  }
  55% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

/* =========================
   IMPACT SECTION - OPTIMIZADO RESPONSIVE
   ========================= */
.section--impact {
  display: flex;
  justify-content: center;
  padding: 18px 12px;
}

.impactCard--rebuilt {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 24px;
  padding: 16px 14px 18px;
  background: radial-gradient(circle at 50% 115%, rgba(25, 255, 110, 0.18) 0%, rgba(25, 255, 110, 0) 28%),
    linear-gradient(180deg, #171717 0%, #090909 52%, #000000 100%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 380px) {
  .impactCard--rebuilt {
    padding: 12px 10px 14px;
  }
}

.impactTop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

@media (max-width: 380px) {
  .impactTop {
    gap: 8px;
  }
}

.impactTop__left {
  min-width: 0;
}

.impactTop__formula {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.02em;
}

@media (max-width: 380px) {
  .impactTop__formula {
    font-size: 1rem;
  }
}

.impactTop__stroke {
  display: block;
  width: 108px;
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-9deg);
  opacity: 0.95;
}

@media (max-width: 380px) {
  .impactTop__stroke {
    width: 80px;
    height: 4px;
  }
}

.impactTop__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}

.impactTop__bullet {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

@media (max-width: 380px) {
  .impactTop__bullet {
    gap: 6px;
  }
}

.impactTop__dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
  margin-top: 4px;
  background: #32f05f;
  box-shadow: 0 0 14px rgba(50, 240, 95, 0.45);
}

@media (max-width: 380px) {
  .impactTop__dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }
}

.impactTop__bullet p {
  margin: 0;
  color: #e0ab2f;
  font-size: 0.96rem;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.01em;
}

@media (max-width: 380px) {
  .impactTop__bullet p {
    font-size: 0.85rem;
  }
}

.impactVideoBox {
   position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
}

.impactCard__media--reframed {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  
}

.impactPlayBtn {
   inset: auto !important;
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -40%) !important;
}

.impactOffer {
  display: flex;
  justify-content: center;
   margin-top: 0;
  margin-bottom: 8px;
  width: 100%;
}

.impactOffer__title {
  margin: 0;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 1000;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: clamp(1.4rem, 4.6vw, 2rem);
  color: #b16140;
  -webkit-text-stroke: 1.2px #fff;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 0 5px 14px rgba(0, 0, 0, 0.28);
  width: min(18ch, 100%);
  animation: offerZoom 2.2s ease-in-out infinite;
  transform-origin: center center;
  padding-top:20px;
}

@keyframes offerZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.impactStrip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 5px 5px 12px 5px;
}

.impactStrip__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0c45a 0%, #b8861d 100%);
  color: #101010;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
}

@media (max-width: 380px) {
  .impactStrip__item {
    font-size: 0.65rem;
    padding: 4px 8px;
    gap: 4px;
  }
}

.impactBottom {
  position: relative;
  flex: 1;
  min-height: 120px;
  width: 100%;
  overflow: visible;
}

/* ========================================
   IMPACT BOTTOM - IMAGEN CORREGIDA DEFINITIVA
   ======================================== */

/* Contenedor de la imagen - posicionamiento optimizado */
.impactBottom__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 220px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

/* La imagen misma - TAMAÑO CORRECTO */
.impactBottom__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
  border-radius: 12px;
  opacity: 1;
  transform: scale(1.22);
  transform-origin: right bottom;
  transition: transform 0.3s ease;
}

/* Hover effect suave */
.impactCard--rebuilt:hover .impactBottom__img {
  transform: scale(1.26);
}

/* ========================================
   RESPONSIVE - TAMAÑOS ADECUADOS PARA IMAGEN
   ======================================== */

/* Móvil grande / Tablet pequeña */
@media (max-width: 768px) {
  .impactBottom__visual {
    width: 140px;
    height: 175px;
  }
}


/* Móvil estándar */
@media (max-width: 480px) {
  .impactBottom__visual {
    width: 300px;
    height: 200px;
    right: 0;
    bottom: 0;
  }
}

/* Móvil pequeño */
@media (max-width: 380px) {
  .impactBottom__visual {
    width: 240px;
    height: 170px;
  }
}

/* Móvil muy pequeño */
@media (max-width: 320px) {
  .impactBottom__visual {
    width: 85px;
    height: 110px;
    right: 0;
    bottom: 0;
  }
}

/* Mantenemos el texto al lado izquierdo */
.impactBottom__copy {
  position: relative;
  z-index: 20;
  max-width: 60%;
  padding-right: 70px;
  padding-top: 10px;
  transform: translateY(10px);
}

@media (max-width: 420px) {
  .impactBottom__copy {
    max-width: 65%;
    padding-right: 50px;
  }
}

@media (max-width: 360px) {
  .impactBottom__copy {
    max-width: 70%;
    padding-right: 40px;
  }
}

.impactBottom__eyebrow {
  margin: 0 0 2px;
  margin-top: 15px;
  color: #ae8622;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 380px) {
  .impactBottom__eyebrow {
    font-size: 0.9rem;
    margin-top: 10px;
  }
}

.impactBottom__title {
  margin: 0;
  color: #d6a534;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

@media (max-width: 420px) {
  .impactBottom__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 360px) {
  .impactBottom__title {
    font-size: 1.5rem;
  }
}

.impactBottom__sub {
  margin: 5px 0 0;
  color: #d6d6d6;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 380px) {
  .impactBottom__sub {
    font-size: 0.85rem;
  }
}

.impactCard__overlay {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.impactCard__overlay .heroCopy {
  display: flex;
  justify-content: center;
}

.impactCard__overlay .ctas {
  display: flex;
  justify-content: center;
  width: auto;
}

.impactCard__overlay .btn.btn--green {
  min-width: 230px;
  min-height: 56px;
  font-size: 1.08rem;
  box-shadow: 0 12px 24px rgba(38, 255, 113, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@media (max-width: 420px) {
  .impactCard__overlay .btn.btn--green {
    min-width: 200px;
    min-height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .impactCard__overlay .btn.btn--green {
    min-width: 180px;
    min-height: 46px;
    font-size: 0.95rem;
  }
}

/* Selectores duplicados - mantenemos solo uno */
.impactCard__overlay {
  width: 100%;
  margin-top: 20px;
}

.impactCard__overlay .ctas {
  display: flex;
  justify-content: center;
  width: 100%;
}

.impactCard__overlay .btn {
  width: auto;
  min-width: 220px;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 420px) {
  .impactCard__overlay .btn {
    min-width: 180px;
  }
}

@media (max-width: 360px) {
  .impactCard__overlay .btn {
    min-width: 160px;
    font-size: 0.9rem;
  }
}

/* =========================
   TESTIMONIOS / VIDEO ÚNICO - OPTIMIZADO
   ========================= */
#testimonios {
  padding-top: 0;
}

#testimonios .container {
  display: block;
}

#testimonios .tVideo {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin-top: 24px;
}

#testimonios .tVideo__media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#testimonios .tOverlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#testimonios .playBtn {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.25s ease;
}

#testimonios .playBtn__icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

@media (max-width: 480px) {
  #testimonios .playBtn__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

#testimonios .playBtn:hover .playBtn__icon {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

#testimonios .tVideo.is-playing .tOverlay {
  opacity: 0;
}

#testimonios .tVideo.is-playing .playBtn {
  opacity: 0;
  pointer-events: none;
}

/* =========================
   PACKS - OPTIMIZADO RESPONSIVE
   ========================= */
#packs.section {
  padding-top: 28px;
  padding-bottom: 36px;
}

#packs .sectionHead h1 {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 950;
  font-size: clamp(22px, 4.3vw, 30px);
  margin: 0 0 8px;
  color: #fff;
}

.packGrid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.packCard {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(1200px 520px at 50% -10%, rgba(214, 165, 52, 0.22), transparent 55%),
    radial-gradient(900px 420px at 10% 10%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #111116, #0a0a0f 70%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: linear-gradient(180deg, #f3cf78, #d6a534);
  color: #0a0a0f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

@media (max-width: 420px) {
  .badge {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }
}

.badge--alt {
  background: var(--gold);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: rgba(0, 0, 0, 0.92);
}

.packTop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-right: 80px;
  min-height: 32px;
}

@media (max-width: 420px) {
  .packTop {
    padding-right: 70px;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .packTop {
    padding-right: 60px;
  }
}

.packSaveChip {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 360px) {
  .packSaveChip {
    font-size: 12px;
  }
}

.packImg {
  display: block;
  width: 92%;
  max-width: 420px;
  margin: 8px auto 10px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55)) drop-shadow(0 6px 18px rgba(214, 165, 52, 0.16));
}

@media (max-width: 420px) {
  .packImg {
    max-height: 150px;
  }
}

@media (max-width: 360px) {
  .packImg {
    max-height: 130px;
  }
}

.packPriceRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 360px) {
  .packPriceRow {
    padding: 8px 8px;
    gap: 8px;
  }
}

.packPriceLeft {
  min-width: 0;
}

.packWas {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 360px) {
  .packWas {
    font-size: 12px;
  }
}

.packWas .old {
  color: var(--gold2);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 253, 253, 0.85);
  margin-left: 6px;
}

.packNote {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 360px) {
  .packNote {
    font-size: 14px;
  }
}

.packNow {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.packNow__currency {
  font-weight: 950;
  opacity: 0.9;
  transform: translateY(-6px);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 360px) {
  .packNow__currency {
    transform: translateY(-4px);
  }
}

.packNow .now {
  font-weight: 980;
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

@media (max-width: 420px) {
  .packNow .now {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .packNow .now {
    font-size: 32px;
  }
}

.priceBlink {
  animation: premiumGlow 1.6s ease-in-out infinite;
}

@keyframes premiumGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(214, 165, 52, 0));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(214, 165, 52, 0.24));
    opacity: 0.98;
  }
}

.packList {
  list-style: none;
  padding: 0;
  margin: 12px 4px 12px;
  display: grid;
  gap: 8px;
}

.packList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
  font-size: 14px;
}

@media (max-width: 360px) {
  .packList li {
    font-size: 12px;
    gap: 6px;
  }
}

.pcheck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(214, 165, 52, 0.14);
  border: 1px solid rgba(214, 165, 52, 0.28);
  color: #f3cf78;
  font-weight: 950;
  flex: 0 0 20px;
  margin-top: 1px;
}

@media (max-width: 360px) {
  .pcheck {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    font-size: 12px;
  }
}

.packCta {
  width: 100%;
  margin-top: 10px;
  border-radius: 999px;
  font-weight: 950;
  padding: 10px 16px;
  text-align: center;
}

.packCard .btn {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 10px auto 0;
  padding: 6px 16px;
  font-size: 18px;
  border-radius: 30px;
  transform-origin: center;
  will-change: transform;
}

@media (max-width: 420px) {
  .packCard .btn {
    max-width: 220px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .packCard .btn {
    max-width: 200px;
    font-size: 15px;
    padding: 5px 12px;
  }
}

.shipOk {
  min-height: 0;
}

.bajodelcta {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  animation: neonPulse 2.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 3px rgba(57, 255, 136, 0.45), 0 0 6px rgba(57, 255, 136, 0.35), 0 0 10px rgba(57, 255, 136, 0.25);
  }
  100% {
    text-shadow: 0 0 6px rgba(57, 255, 136, 0.7), 0 0 12px rgba(57, 255, 136, 0.5), 0 0 20px rgba(57, 255, 136, 0.35);
  }
}

.packCard[data-pack='6'] {
  border: 1px solid rgba(214, 165, 52, 0.45);
  background: radial-gradient(1200px 520px at 50% -10%, rgba(214, 165, 52, 0.35), transparent 55%),
    radial-gradient(900px 420px at 10% 10%, rgba(255, 255, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #151519, #0b0b10 70%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(214, 165, 52, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}

/* =========================
   LUXODIL SHOWCASE - VERSIÓN OPTIMIZADA
   ========================= */

/* Contenedor principal */
.luxodil-showcase {
  width: 100%;
  background: #000;
  padding: 20px 0 30px;
}

/* Contenedor interno (controla el ancho máximo) */
.luxodil-showcase__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Bloque del producto (centrado) */
.luxodil-showcase__product {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* WRAPPER DE LA IMAGEN */
.luxodil-showcase__image-wrapper {
  position: relative;
  width: 100%;
  max-width: min(90%, 500px);
  margin: 0 auto;
}

/* Breakpoints para el tamaño de la imagen */
@media (min-width: 480px) {
  .luxodil-showcase__image-wrapper {
    max-width: 420px;
  }
}

@media (min-width: 768px) {
  .luxodil-showcase__image-wrapper {
    max-width: 440px;
  }
}

@media (min-width: 1024px) {
  .luxodil-showcase__image-wrapper {
    max-width: 480px;
  }
}

@media (min-width: 1200px) {
  .luxodil-showcase__image-wrapper {
    max-width: 520px;
  }
}

/* Imagen - siempre respeta el wrapper */
.luxodil-showcase__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Badge flotante (FÓRMULA AVANZADA) */
.luxodil-showcase__badge-floating {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: linear-gradient(180deg, #f2c86c, #d6a534);
  color: #1a1a1a;
  font-size: clamp(0.5rem, 2vw, 0.7rem);
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 5;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .luxodil-showcase__badge-floating {
    font-size: 0.7rem;
    padding: 8px 18px;
    bottom: 15px;
    left: 20px;
  }
}

/* Panel de información superpuesto */
.luxodil-showcase__info-panel {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  z-index: 10;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .luxodil-showcase__info-panel {
    top: 15px;
    padding: 15px 20px;
  }
}

/* Título del producto */
.luxodil-showcase__product-title {
  display: inline-block;
  margin: 0 0 10px 0;
  max-width: 90%;
  font-size: clamp(0.8rem, 3vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  color: #d6a534;
  padding: 5px 12px;
  border: 2px solid #d6a534;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .luxodil-showcase__product-title {
    font-size: 1.2rem;
    padding: 6px 15px;
    border-width: 2px;
  }
}

/* Grid de especificaciones 2x2 */
.luxodil-showcase__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 90%;
}

@media (min-width: 480px) {
  .luxodil-showcase__specs-grid {
    gap: 10px 15px;
    max-width: 80%;
  }
}

@media (min-width: 768px) {
  .luxodil-showcase__specs-grid {
    gap: 12px 20px;
    max-width: 70%;
  }
}

/* Ítem de especificación */
.luxodil-showcase__spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 30px;
  border: 1px solid rgba(214, 165, 52, 0.3);
}

@media (min-width: 768px) {
  .luxodil-showcase__spec-item {
    gap: 8px;
    padding: 5px 12px;
  }
}

/* Icono */
.luxodil-showcase__spec-icon {
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  line-height: 1;
}

/* Texto de especificación */
.luxodil-showcase__spec-text {
  font-size: clamp(0.7rem, 2.2vw, 0.9rem);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .luxodil-showcase__spec-text {
    font-size: 0.95rem;
  }
}

/* Footer */
.luxodil-showcase__footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

/* Badge de uso recomendado */
.luxodil-showcase__usage-badge {
  width: 100%;
  max-width: min(90%, 500px);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(214, 165, 52, 0.34);
  background: rgba(214, 165, 52, 0.1);
  backdrop-filter: blur(4px);
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  text-align: center;
  color: #fff;
}

.luxodil-showcase__usage-badge strong {
  color: #fac74b;
  font-weight: 800;
}

/* Clase utilitaria para textos ocultos (SEO) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =========================
   POSTBUY - OPTIMIZADO
   ========================= */
.section--postbuy {
  padding-top: 22px;
  padding-bottom: 22px;
}

.postbuy {
  border-radius: 20px;
  border: 1px solid rgba(240, 180, 28, 0.28);
  background: radial-gradient(1200px 260px at 10% 0%, rgba(240, 180, 28, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 480px) {
  .postbuy {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 12px;
  }
}

.postbuy__title {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: clamp(18px, 4.6vw, 24px);
  line-height: 1.15;
}

.postbuy__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

@media (max-width: 480px) {
  .postbuy__text {
    font-size: 14px;
  }
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240, 180, 28, 0.55);
  background: linear-gradient(180deg, rgba(240, 180, 28, 0.95), rgba(196, 137, 0, 0.92));
  color: #111;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(240, 180, 28, 0.22);
  text-align: center;
}

@media (max-width: 480px) {
  .btn--gold {
    width: 100%;
    max-width: 250px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}


/* =========================
   CAROUSEL IG (IMÁGENES) - OPTIMIZADO
   ========================= */
.carousel.carousel--ig {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 70vw, 360px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 6px 2px 10px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

@media (max-width: 480px) {
  .carousel.carousel--ig {
    grid-auto-columns: clamp(180px, 65vw, 280px);
    gap: 10px;
  }
}

.carousel.carousel--ig::-webkit-scrollbar {
  display: none;
}

.tCard.tCard--ig {
  scroll-snap-align: start;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  overflow: hidden;
  padding: 0;
}

.tCard--ig .tMedia {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.tCard--ig .tMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   COVERAGE CARD - OPTIMIZADO
   ========================= */
.section--coverage {
  padding-top: 18px;
  padding-bottom: 22px;
}

.impactCard--coverage {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 16px 14px 18px;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(180deg, #121212 0%, #080808 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.coverageTitle {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.coverageTitle p {
  margin: 0;
  color: #f5f5f5;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .coverageTitle p {
    font-size: 0.95rem;
  }
}

.coverageMap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impactCard__image--coverage {
  display: block;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 600px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 18px;
  background: #0f0f0f;
}

/* Móvil: mostramos la parte superior del mapa (donde están las ciudades) */
@media (max-width: 480px) {
  .impactCard__image--coverage {
    min-height: 350px;
    object-position: center 0%;
  }
}
/* Tablet: ajustamos para mostrar más información */
@media (min-width: 481px) and (max-width: 768px) {
  .impactCard__image--coverage {
    min-height: 400px;
    object-position: center 10%;
  }
}
/* Escritorio: imagen más grande pero controlada */
@media (min-width: 769px) {
  .impactCard__image--coverage {
    min-height: 450px;
    max-height: 550px;
    object-position: center 15%;
  }
}
/* Para pantallas muy grandes */
@media (min-width: 1200px) {
  .impactCard__image--coverage {
    max-height: 600px;
  }
}

.coverageBadge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 900;
  background: linear-gradient(180deg, #f2c86c, #d6a534);
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  z-index: 10;
  border-radius: 30px;
}

@media (max-width: 480px) {
  .coverageBadge {
    top: 15px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .coverageBadge {
    font-size: 0.9rem;
    padding: 6px 6px;
  }
}

.impactCoverage__footer {
  margin-top: 14px;
  padding: 0 4px;
}

.impactCoverage__legend {
  margin: 0;
  color: #f1f1f1;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 480px) {
  .impactCoverage__legend {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .impactCoverage__legend {
    font-size: 0.8rem;
  }
}

.impactCoverage__legend strong {
  color: #d6a534;
  font-weight: 900;
}

.impactCard__overlay .btn {
  width: auto !important;
  min-width: 220px !important;
}

@media (max-width: 420px) {
  .impactCard__overlay .btn {
    min-width: 180px !important;
  }
}

@media (max-width: 360px) {
  .impactCard__overlay .btn {
    min-width: 160px !important;
  }
}

/* =========================
   MEDIA QUERIES REORGANIZADAS (MOBILE-FIRST)
   ========================= */

/* Móvil pequeño (hasta 360px) - AJUSTES FINOS */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  
  .section {
    padding: 15px 0;
  }
  
  h1 {
    font-size: clamp(28px, 4vw, 32px);
  }
  
  h2 {
    font-size: clamp(20px, 2.4vw, 22px);
  }
  
  .impactCard__overlay .btn.btn--green {
    min-width: 160px;
    min-height: 44px;
    font-size: 0.9rem;
  }
  
  .impactStrip__item {
    font-size: 0.6rem;
    padding: 4px 6px;
  }
  
  .packPriceRow {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .packNow {
    align-self: flex-end;
  }
}

/* Móvil (hasta 480px) - Breakpoint principal */
@media (max-width: 480px) {
  .heroOverlay .heroCopy {
    max-width: 100%;
  }
  
  .ctas {
    width: 100%;
  }
  
  .ctas .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .videoHero > .impactCard__overlay {
    bottom: 90px;
  }
  
  .videoHero > .impactCard__overlay .betweenHero__title {
    max-width: 220px;
    font-size: clamp(24px, 7vw, 34px);
  }
  
  .videoHero > .impactCard__overlay .impactCard__subtitle {
    max-width: 210px;
    font-size: 13px;
  }
  
  .impactCard--rebuilt {
    max-width: 100%;
  }
  
  .packCard {
    padding: 15px 12px 14px;
  }
  
  .packNow .now {
    font-size: 36px;
  }
  
  .packImg {
    max-height: 150px;
  }
}

/* Móvil grande / Tablet pequeña (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    max-width: 720px;
  }
  
  .packGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impactCard--rebuilt {
    max-width: 90%;
  }
  
  .videoHero {
    height: clamp(450px, 65vh, 500px);
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 900px;
    padding: 0 24px;
  }
  
  .packGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .packImg {
    max-height: 180px;
  }
  
  .impactCard--rebuilt {
    max-width: 90%;
  }
  
  .videoHero {
    height: 480px;
  }
  
  .videoHero > .impactCard__overlay .betweenHero__title {
    font-size: clamp(32px, 5vw, 40px);
    max-width: 300px;
  }
  
  .luxodil-showcase__frame {
    max-width: 380px;
  }
}

/* Tablet horizontal / Escritorio pequeño (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .container {
    max-width: 1100px;
    padding: 0 28px;
  }
  
  .packGrid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .packImg {
    max-height: 200px;
  }
  
  .videoHero {
    height: 500px;
  }
  
  .luxodil-showcase__frame {
    max-width: 420px;
  }
}

/* Escritorio (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
    padding: 0 32px;
  }
  
  .packGrid {
    grid-template-columns: repeat(2, minmax(350px, 1fr));
    max-width: 900px;
    gap: 30px;
  }
  
  .packImg {
    max-height: 220px;
  }
  
  .videoHero {
    max-width: 1200px;
    height: 520px;
  }
}

/* =========================
   FONTS - INTACTO
   ========================= */
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins-v24-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* =========================
   REDUCED MOTION - INTACTO
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .pulse {
    animation: none !important;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   FIX: IMPACT SECTION - SIN MÁRGENES EN MÓVIL
   ========================= */
@media (max-width: 767px) {
  .section--impact {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .section--impact .impactCard--rebuilt {
    max-width: 100% !important;
    border-radius: 0 !important;
  }
  
  .section--impact .impactVideoBox {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
  
  .section--impact .impactCard__media--reframed {
    border-radius: 0 !important;
    width: 100% !important;
  }
}

/* =========================
   FIX URGENTE - MÓVIL 100% ANCHO
   ========================= */
@media (max-width: 767px) {
  
  /* FUERZA a que la sección no tenga padding */
  .luxodil-showcase {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #000;
  }
  
  /* El contenedor interno tampoco tiene padding */
  .luxodil-showcase__container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  
  /* El wrapper de la imagen OCUPA TODO EL ANCHO */
  .luxodil-showcase__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* La imagen OCUPA TODO EL ANCHO */
  .luxodil-showcase__image {
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: center;
  }
  
  /* TEXTO: que no se desborde */
  .luxodil-showcase__product-title {
    max-width: 95% !important;
    font-size: 0.9rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    margin-left: 5px !important;
  }
  
  /* Grid de especificaciones - que no se salga */
  .luxodil-showcase__specs-grid {
    max-width: 95% !important;
    gap: 5px !important;
  }
  
  /* Cada ítem de especificación */
  .luxodil-showcase__spec-item {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }
  
  /* Texto dentro de cada ítem */
  .luxodil-showcase__spec-text {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* Badge flotante - reubicado */
  .luxodil-showcase__badge-floating {
    bottom: 5px !important;
    left: 5px !important;
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }
  
  /* Footer - sin márgenes laterales */
  .luxodil-showcase__footer {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 100% !important;
  }
  
  /* Badge de uso - que ocupe todo el ancho */
  .luxodil-showcase__usage-badge {
    max-width: 100% !important;
    width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.8rem !important;
    padding: 8px 5px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}

/* =========================
   LUXODIL VIDEO CTA - VERSIÓN CORREGIDA
   ========================= */
.luxodil-video-cta {
  width: 100%;
  background: #000;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin: 0;
}

.luxodil-video-cta__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.luxodil-video-cta__media-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  isolation: isolate;
  aspect-ratio: 4 / 5;
}

.luxodil-video-cta__media,
.impactCard__media,
.tVideo__media {
  display: block;
  width: 100%;
  height: 100%;
}

.luxodil-video-cta__media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0a0a;
  margin: 0;
  padding: 0;
}

.luxodil-video-cta__actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  width: calc(100% - 32px);
  max-width: 400px;
  display: flex;
  justify-content: center;
}

/* =========================
   MEDIA QUERIES - LUXODIL VIDEO CTA
   ========================= */

/* Tablets y superiores */
@media (min-width: 640px) {
  .luxodil-video-cta {
    padding: 0;
  }
  
  .luxodil-video-cta__container {
    padding: 0 16px;
  }
  
  .luxodil-video-cta__media-wrapper {
    max-width: 520px;
    border-radius: 26px;
  }
  
  .luxodil-video-cta__actions {
    bottom: 22px;
    width: calc(100% - 40px);
  }
}

@media (min-width: 768px) {
  .luxodil-video-cta {
    padding: 0;
  }
  
  .luxodil-video-cta__media-wrapper {
    max-width: 560px;
    border-radius: 28px;
  }
  
  .luxodil-video-cta__actions {
    bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .luxodil-video-cta {
    padding: 0;
  }
  
  .luxodil-video-cta__media-wrapper {
    max-width: 600px;
    border-radius: 32px;
  }
  
  .luxodil-video-cta__actions {
    bottom: 26px;
  }
}

@media (min-width: 1280px) {
  .luxodil-video-cta {
    padding: 0;
  }
  
  .luxodil-video-cta__media-wrapper {
    max-width: 640px;
  }
}

/* Respetamos preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  .heroOverlay {
    transition: none !important;
  }
}

/* =========================
   DESTACADOS VISUALES PACK 6 Y PACK 3
   ========================= */

/* Base para que los destacados puedan tener halo */
.packCard[data-pack='6'],
.packCard[data-pack='3'] {
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

/* Pseudo-elemento para brillo exterior controlado */
.packCard[data-pack='6']::before,
.packCard[data-pack='3']::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
}


