:root {
  /* Paleta oficial */
  --brand-primary: #fe6b00;
  /* CTA */
  --brand-secondary: #e75d29;
  --brand-danger: #d32d33;
  --brand-dark: #331500;

  /* Neutros */
  --ink: #0b1220;
  --muted: #6b7280;

  /* UI */
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .18);

  /* Layout */
  --nav-h: 64px;
  /* alto navbar base */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  /* Spacing responsivo */
  --container-pad: 18px;
  --section-py: 72px;
}

/* =========================================
   Breakpoints: Mobile / Tablet / Desktop
   Estimado Tablet/iPad: 769px - 1024px
   ========================================= */
@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
    --section-py: 60px;
    --nav-h: 64px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-pad: 22px;
    --section-py: 68px;
    --nav-h: 72px;
    /* iPad luce mejor con un poco más alto */
  }
}

/* =========================================
   Microinteracciones + Accesibilidad
   ========================================= */
a,
button {
  transition: transform .12s ease, opacity .12s ease;
}

a:active,
button:active {
  transform: translateY(1px);
}

/* Cards (productos) */
.product-card:hover {
  transform: translateY(-4px);
}

/* Botones CTA */
.products__all:hover,
.product-card__cta:hover,
.promo-btn--primary:hover {
  transform: translateY(-2px);
}

/* Focus accesible */
:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .85);
  outline-offset: 3px;
}

/* Reduce animaciones si el usuario lo pide */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* Evita hover "caro" en touch */
@media (hover: none) {

  .product-card:hover,
  .products__all:hover,
  .product-card__cta:hover,
  .promo-btn--primary:hover {
    transform: none;
  }
}

/* =========================================
   Base
   ========================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  background: #02040c;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 10px);
}

.container-narrow {
  max-width: 1050px;
}

/* Padding horizontal consistente */
.container,
.container-narrow {
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* =========================================
   Navbar
   ========================================= */
.promo-nav {
  position: sticky;
  top: 0;
  background: rgba(7, 16, 38, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  z-index: 9999;
  isolation: isolate;
  transform: translateZ(0);
}

.promo-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.promo-nav__brand img {
  height: 38px;
  width: auto;
  display: block;
}

.promo-nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.promo-nav__links a {
  position: relative;
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  padding: 8px 2px;
}

.promo-nav__links a:hover {
  color: rgba(255, 255, 255, .9);
}

.promo-nav__links a.is-active {
  color: #fff;
}

.promo-nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #fff;
  border-radius: 0;
}

/* Si quieres subrayado más corto tipo captura:
.promo-nav__links a.is-active::after{
  left: 15%;
  right: 15%;
}
*/

.promo-nav__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.promo-btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 14px;
  margin: 0 auto;
  text-decoration: none;
  min-width: 130px;
}

.promo-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
}

.promo-btn--ghost:hover {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
}

.promo-btn--primary {
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  color: #fff;
}

.promo-btn--primary:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff;
}

/* =========================================
   Safe-area iOS + Mobile navbar fixed
   (Sin conflicto de padding-top)
   ========================================= */
@media (max-width:768px) {
  .promo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding-top: var(--safe-top);
  }

  body {
    padding-top: calc(var(--nav-h) + var(--safe-top));
    padding-bottom: var(--safe-bottom);
  }
}

/* =========================================
   Menú hamburguesa (2 líneas)
   ========================================= */
.promo-burger {
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  display: none;
  align-content: center;
  justify-content: end;
  gap: 7px;
  padding: 0;
}

.promo-burger span {
  display: block;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 999px;
  justify-self: end;
  margin-left: auto;
}

.promo-burger span:first-child {
  width: 26px;
}

.promo-burger span:last-child {
  width: 18px;
}

.promo-offcanvas {
  background: rgba(7, 16, 38, .96);
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
}

.promo-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.promo-offcanvas__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.offcanvas-end {
  width: 100%;
}

.promo-offcanvas__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 18px;
}

