/* ============================================================
   JugaBet — jugabet-online-casino.cl
   Un solo archivo de estilos para todo el sitio.
   Mobile-first: base = móvil, @media (min-width: 768px / 1100px).
   ============================================================ */

/* ---------- 1. Variables ---------- */
:root {
  /* Colores de marca — cambiar aquí afecta a todo el sitio */
  --green:        #B9D532;
  --green-light:  #D3E86C;
  --green-dark:   #93AC1F;
  --green-tint:   #F5F9DF;
  --green-border: rgba(185, 213, 50, 0.45);

  --blue:         #0A234F;
  --blue-light:   #1E4076;
  --blue-dark:    #061530;
  --blue-tint:    #EDF1F8;
  --blue-border:  rgba(10, 35, 79, 0.22);

  /* Texto y superficies */
  --ink:          #111826;
  --ink-2:        #3A465C;
  --ink-3:        #66718A;
  --surface:      #FFFFFF;
  --surface-soft: #F6F8FB;
  --line:         #E2E7F0;

  /* Tipografía y misc */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow:    0 2px 10px rgba(10, 35, 79, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 35, 79, 0.22);
  --container: 1140px;
}

/* ---------- 2. Reset y base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-light);
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

.section-title {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--green-dark);
}

/* Placeholder SVG para imágenes pendientes */
.ph {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Iconos inline (currentColor: el color se define en el contenedor) */
.icon {
  display: block;
  flex-shrink: 0;
}

/* ---------- 3. Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--blue);
}

.btn--primary:hover {
  background: var(--green-dark);
}

.btn--dark {
  background: var(--blue);
  color: #fff;
}

.btn--dark:hover {
  background: var(--blue-light);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue-border);
}

.btn--ghost:hover {
  border-color: var(--blue);
}

.btn--block {
  width: 100%;
}

/* ---------- 4. header-1 ---------- */
.header-1 {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-1__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}

.header-1__logo {
  flex-shrink: 0;
  display: inline-flex;
}

.header-1__logo img {
  width: 150px;
  height: auto;
}

.header-1__nav {
  display: none;
}

.header-1__nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 4px;
}

.header-1__nav a:hover {
  color: var(--blue);
}

.header-1__nav a.is-active {
  color: var(--blue);
  box-shadow: inset 0 -2px 0 var(--green);
}

.header-1__cta {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.header-1__cta .btn {
  padding: 9px 16px;
  font-size: 14px;
}

.header-1__cta .btn--ghost {
  display: none;
}

.header-1__burger {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--blue-tint);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.header-1__burger span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Menú móvil abierto */
.header-1.is-open .header-1__nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px 16px 16px;
}

.header-1.is-open .header-1__nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}

.header-1.is-open .header-1__nav a:last-child {
  border-bottom: none;
}

.header-1.is-open .header-1__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-1.is-open .header-1__burger span:nth-child(2) {
  opacity: 0;
}

.header-1.is-open .header-1__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 5. hero-1 ---------- */
.hero-1 {
  background:
    radial-gradient(1000px 420px at 90% -10%, var(--green-tint), transparent 60%),
    var(--surface-soft);
  padding-block: 36px 44px;
}

.hero-1__grid {
  display: grid;
  gap: 28px;
}

.hero-1__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.hero-1__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.hero-1__title {
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 14px;
}

.hero-1__accent {
  color: var(--green-dark);
}

.hero-1__lead {
  font-size: 16.5px;
  color: var(--ink-2);
  margin-bottom: 22px;
  max-width: 56ch;
}

.hero-1__lead strong {
  color: var(--ink);
}

.hero-1__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-1__media {
  order: -1;
}

/* El bloque hero siempre en 2:1; los archivos con otra proporción se recortan */
.hero-1__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Recorte anclado a la izquierda (hero de /app/: el texto de la
   imagen está pegado al borde izquierdo y el centrado lo cortaba) */
.hero-1__media--crop-left img {
  object-position: left center;
}

/* Tarjeta de oferta (total del bono) */
.offer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 22px;
}

.offer-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.offer-card__value {
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue);
}