.promo-offcanvas__link:hover {
  color: #fff;
}

.promo-offcanvas__actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

/* =========================
   OFFCANVAS: estado activo (mobile)
   ========================= */


/* Activo */
.promo-offcanvas__link.is-active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 1em;
}


/* Hover (opcional) */
.promo-offcanvas__link:hover {
  color: #fff;
}

/* Mostrar burger en mobile */
@media (max-width:768px) {
  .promo-burger {
    display: grid;
  }
}

/* =========================================
   Secciones / componentes generales
   ========================================= */
.section {
  padding: 56px 0;
}

.section-title {
  font-weight: 900;
  letter-spacing: .2px;
  font-size: clamp(22px, 2.2vw, 34px);
}

.section-sub {
  color: rgba(255, 255, 255, .78);
  max-width: 70ch;
}

.card-glass {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card-pad {
  padding: 18px;
}

.card-glass .muted {
  color: rgba(255, 255, 255, .72);
}

.step {
  display: flex;
  gap: 14px;
}

.step-num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(254, 107, 0, .18);
  border: 1px solid rgba(254, 107, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.accordion .accordion-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  overflow: hidden;
}

.accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.accordion .accordion-button:not(.collapsed) {
  background: rgba(254, 107, 0, .14);
  color: #fff;
}

.accordion .accordion-body {
  color: rgba(255, 255, 255, .82);
}

.app-shell {
  background:
    radial-gradient(circle at 20% 10%, rgba(254, 107, 0, .10), transparent 55%),
    linear-gradient(to bottom, #071026, #050a18);
  min-height: 100vh;
}

/* =========================================
   Unificación: Secciones con BG
   (sin cambiar tu HTML)
   ========================================= */
.how,
.prizes,
.products,
.stores,
.faqs {
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}

.prizes,
.products,
.stores,
.faqs {
  min-height: 100vh;
}

@media (max-width: 768px) {

  .prizes,
  .products,
  .stores,
  .faqs {
    min-height: calc(100vh - var(--nav-h));
    height: auto;
  }
}

.how__inner,
.prizes__inner,
.products__inner,
.stores__inner,
.faqs__inner {
  position: relative;
  z-index: 1;
}

.prizes__bg,
.products__bg,
.stores__bg,
.faqs__bg {
  position: absolute;
  inset: 0;
  background: url("/assets/promo/backgrounds/bg-dg-desktop.png") center/cover no-repeat;
  z-index: 0;
}

/* =========================================
   HERO (Desktop default)
   ========================================= */
.hero-ucl {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  background: #071026;
}

.hero-ucl__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/promo/backgrounds/bg-home-desktop.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 -200px;
}

/* Capas */
.hero-ucl img {
  position: absolute;
  z-index: 2;
  height: auto;
  user-select: none;
  pointer-events: none;
}

/* Desktop positions */
.hero-ucl__left {
  left: 3.2%;
  top: 18%;
  width: 23.5%;
}

.hero-ucl__center {
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 52%;
}

.hero-ucl__right {
  right: 3.2%;
  bottom: 7%;
  width: 20%;
}

/* CTA desktop oculto */
.hero-ucl__cta {
  display: none;
}

.hero-ucl__register {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

/* Pantallas muy grandes */
@media (min-width:1400px) {
  .hero-ucl__left {
    width: 21%;
    top: 10%;
  }

  .hero-ucl__center {
    width: 54%;
  }

  .hero-ucl__right {
    width: 10%;
  }
}

/* =========================================
   Botón login (estilo PDF)
   ========================================= */
.promo-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 70%;
  padding: 12px 16px;

  border-radius: 999px;
  background: rgba(51, 21, 0, .92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
  text-decoration: none;

  font-weight: 900;
  letter-spacing: .2px;
  font-size: 16px;
  margin: 0 auto;

  color: var(--brand-primary);
}

.promo-login-btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: transparent;
  position: relative;
  flex: 0 0 auto;
}

/* user (naranja) */
.promo-login-btn__icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-primary);
}