.offer-card__pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.pill {
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.pill--green {
  background: var(--surface);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
}

.pill--blue {
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  color: var(--blue-light);
}

/* Escalera de depósitos (solo /bono/) */
.steps-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.deposit-steps {
  position: relative;
  margin-bottom: 20px;
}

.deposit-steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--green), var(--blue-light));
}

.deposit-steps__item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  position: relative;
}

.deposit-steps__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  background: var(--surface);
  border: 2px solid var(--blue-border);
  color: var(--blue-light);
  position: relative;
  z-index: 1;
}

.deposit-steps__item:first-child .deposit-steps__num {
  background: var(--green);
  border-color: var(--green);
  color: var(--blue);
}

.deposit-steps__body strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
}

.deposit-steps__body small {
  font-size: 12.5px;
  color: var(--ink-3);
}

.deposit-steps__val {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  text-align: right;
}

/* Bloques de confianza */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.trust-grid__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 10px;
  text-align: center;
}

.trust-grid__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.trust-grid__value {
  display: block;
  font-weight: 800;
  font-size: 15px;
  color: var(--green-dark);
  line-height: 1.2;
}

.trust-grid__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Insignias de plataforma (solo /app/) */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.platform-badges__icon {
  display: flex;
  color: var(--green-dark);
}

.platform-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
}

/* ---------- 6. games-1 (solo portada) ---------- */
.games-1 {
  padding-block: 44px;
}

.games-1__live {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 28px;
}

.games-1__live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.games-1__live-title {
  font-size: 1.15rem;
  color: var(--blue);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: 5px 12px;
}

.live-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.games-1__live-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}

.games-1__live-list li:last-child {
  border-bottom: none;
}

.games-1__live-icon {
  width: 28px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
}

.games-1__live-name {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.3;
}

.games-1__live-sub {
  font-size: 12.5px;
  color: var(--ink-3);
}

.games-1__group {
  margin-bottom: 26px;
}

.games-1__group:last-child {
  margin-bottom: 0;
}

.games-1__group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.games-1__group-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--green);
}

.games-1__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.game-card {
  display: block;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 8px 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.game-card:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
}

.game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
}

.game-card__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- 7. Secciones de pasos (bono-steps-1 / app-steps-1) ---------- */
.steps-1 {
  padding-block: 44px;
  background: var(--surface-soft);
}

.steps-1__intro {
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 24px;
}

.steps-1__list {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.steps-1__item {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px 18px 16px 66px;
  position: relative;
}

.steps-1__item::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  background: var(--green);
  color: var(--blue);
}

.steps-1__item h3 {
  font-size: 1.02rem;
  color: var(--blue);
  margin-bottom: 4px;
}

.steps-1__item p {
  font-size: 14.5px;
  color: var(--ink-2);
}

.steps-1__platform {
  margin-bottom: 28px;
}

.steps-1__platform:last-of-type {
  margin-bottom: 24px;
}

.steps-1__platform-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.steps-1__platform-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--green);
}

.steps-1__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Escalera de pasos dentro del artículo (content-1): siempre una columna,
   la columna del artículo es estrecha para la rejilla de 2/4 columnas */
.content-1 .steps-1__list {
  grid-template-columns: 1fr;
}

/* ---------- 8. content-1 ---------- */
.content-1 {
  padding-block: 44px;
}

.content-1__inner {
  display: grid;
  gap: 28px;
}

.content-1__article h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  color: var(--blue);
  margin-bottom: 14px;
}

.content-1__article h2::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.content-1__article p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.content-1__article p strong {
  color: var(--ink);
}

.content-1__article hr {
  border: none;
  border-top: 1px solid var(--line);
  margin-block: 26px;
}

/* Ficha técnica */
.ficha {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--surface);
}

.ficha__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.ficha__row:last-child {
  border-bottom: none;
}

.ficha__key {
  color: var(--ink-3);
  font-size: 13px;
  flex-shrink: 0;
}

.ficha__val {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.ficha__val--green {
  color: var(--green-dark);
}

/* Tarjetas de tipos de juego */
.type-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.type-cards__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 14px;
}

.type-cards__icon {
  display: flex;
  flex-shrink: 0;
  color: var(--blue-light);
}