.promo-login-btn__icon::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  border-radius: 999px 999px 6px 6px;
  background: var(--brand-primary);
}

.promo-login-btn:hover {
  color: #fff;
}

.promo-login-btn:hover .promo-login-btn__icon::before,
.promo-login-btn:hover .promo-login-btn__icon::after {
  background: #fff;
}

/* =========================================
   HERO - MOBILE
   ========================================= */
@media (max-width:768px) {

  /* HERO: altura estable (svh) con fallback */
  .hero-ucl {
    min-height: calc(100svh - var(--nav-h));
    min-height: calc(100vh - var(--nav-h));
    height: auto;
  }

  .hero-ucl__bg {
    background-image: url("/assets/promo/backgrounds/bg-home-mobile.png");
    background-repeat: no-repeat;
    background-position: 50% 85%;
    background-size: 100% auto;
  }

  /* Título */
  .hero-ucl__left {
    left: 50%;
    top: 4%;
    transform: translateX(-50%);
    width: clamp(220px, 60vw, 320px);
  }

  /* Centro: usa imagen MOBILE y limita tamaño por alto */
  .hero-ucl__center {
    content: url("/assets/promo/hero/hero-cup-bottle-mobile_v2.png");
    left: 50%;
    top: auto;
    bottom: clamp(8%, 10vh, 14%);
    transform: translateX(-50%);
    width: clamp(280px, 100vw, 430px);
    max-height: clamp(260px, 40vh, 390px);
    object-fit: contain;
  }

  /* Logos */
  .hero-ucl__right {
    right: 3%;
    bottom: clamp(6%, 5vh, 12%);
    width: clamp(80px, 20vw, 130px);
  }

  /* CTA visible en mobile */
  .hero-ucl__cta {
    display: block;
    position: absolute;
    left: 50%;
    top: 32%;
    transform: translateX(-50%);
    width: min(80vw, 340px);
    z-index: 3;
    text-align: center;
  }

  /* botón login a 100% en mobile */
  .promo-login-btn {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
  }

  .hero-ucl__register:hover,
  .hero-ucl__register:active {
    color: #fff;
    text-decoration: underline;
  }
}

/* iOS: ajuste fino opcional para subir la copa */
@supports (-webkit-touch-callout:none) {
  @media (max-width:768px) {
    .hero-ucl__center {
      bottom: clamp(10%, 10vh, 16%);
    }
  }
}

/* =========================================
   HOW (¿Cómo participar?) - Desktop default
   ========================================= */
.how {
  padding: 70px 0 60px;
}

.how__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/promo/backgrounds/bg-default-desktop.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 0;
}

.how::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 12, 34, .20), rgba(6, 12, 34, .35));
}

.how__inner {
  position: relative;
  z-index: 2;
}

.how__head {
  margin-bottom: 14px;
}

.how__title {
  font-weight: 600;
  letter-spacing: .2px;
  font-size: clamp(30px, 3.2vw, 46px);
  margin: 0;
}

.how__subtitle {
  margin: 12px auto 0;
  max-width: 90ch;
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.35;
}

.how-panel {
  margin-top: 26px;
  padding: 26px 34px;
  background: rgba(2, 10, 28, .42);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.how-col__title {
  text-align: left;
  color: #F3D06A;
  font-weight: 700;
  letter-spacing: .6px;
  font-size: 30px;
  margin: 6px 0 18px 18px;
}

.how-col.col-left {
  border-right: groove gold;

}

.how-col {
  min-height: 350px;
}

.how-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 20px 0;
}

.how-num {
  width: 40px;
  text-align: right;
  font-weight: 900;
  font-size: 46px;
  line-height: .95;
  margin-top: 0;
  color: #F3D06A;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .30);
}

.how-text {
  font-size: 20px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .92);
  font-weight: 400;
}