.type-cards__name {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.25;
}

.type-cards__sub {
  font-size: 11.5px;
  color: var(--ink-3);
}

/* Píldoras de pago */
.pay-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-pills li {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

.content-1__media .ph {
  border-radius: var(--radius-lg);
}

/* ---------- 9. faq-1 ---------- */
.faq-1 {
  padding-block: 44px;
  background: var(--surface-soft);
}

.faq-1__list {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.faq-1__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-1__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  padding: 15px 44px 15px 18px;
  position: relative;
}

.faq-1__item summary::-webkit-details-marker {
  display: none;
}

.faq-1__item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  background: var(--green-tint);
  color: var(--green-dark);
  transition: transform 0.2s ease;
}

.faq-1__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-1__body {
  padding: 0 18px 16px;
}

.faq-1__body p {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ---------- 10. error-1 (404) ---------- */
.error-1 {
  padding-block: 70px;
  text-align: center;
}

.error-1__code {
  font-size: clamp(4.5rem, 18vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
}

.error-1__code em {
  font-style: normal;
  color: var(--green);
}

.error-1__title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--blue);
  margin-bottom: 10px;
}

.error-1__text {
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 auto 24px;
}

/* ---------- 11. footer-1 ---------- */
.footer-1 {
  background: var(--blue);
  color: #C7D2E4;
  padding-block: 36px 26px;
}

.footer-1__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 22px;
}

/* Marca en texto: la imagen del logo tiene la parte «BET» azul oscuro
   y se perdería sobre el fondo azul del footer */
.footer-1__logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer-1__logo span {
  color: var(--green);
}

.footer-1__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-1__nav a {
  color: #E4EAF4;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}

.footer-1__nav a:hover {
  color: var(--green);
}

.footer-1__resp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-1__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid var(--green);
  color: var(--green);
}

.footer-1__resp p {
  font-size: 13px;
  line-height: 1.65;
  color: #A9B7CF;
}

.footer-1__copy {
  font-size: 12.5px;
  color: #8494B3;
}

/* ---------- 12. popup-1 ---------- */
/* El popup lo inserta /assets/js/popup.js después de cargar la página.
   Móvil: lámina inferior, el contenido de la página sigue accesible.
   Escritorio: modal centrado con overlay. */
.popup-1 {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  display: none;
}

.popup-1.is-open {
  display: block;
}

.popup-1__overlay {
  display: none;
}

.popup-1__dialog {
  position: relative;
  background: var(--surface);
  border-top: 3px solid var(--green);
  border-radius: 18px 18px 0 0;
  box-shadow: var(--shadow-lg);
  padding: 22px 20px 20px;
  max-height: 70vh;
  overflow-y: auto;
}

.popup-1__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-1__close:hover {
  background: var(--blue-tint);
}

.popup-1__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.popup-1__title {
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 8px;
  padding-right: 48px;
}

.popup-1__text {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 16px;
}

/* ---------- 13. Tablet / escritorio ---------- */
@media (min-width: 768px) {
  .container {
    padding-inline: 24px;
  }

  .header-1__nav {
    display: flex;
    gap: 24px;
    margin-left: 26px;
  }

  .header-1__cta .btn--ghost {
    display: inline-flex;
  }

  .header-1__burger {
    display: none;
  }

  .hero-1 {
    padding-block: 56px 64px;
  }

  .hero-1__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 48px;
  }

  .hero-1__media {
    order: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .games-1,
  .steps-1,
  .content-1,
  .faq-1 {
    padding-block: 64px;
  }

  .games-1__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-1__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-1__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 44px;
  }

  .content-1__media {
    position: sticky;
    top: 88px;
  }

  .type-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-1__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Popup como modal centrado */
  .popup-1 {
    inset: 0;
  }

  .popup-1.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .popup-1__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(6, 21, 48, 0.6);
  }

  .popup-1__dialog {
    border-radius: var(--radius-lg);
    border-top-width: 4px;
    width: 100%;
    max-width: 440px;
    padding: 28px 26px 26px;
    max-height: none;
  }
}

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

  .steps-1__list--two-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