.how-text a:hover {
  color: #F3D06A;
}

.how-strong {
  font-weight: 700;
  font-size: 25px;
}

.how-link {
  color: #F3D06A;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-style: italic;
}

.how-link:hover {
  color: #fff;
}

.how-note {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.1;
  color: rgba(255, 255, 255, .95);
  font-weight: 300;
  text-align: center;
}

.how-foot {
  margin-top: 28px;
  margin-left: 55px;
  font-size: 15px;
  line-height: 1.2;
  color: var(--brand-primary);
  font-weight: 400;
}

.how-strong-foot {
  color: #fff;
  font-style: italic;
  font-weight: 500;
}

/* Ajuste pantallas grandes */
@media (min-width: 1400px) {
  .how-panel {
    padding: 30px 44px;
  }

  .how-col__title {
    font-size: 30px;
  }
}

/* HOW - MOBILE */
@media (max-width: 768px) {

  .how__title {
    font-size: 35px;
  }

  .how__subtitle {
    font-size: 18px;
  }

  .how__bg {
    background: url("/assets/promo/backgrounds/bg-default-mobile.png") center/cover no-repeat;
    background-position: 50% 40%;
    transform: scale(1.02);
  }

  .how .d-md-none {
    position: relative;
    z-index: 1;
    width: min(92vw, 560px);
    margin: 18px auto 0;
    background: rgba(2, 10, 28, .42);
  }

  .how-tabs {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(0, 0, 0, .12);
    border: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .how-tab {
    width: 100%;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, .14);
    background: rgba(2, 10, 28, .42) !important;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 16px;
    padding: 5px;
    text-align: center;
  }

  ol {
    padding: 0;
  }

  .how-tabs .nav-item:last-child .how-tab {
    border-right: 0;
  }

  .how-tab.active,
  .how-tab[aria-selected="true"] {
    background: #fff !important;
    color: var(--brand-primary) !important;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .75);
  }

  .how .tab-content {
    min-height: 520px;
    padding-top: 10px;
  }

  .how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 18px 10px;
  }

  .how-step__num {
    font-weight: 900;
    font-size: clamp(40px, 11vw, 52px);
    line-height: .95;
    color: #F3D06A;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  }

  .how-step__text {
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.25;
    color: rgba(255, 255, 255, .95);
    font-weight: 500;
    max-width: 36ch;
  }

  .how-step__text b {
    font-weight: 800;
  }

  .how-card__note {
    margin: 10px 8px 0;
    font-size: clamp(15px, 4.3vw, 17px);
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
  }

  .how-card__foot {
    margin: 10px 8px 0;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--brand-primary);
    text-align: center;
  }
}

/* iPhone Safari a veces necesita más alto */
@supports (-webkit-touch-callout:none) {
  @media (max-width: 768px) {
    .how .tab-content {
      min-height: 560px;
    }
  }
}

/* =========================================
   PREMIOS (Desktop default)
   ========================================= */
.prizes__inner {
  z-index: 2;
  max-width: 1180px;
}

.prizes-carousel {
  position: relative;
  padding-top: 34px;
}

.prize-slide {
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  gap: 40px;
  min-height: 420px;
}

.prize-circle {
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 90px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.prize-img {
  width: 72%;
  height: auto;
  object-fit: contain;
  display: block;
}

.prize-copy {
  color: #fff;
}

.prize-title__top {
  display: block;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
  margin-bottom: 10px;
}

.prize-title__main {
  display: block;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  margin-top: 6px;
}

.prize-desc {
  margin-top: 18px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  opacity: .95;
}

.prizes-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  margin: 0;
}

.prizes-dots [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  margin: 0 6px;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
}

.prizes-dots .active {
  background: #fff;
}

.prizes-control {
  width: 10%;
  opacity: 0;
  transition: opacity .18s ease;
}

.prizes-carousel:hover .prizes-control {
  opacity: .9;
}

.prizes-control .carousel-control-prev-icon,
.prizes-control .carousel-control-next-icon {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .45));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 4rem;
  height: 4rem;
}

.carousel-control-prev,
.carousel-control-next {
  justify-content: normal;
}

/* PREMIOS – MOBILE */
@media (max-width: 768px) {

  .prizes__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .prizes-carousel {
    padding-top: 18px;
  }

  .prize-slide {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
    min-height: calc(100svh - var(--nav-h) - 180px);
    min-height: calc(100vh - var(--nav-h) - 180px);
    padding-bottom: 40px;
  }

  .prize-circle {
    width: clamp(210px, 64vw, 270px);
    height: clamp(210px, 64vw, 270px);
    margin-left: 0;
    margin-top: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  }

  .prize-img {
    width: 70%;
  }

  .prize-title__top {
    font-size: 35px;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    margin-bottom: 8px;
  }

  .prize-title__main {
    font-size: clamp(44px, 13.5vw, 64px);
    line-height: 1;
    margin-top: 0;
  }

  .prize-desc {
    font-size: clamp(18px, 5.6vw, 26px);
    line-height: 1.15;
    margin-top: 20px;
  }

  .prizes-dots {
    bottom: 10px;
  }

  .prizes-dots [data-bs-target] {
    width: 9px;
    height: 9px;
    margin: 0 7px;
    background: rgba(255, 255, 255, .35);
  }

  .prizes-dots .active {
    background: #fff;
  }

  .prizes-control {
    display: none;
  }
}

/* =========================================
   PRODUCTOS (Desktop default)
   ========================================= */
.products__bg {
  background-image: url("/assets/promo/backgrounds/bg-dg-desktop.png");
  background-size: cover;
  background-position: 50% 55%;
  background-repeat: no-repeat;
}

.products__title {
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: .2px;
  margin: 0 0 34px;
}

.products-carousel {
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
  align-items: start;
  justify-items: center;
}

.product-card {
  width: 100%;
  max-width: 250px;
  /* min-height: 290px; */
  /* background: #fff; */
  border-radius: 0;
  padding: 18px 14px 16px;
  color: #0b1220;
  /* box-shadow: 0 16px 34px rgba(0, 0, 0, .18);*/
}

.product-card__media {
  padding-top: 10px;
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .5)
}

.product-card__media img {
  max-width: 90%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

.product-card__body {
  margin-top: -30px;
  padding-top: 40px;
  text-align: center;
  background: #fff;
  min-height: 150px;

}

.product-card__name {
  font-size: 11px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 0;
  background: var(--brand-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}

.product-card__cta:hover {
  background: var(--brand-secondary);
  color: #fff;
}

.product-card__note {
  font-size: 11px;
  line-height: 1.25;
  margin: 0;
}

.product-card__note-strong {
  color: var(--brand-primary);
  font-weight: 900;
}

.products__footer {
  margin-top: 38px;
}

.products__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 0;
  background: var(--brand-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.products__all:hover {
  background: var(--brand-secondary);
  color: #fff;
}

.products-dots {
  position: static;
  margin-top: 22px;
}

.products-dots [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  margin: 0 8px;
  border: 0 !important;
}

.products-dots .active {
  background: #fff;
}

.products-control {
  width: 10%;
  opacity: .85;
}

.products-control .carousel-control-prev-icon,
.products-control .carousel-control-next-icon {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .35));
}

/* Desktop: ocultar dots/flechas */
@media (min-width: 1025px) {
  .products-dots {
    display: none !important;
  }

  .products-control {
    display: none !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .products-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .products__title {
    font-size: 35px;
  }

  .product-card {
    max-width: 260px;
  }

  .carousel-item {
    padding: 6px 0 12px;
  }

  .products-control {
    display: none;
  }
}

/* ===============================
   TIENDAS 
   =============================== */
.store__title {
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: .2px;
  margin: 0 0 34px;
  text-align: center;
}

.promo-subtitle {
  opacity: .80;
}

/* Top 5 cards */
.stores-rank-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 0;
  /* CUADRADO */
  padding: 14px;
}

.stores-rank-card__title {
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}

.stores-rank-card__meta {
  opacity: .8;
  font-size: 13px;
  margin: 6px 0 12px;
}

/* Barra horizontal de estados */
.states-bar {
  /* padding: 10px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);*/
  border-radius: 0;
}

.states-bar__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  justify-content: center;
}

.states-bar__track::-webkit-scrollbar {
  height: 8px;
}

.states-bar__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
}

.state-pill {
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-radius: 0;
  /* CUADRADO */
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
  transition: .15s ease;
}

.state-pill:hover {
  background: rgba(255, 255, 255, .10);
}

.state-pill.is-active {
  border-color: rgba(255, 140, 0, .95);
  box-shadow: 0 0 0 2px rgba(255, 140, 0, .18) inset;
}

.state-pill--all {
  border-color: rgba(255, 255, 255, .30);
  background: var(--brand-primary);
}

/* Card principal estado */
.stores-hero {
  display: grid;
  grid-template-columns: 100% 1fr;
  gap: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 0;
  /* CUADRADO */
  overflow: hidden;
}

.stores-hero__media {
  border-right: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .25);
}

.stores-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stores-hero__content {
  padding: 14px;
}

.stores-hero__top {
  display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, .20);
    padding: 5px 10px;
}

.stores-hero__title {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.stores-hero__meta {
  opacity: .8;
  font-size: 13px;
  margin-top: 4px;
}

.stores-hero__badge {
  /*border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .20);
  padding: 8px 10px;*/
  border-radius: 0;
  /* CUADRADO */
  font-size: 12px;
  opacity: .9;
}

/* Grid tiendas (cuadrícula, con scroll si no cabe) */
.stores-grid-wrap {
  max-height: 320px;
  overflow: auto;
  padding-right: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.stores-grid-wrap::-webkit-scrollbar {
  width: 8px;
}

.stores-grid-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
}

.store-tile {
  background: rgba(0, 0, 0, .20);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 0;
  /* CUADRADO */
  padding: 10px 12px;
  font-weight: 750;
  font-size: 13px;
}

/* Modal estados (cuadrado) */
.states-modal {
  position: fixed;
  inset: 0;
  z-index: 11100;  
}

.states-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .70);
  backdrop-filter: blur(6px);
}

.states-modal__panel {
  position: relative;
  max-width: 980px;
  margin: 8vh auto;
  background: rgba(15, 26, 45, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  /* CUADRADO */
    overflow-y: auto;
}

.states-modal__head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.states-modal__title {
  font-weight: 900;
  font-size: 16px;
}

.states-modal__close {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  border-radius: 0;
  /* CUADRADO */
  padding: 6px 10px;
  font-weight: 900;
}

.states-modal__body {
  padding: 16px;
}

.states-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.state-tile {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-radius: 0;
  /* CUADRADO */
  padding: 12px 10px;
  font-weight: 850;
  font-size: 13px;
  text-align: center;
}

.state-tile:hover {
  background: rgba(255, 255, 255, .10);
}

/* Responsive */
@media (max-width: 992px) {
  .stores-hero {
    grid-template-columns: 1fr;
  }

  .stores-hero__media {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    height: 150px;
  }

  .stores-grid-wrap {
    grid-template-columns: 1fr;
    /* mobile: 1 columna */
    max-height: 360px;
  }

  .states-modal__panel {
    margin: 10vh 12px;
  }

  .states-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .stores-hero__top{
    justify-content: center;
  }
  .stores-rank-card {
    display: none;
  }

  .stores-rank-card:first-of-type {
    display: block;
  }
}
@media (max-width: 767px) {
  .stores-rank-card {
    padding: 10px;
  }

  .stores-rank-card__title {
    font-size: 15px;
  }

  .stores-rank-card__meta {
    font-size: 12px;
    margin: 4px 0 8px;
  }

  .stores-rank-card .btn {
    padding: 6px 8px;
    font-size: 12px;
  }
}
/* ===== Fix modal estados en mobile: scroll interno ===== */

/* Panel que no exceda pantalla */
.states-modal__panel{
  max-height: 86vh;          /* altura máxima visible */
  display: flex;
  flex-direction: column;    /* header fijo + body scrolleable */
}

/* El body del modal se vuelve scrolleable */
.states-modal__body{
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS smooth */
  max-height: calc(86vh - 58px);     /* resta aprox altura header */
}

/* En mobile más compacto */
@media (max-width: 992px){
  .states-modal__panel{
    margin: 10vh 12px;       /* ya lo tienes, lo mantenemos */
    max-height: 82vh;
  }
  .states-modal__body{
    max-height: calc(82vh - 58px);
  }
}
/* =========================
   RANKING - Ajuste Mobile
   ========================= */

/* En mobile solo mostrar el primer ranking */
@media (max-width: 767px) {
  .stores-rank-card {
    display: none;
  }

  .stores-rank-card:first-of-type {
    display: block;
  }
}

.store-tile__name { font-weight: 800; }
.store-tile__periods { font-size: 13px; opacity: .9; margin-top: 4px; line-height: 1.35; }
/* =========================================
   FAQS
   ========================================= */
.faqs__title {
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: .2px;
  margin: 0 0 34px;
  text-align: center;
}

.faqs__list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  padding: 16px 18px;
  cursor: pointer;

  background: var(--brand-primary);
  color: #0b1220;
  font-weight: 700;
  font-size: 18px;
  text-align: left;

  transition: background .2s ease, color .2s ease;
}

.faq-item.is-open .faq-item__btn {
  background: #f2f2f2;
  color: #0b1220;
}

.faq-item__qicon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .85);
  color: #fff;
}

.faq-item.is-open .faq-item__qicon {
  border-color: rgba(254, 107, 0, .75);
  color: var(--brand-primary);
  background: #fff;
}

.faq-item__qtext {
  flex: 1;
}

.faq-item__arrow {
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.faq-item.is-open .faq-item__arrow {
  transform: rotate(-135deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item__answer {
  padding: 16px 18px 18px;
  background: rgba(0, 0, 0, .55);
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item__answer a {
  font-weight: bold;
}

.faq-item__answer a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .faqs__title {
    font-size: 35px;
  }

  .faq-item__btn {
    font-size: 16px;
    padding: 14px 14px;
  }

  .faq-item__qicon {
    width: 32px;
    height: 32px;
  }

  .faq-item__answer {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET / iPad ajustes finos (769px a 1024px)
   ========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {

  /* NAV */
  .promo-nav__inner {
    padding: 14px 16px;
  }

  .promo-nav__brand img {
    height: 34px;
  }

  .promo-nav__links {
    gap: 22px;
  }

  .promo-nav__links a {
    font-size: 13px;
    padding: 8px 1px;
  }

  .promo-btn {
    padding: 9px 14px;
    font-size: 13px;
  }

  .promo-burger {
    display: grid;
  }

  /* HERO */
  .hero-ucl {
    min-height: 78vh;
  }

  .hero-ucl__bg {
    background-position: 0 -120px;
  }

  .hero-ucl__left {
    top: 14%;
    width: 26%;
  }

  .hero-ucl__center {
    top: 56%;
    width: 58%;
  }

  .hero-ucl__right {
    bottom: 6%;
    width: 18%;
  }

  /* HOW */
  .how__subtitle {
    font-size: 20px;
    max-width: 80ch;
  }

  .how-panel {
    padding: 22px 22px;
  }

  .how-grid {
    gap: 30px;
  }

  .how-col__title {
    font-size: 24px;
  }

  .how-text {
    font-size: 18px;
  }

  .how-strong {
    font-size: 22px;
  }

  .how-num {
    font-size: 42px;
  }

  /* PREMIOS */
  .prize-slide {
    grid-template-columns: 360px 1fr;
    gap: 26px;
    min-height: 360px;
  }

  .prize-circle {
    width: 300px;
    height: 300px;
    margin-left: 22px;
  }

  .prize-title__top {
    font-size: 34px;
    text-underline-offset: 8px;
  }

  .prize-title__main {
    font-size: 52px;
  }

  .prize-desc {
    font-size: 22px;
  }

  /* PRODUCTOS: 3 columnas tablet */
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .product-card {
    max-width: 240px;
  }

  /* Mantener look desktop: sin dots/flechas en tablet */
  .products-dots {
    display: none !important;
  }

  .products-control {
    display: none !important;
  }



  /* FAQS */
  .faqs__list {
    max-width: 860px;
  }

  .faq-item__btn {
    font-size: 17px;
    padding: 15px 16px;
  }

  .faq-item__answer {
    font-size: 14px;
  }
}

/* =========================================
   AUTH (Login / Register / Forgot / Reset)
   Look: tarjeta blanca centrada + bg estadio
   ========================================= */
.auth-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  background: #071026;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Reutiliza tu estética de fondo */
.auth-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/promo/backgrounds/bg-default-desktop.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 -200px;
  opacity: 1;
}

@media (max-width:768px) {
  .auth-hero {
    min-height: calc(100svh - var(--nav-h));
    min-height: calc(100vh - var(--nav-h));
  }

  .auth-hero__bg {
    background-image: url("/assets/promo/backgrounds/bg-default-mobile.png");
    background-position: 50% 85%;
    background-size: 100% auto;
  }
}

.auth-hero__inner {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.auth-title {
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 18px 0 18px;
}

.auth-card {
  width: min(420px, 92vw);
  background: #fff;
  color: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  border-radius: 2px;
  /* como PDF: casi cuadrado */
  padding: 18px 22px 18px;
  margin: 0 auto;
}

.auth-card__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 6px 0 14px;
}

.auth-input {
  border-radius: 2px;
  background: #efefef;
  border: 1px solid #e6e6e6;
  padding: 12px 12px;
  font-size: 14px;
}

.auth-input:focus {
  box-shadow: none;
  border-color: rgba(254, 107, 0, .55);
}

.auth-btn {
  width: 100%;
  border-radius: 2px;
  padding: 10px 12px;
  font-weight: 800;
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  color: #fff;
}

.auth-btn:hover {
  background: #bfbfbf;
  /* gris hover */
  border-color: #bfbfbf;
  color: #111;
}

.auth-link {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.auth-error {
  font-size: 12px;
  color: #d32d33;
  margin-top: 6px;
}


/* =========================================
   Sticky Footer Promo
   ========================================= */

/* Layout base */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  /* Empuja el footer hacia abajo */
}

/* Footer */
.promo-footer {
  flex-shrink: 0;
  background: rgba(0, 0, 0, .75);
  border-top: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(6px);
}

.promo-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.promo-footer__logo img {
  display: block;
  height: 38px;
  width: auto;
  opacity: .95;
  transition: opacity .2s ease;
}

.promo-footer__logo img:hover {
  opacity: 1;
}

/* Logo combinado ligeramente más grande si quieres */
.promo-footer__logo--wide img {
  height: 42px;
}

/* Mobile */
@media (max-width: 768px) {
  .promo-footer__inner {
    gap: 20px;
    padding: 16px 16px calc(16px + var(--safe-bottom));
  }

  .promo-footer__logo img {
    height: 28px;
  }

  .promo-footer__logo--wide img {
    height: 30px;
  }
  .promo-footer__logo p{
    font-size: 12px!important;
  }
}

/* OVERLAY*/

/* Loader global */
.global-loader{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-loader__box{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;           /* cuadrado */
  padding: 18px 18px;
  min-width: 220px;
  text-align: center;
  color: #fff;
}

.global-loader__text{
  margin-top: 10px;
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}