/* ============================================================
   argentina22bet.com — Satélite 22Bet Argentina
   El marco (marquesina/zócalo) queda en el teal de la marca.
   Adentro mandan el celeste y el blanco de la bandera con el
   dorado del Sol de Mayo, paneles blancos y esquinas suaves.
   ============================================================ */

:root {
  --marco: #054248;
  --marco-panel: #054146;
  --fondo: #05343a;
  --celeste: #75aadb;
  --celeste-profundo: #3d85c6;
  --celeste-oscuro: #2b6da8;
  --celeste-palido: #eaf3fa;
  --celeste-linea: #cfe2f1;
  --sol: #f6b40e;
  --sol-profundo: #d99a00;
  --sol-palido: #fdf3d9;
  --cta-verde: #2eb256;
  --cta-verde-oscuro: #2ca331;
  --tinta: #23262a;
  --tinta-suave: #3a3f45;
  --tinta-palida: #6d747c;
  --nube: #f6f8fa;
  --nube-linea: #dde4ea;
  --login-bg: #185b62;
  --radio: 10px;
  --ancho: 1200px;
  --tipo: "Open Sans", Arial, sans-serif;
  --tipo-titulo: "Roboto Condensed", "Open Sans", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--tipo);
  font-size: 15px;
  line-height: 1.7;
  color: var(--tinta);
  background-color: var(--fondo);
  /* Guarda pampa (rombos andinos) sobre el teal de la marca */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1.3'%3E%3Cpath d='M32 2L62 32 32 62 2 32z'/%3E%3Cpath d='M32 14L50 32 32 50 14 32z'/%3E%3Cpath d='M32 24l8 8-8 8-8-8z'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(1200px 560px at 50% 0%, #0a636b 0%, var(--fondo) 60%, #032a2f 100%);
  background-attachment: scroll, fixed;
}

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

a { color: var(--celeste-oscuro); text-decoration: none; }
a:hover { text-decoration: underline; }

.marco {
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ BARRA DE AVANCE ============ */

.avance {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--celeste) 0%, var(--celeste) 36%, #ffffff 36%, #ffffff 64%, var(--sol) 64%);
  z-index: 120;
  transition: width .08s linear;
}

/* ============ MARQUESINA (header) ============ */

.marquesina {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--marco);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.marquesina__fila {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  gap: 18px;
}

.sello { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sello img { height: 44px; width: auto; }

.botonera { display: flex; align-items: center; gap: 4px; margin: 0 auto; }

.botonera a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 38px;
  transition: background .2s;
}
.botonera a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }
.botonera a.botonera--activa { background: var(--celeste-profundo); }

.marquesina__acciones { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.pastilla {
  background: var(--cta-verde);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 26px;
  border-radius: 38px;
  flex-shrink: 0;
  transition: background .2s;
}
.pastilla:hover { background: var(--cta-verde-oscuro); text-decoration: none; }
.pastilla--oscura { background: var(--login-bg); }
.pastilla--oscura:hover { background: #0c4a50; }

.bandera {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.bandera svg {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.hamburguesa {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburguesa span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s, opacity .25s;
}
.hamburguesa.hamburguesa--x span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburguesa.hamburguesa--x span:nth-child(2) { opacity: 0; }
.hamburguesa.hamburguesa--x span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.desplegable {
  display: none;
  background: var(--marco-panel);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.desplegable.desplegable--abierto { display: block; }
.desplegable a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}
.desplegable a:hover { background: rgba(255, 255, 255, .07); text-decoration: none; }

.desplegable__acciones {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 22px;
}
.desplegable__acciones a {
  flex: 1 1 0;
  max-width: 190px;
  padding: 13px 18px;
  border: 0;
  border-radius: 38px;
  background: var(--cta-verde);
  transition: background .2s;
}
.desplegable__acciones a:hover { background: var(--cta-verde-oscuro); }
.desplegable__acciones a.desplegable__oscuro { background: var(--login-bg); }
.desplegable__acciones a.desplegable__oscuro:hover { background: #0c4a50; }

/* ============ VIDRIERA (hero) ============ */

.vidriera {
  margin-top: 72px;
  background: linear-gradient(128deg, #02191d 0%, var(--marco) 55%, #0a636b 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--celeste);
}

.vidriera__fila {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 52px 0;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.vidriera__fondo {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--ancho));
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.vidriera__fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 20, 23, .95) 0%, rgba(4, 48, 53, .74) 40%, rgba(10, 99, 107, .1) 74%);
}

.vidriera__texto { flex: 1 1 auto; max-width: 640px; position: relative; z-index: 1; }

.vidriera h1 {
  font-family: var(--tipo-titulo);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.vidriera h1 .destello { color: var(--celeste); text-shadow: 0 0 16px rgba(117, 170, 219, .45); }

.vidriera__bajada {
  color: rgba(255, 255, 255, .93);
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 560px;
}

.vidriera__botones { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.chapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .38);
  border-left: 4px solid var(--sol);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 var(--radio) var(--radio) 0;
}
.chapa .estrella { color: var(--sol); }
.vidriera__nota { margin-bottom: 16px; }

/* ============ BOTONES ============ */

.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--tipo);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  border: 0;
  border-radius: 38px;
  padding: 14px 32px;
  cursor: pointer;
  transition: filter .25s ease, box-shadow .25s ease, background .25s ease;
  text-align: center;
}
.boton:hover { text-decoration: none; filter: brightness(.92); box-shadow: 0 6px 16px rgba(0, 0, 0, .3); }
.boton--jugar {
  background: linear-gradient(180deg, var(--celeste-profundo) 0%, var(--celeste-oscuro) 100%);
}
.boton--bono {
  background: linear-gradient(180deg, var(--sol) 0%, var(--sol-profundo) 100%);
  color: #2b2410;
}
.boton--verde { background: var(--cta-verde); }
.boton--verde:hover { background: var(--cta-verde-oscuro); }
.boton svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============ CONTENIDO / PANELES ============ */

.contenido { padding: 30px 0 26px; }
.contenido .marco > *:last-child { margin-bottom: 0; }

.panel {
  background: #fff;
  border: 1px solid var(--celeste-linea);
  border-top: 4px solid var(--celeste);
  border-radius: var(--radio);
  padding: 32px 40px 34px;
  margin-bottom: 24px;
  box-shadow: 0 3px 16px rgba(0, 16, 18, .24);
}

.panel > *:last-child { margin-bottom: 0; }

.panel h2 {
  font-family: var(--tipo-titulo);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.24;
  text-transform: uppercase;
  color: var(--tinta);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--celeste);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.panel h2::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Sol de Mayo dorado */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='%23d99a00'%3E%3Ccircle cx='14' cy='14' r='5.2'/%3E%3Cg%3E%3Cpath d='M14 0l1.6 5.5h-3.2z'/%3E%3Cpath d='M14 28l-1.6-5.5h3.2z'/%3E%3Cpath d='M0 14l5.5-1.6v3.2z'/%3E%3Cpath d='M28 14l-5.5 1.6v-3.2z'/%3E%3Cpath d='M4.1 4.1l5 2.4-2.6 2.6z'/%3E%3Cpath d='M23.9 23.9l-5-2.4 2.6-2.6z'/%3E%3Cpath d='M23.9 4.1l-2.4 5-2.6-2.6z'/%3E%3Cpath d='M4.1 23.9l2.4-5 2.6 2.6z'/%3E%3C/g%3E%3Ccircle cx='14' cy='14' r='3.1' fill='%23f6b40e'/%3E%3C/g%3E%3C/svg%3E");
}

.panel h3 {
  font-family: var(--tipo-titulo);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--tinta-suave);
  margin: 26px 0 14px;
  padding: 8px 16px;
  border-left: 4px solid var(--sol);
  background: linear-gradient(90deg, var(--celeste-palido) 0%, rgba(234, 243, 250, 0) 85%);
  border-radius: 0 8px 8px 0;
}

.panel p { margin-bottom: 14px; }

/* El primer párrafo de cada sección lleva un acento de entrada */
.panel h2 + p:not(.doc-fecha):not(.letrachica) {
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(117, 170, 219, .12) 0%, rgba(117, 170, 219, 0) 80%);
  border-left: 3px solid var(--celeste);
  border-radius: 0 8px 8px 0;
  color: var(--tinta-suave);
  font-size: 15.5px;
}

.panel ol { margin: 0 0 16px 22px; }
.panel li { margin-bottom: 8px; }

.panel ul {
  list-style: none;
  margin: 0 0 16px;
}
.panel ul li {
  position: relative;
  padding-left: 30px;
}
.panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../graficos/vineta-principal.webp");
}

/* Las listas sueltas del contenido se visten de filas-tarjeta,
   alternando el acento celeste y dorado de la bandera */
.panel > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel > ul > li {
  margin: 0;
  padding: 10px 16px 10px 46px;
  background: var(--nube);
  border: 1px solid var(--nube-linea);
  border-left: 3px solid var(--celeste);
  border-radius: 8px;
}
.panel > ul > li:nth-child(even) { border-left-color: var(--sol); }
.panel > ul > li::before {
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.letrachica {
  font-size: 13.5px;
  color: var(--tinta-palida);
  font-style: italic;
}

/* ============ LÁMINAS (figuras) ============ */

.lamina {
  margin: 20px 0 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 16, 18, .2);
  border: 1px solid var(--celeste-linea);
  border-radius: var(--radio);
}
.lamina img { width: 100%; }
.lamina figcaption {
  background: linear-gradient(120deg, var(--celeste-oscuro) 0%, var(--celeste-profundo) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-top: 3px solid var(--sol);
}

/* ============ MIGAS ============ */

.migas {
  margin-bottom: 14px;
  font-size: 13px;
}
.migas ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.migas li { color: rgba(255, 255, 255, .78); }
.migas li + li::before { content: "•"; margin-right: 6px; color: var(--sol); }
.migas a { color: #fff; }
.migas a:hover { color: var(--celeste); }

/* ============ CUADROS (tablas) ============ */

.cuadro {
  margin: 18px 0;
  border: 1px solid var(--celeste-linea);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 16, 18, .12);
  background: #fbfcfd;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  table-layout: auto;
}

thead th {
  background: linear-gradient(180deg, var(--celeste-profundo) 0%, var(--celeste-oscuro) 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .03em;
  padding: 11px 12px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 3px solid var(--sol);
}

tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--nube-linea);
  vertical-align: top;
}
tbody tr:nth-child(even) { background: var(--nube); }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody td, tbody th { transition: background-color .15s ease; }
tbody tr:hover td { background: var(--celeste-palido); }
tbody tr:hover th { background: #ddecf8; }
tbody th {
  padding: 11px 12px;
  border-bottom: 1px solid var(--nube-linea);
  text-align: left;
  background: var(--celeste-palido);
  color: var(--tinta-suave);
  font-weight: 600;
  vertical-align: top;
}

/* Tablas anchas: los encabezados pueden partirse para no apretar los datos */
table.cuadro--fino { font-size: 12.5px; }
table.cuadro--fino thead th {
  font-size: 11px;
  padding: 10px 9px;
  white-space: normal;
  hyphens: none;
}
table.cuadro--fino tbody td { padding: 10px 9px; }
table.cuadro--fino tbody td:nth-child(2) { min-width: 122px; }

/* ============ CONTRASTE (pros / contras) ============
   Pizarra oscura con eje dorado y Sol de Mayo al centro,
   en lugar de las cajas verde/roja de los satélites previos */

.contraste {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 18px 0;
  background: linear-gradient(125deg, #032a2f 0%, var(--marco) 55%, #0a5158 100%);
  border: 1px solid rgba(246, 180, 14, .35);
  border-radius: var(--radio);
  padding: 26px 8px 22px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 16, 18, .3);
}
.contraste::before {
  content: "";
  position: absolute;
  top: 18px; bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(246, 180, 14, 0) 0%, var(--sol) 18%, var(--sol) 82%, rgba(246, 180, 14, 0) 100%);
}
.contraste::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='%23f6b40e'%3E%3Ccircle cx='14' cy='14' r='5.2'/%3E%3Cg%3E%3Cpath d='M14 0l1.6 5.5h-3.2z'/%3E%3Cpath d='M14 28l-1.6-5.5h3.2z'/%3E%3Cpath d='M0 14l5.5-1.6v3.2z'/%3E%3Cpath d='M28 14l-5.5 1.6v-3.2z'/%3E%3Cpath d='M4.1 4.1l5 2.4-2.6 2.6z'/%3E%3Cpath d='M23.9 23.9l-5-2.4 2.6-2.6z'/%3E%3Cpath d='M23.9 4.1l-2.4 5-2.6-2.6z'/%3E%3Cpath d='M4.1 23.9l2.4-5 2.6 2.6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center / 26px 26px no-repeat,
    radial-gradient(circle at 50% 38%, #0a5158 0%, #032a2f 78%);
  border: 2px solid var(--sol);
  box-shadow: 0 0 18px rgba(246, 180, 14, .35);
}
.contraste--pro, .contraste--contra {
  padding: 0 26px;
  background: none;
  border: 0;
}
.contraste--pro h3, .contraste--contra h3 {
  margin: 0 auto 16px;
  font-size: 15px;
  letter-spacing: .08em;
  border-left: 0;
  padding: 7px 26px;
  text-align: center;
  display: table;
  border-radius: 30px;
}
.contraste--pro h3 {
  color: #fff;
  background: linear-gradient(180deg, var(--celeste-profundo) 0%, var(--celeste-oscuro) 100%);
}
.contraste--contra h3 {
  color: var(--sol);
  background: rgba(0, 0, 0, .3);
  box-shadow: inset 0 0 0 1px var(--sol-profundo);
}
.contraste--pro ul, .contraste--contra ul { margin: 0; }
.contraste--pro ul li, .contraste--contra ul li {
  color: #eef4f8;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.contraste--pro ul li:last-child, .contraste--contra ul li:last-child { border-bottom: 0; }
.contraste--pro ul li::before { background-image: url("../graficos/vineta-pro.webp"); top: .72em; }
.contraste--contra ul li::before { background-image: url("../graficos/vineta-contra.webp"); top: .72em; }

/* ============ ESCALONES (pasos) ============ */

.escalones { counter-reset: escalon; list-style: none; margin: 16px 0 !important; }
.escalones li {
  counter-increment: escalon;
  position: relative;
  padding: 0 0 14px 52px;
  margin: 0;
}
.escalones li::before {
  content: counter(escalon);
  position: absolute;
  left: 0; top: -2px;
  width: 34px; height: 34px;
  background: linear-gradient(180deg, var(--celeste-profundo) 0%, var(--celeste-oscuro) 100%);
  border-bottom: 3px solid var(--sol);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ PROMOCIONES (banners) ============ */

.promocion {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(120deg, #02191d 0%, var(--marco) 68%, #0a636b 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radio);
  padding: 34px 36px;
  margin-bottom: 24px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 16, 18, .3);
}
.promocion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 20, 23, .94) 0%, rgba(4, 48, 53, .76) 46%, rgba(10, 99, 107, .1) 78%);
  pointer-events: none;
}
.promocion--celeste::before {
  background: linear-gradient(100deg, rgba(9, 34, 54, .95) 0%, rgba(28, 74, 112, .78) 46%, rgba(117, 170, 219, .12) 78%);
}

.promocion__texto { flex: 1; max-width: 420px; position: relative; z-index: 1; }
.promocion__texto .promocion__cta { margin-top: 18px; }

.promocion__rotulo {
  color: var(--sol);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 4px;
}
.promocion__titulo {
  font-family: var(--tipo-titulo);
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 6px;
}
.promocion__baja { color: rgba(255, 255, 255, .88); font-size: 14px; margin-bottom: 0; }

/* ============ FRANJA DE APP ============ */

.celular {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(115deg, #02191d 0%, var(--marco) 60%, #0a636b 100%);
  border-radius: var(--radio);
  padding: 28px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 16, 18, .3);
}
.celular__foto { flex: 0 0 190px; position: relative; z-index: 1; }
.celular__foto img { border-radius: var(--radio); }
.celular__texto { flex: 1; position: relative; z-index: 1; }
.celular__titulo {
  font-family: var(--tipo-titulo);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 6px;
}
.celular__baja { color: rgba(255, 255, 255, .88); font-size: 14px; }
.celular__tiendas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tienda {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0d1b26;
  border: 1px solid var(--celeste);
  color: #fff;
  border-radius: var(--radio);
  padding: 10px 22px 10px 16px;
  transition: background .2s;
  min-width: 218px;
}
.tienda:hover { background: #16293a; text-decoration: none; }
.tienda svg { width: 30px; height: 30px; flex-shrink: 0; }
.tienda__txt { line-height: 1.2; text-align: center; }
.tienda__mini { display: block; font-size: 11px; opacity: .82; }
.tienda__grande { display: block; font-size: 17px; font-weight: 700; }

/* ============ MESONES (juegos de mesa) ============ */

.mesones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 0;
}
/* Cada juego es una mini-mesa: paño oscuro arriba con el ícono
   y la placa del nombre, cuerpo blanco con el texto abajo */
.meson {
  flex: 1 1 300px;
  max-width: calc((100% - 36px) / 3);
  position: relative;
  background: #fff;
  border: 1px solid var(--nube-linea);
  border-radius: var(--radio);
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.meson::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 152px;
  background: radial-gradient(130% 95% at 50% 0%, #0b5a62 0%, #043238 80%);
  border-bottom: 3px solid var(--sol);
}
.meson::after {
  content: "";
  position: absolute;
  top: 10px; right: 12px;
  width: 34px; height: 34px;
  opacity: .16;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='%23f6b40e'%3E%3Ccircle cx='14' cy='14' r='5.2'/%3E%3Cg%3E%3Cpath d='M14 0l1.6 5.5h-3.2z'/%3E%3Cpath d='M14 28l-1.6-5.5h3.2z'/%3E%3Cpath d='M0 14l5.5-1.6v3.2z'/%3E%3Cpath d='M28 14l-5.5 1.6v-3.2z'/%3E%3Cpath d='M4.1 4.1l5 2.4-2.6 2.6z'/%3E%3Cpath d='M23.9 23.9l-5-2.4 2.6-2.6z'/%3E%3Cpath d='M23.9 4.1l-2.4 5-2.6-2.6z'/%3E%3Cpath d='M4.1 23.9l2.4-5 2.6 2.6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.meson:hover {
  box-shadow: 0 10px 24px rgba(0, 16, 18, .18);
  border-color: var(--sol);
}
.meson__icono {
  width: 78px;
  height: 78px;
  padding: 13px;
  box-sizing: border-box;
  margin: 18px auto 10px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 50% 35%, #1c4a70 0%, var(--celeste-oscuro) 75%);
  box-shadow: 0 0 0 2px var(--sol), 0 4px 12px rgba(0, 16, 18, .35);
  transition: box-shadow .3s ease;
}
.meson:hover .meson__icono {
  box-shadow: 0 0 0 3px var(--sol), 0 6px 16px rgba(0, 16, 18, .4);
}
.mesones .meson__nombre {
  font-family: var(--tipo-titulo);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.meson__nombre::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--sol) 0%, var(--sol-profundo) 100%);
  border-radius: 2px;
}
.meson p { margin-bottom: 0; font-size: 14.5px; position: relative; z-index: 1; }

/* ============ MAQUINITAS (slots) ============ */

.maquinitas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0 6px;
}
.maquinita {
  position: relative;
  display: block;
  border-radius: var(--radio);
  overflow: hidden;
  background: #0d1b26;
  border: 1px solid var(--celeste);
  box-shadow: 0 3px 12px rgba(0, 16, 18, .2);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.maquinita:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 16, 18, .32); border-color: var(--sol); text-decoration: none; }
.maquinita__arte { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease; }
.maquinita:hover .maquinita__arte { transform: scale(1.06); }
.maquinita__brillo {
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .55s ease;
}
.maquinita:hover .maquinita__brillo { left: 115%; }
.maquinita__faja {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(9, 18, 26, 0) 0%, rgba(9, 18, 26, .86) 55%, rgba(9, 18, 26, .96) 100%);
}
.maquinita__genero {
  display: block;
  color: var(--celeste);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.maquinita__nombre {
  display: block;
  color: #fff;
  font-family: var(--tipo-titulo);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.maquinitas-cta { display: flex; justify-content: center; margin-top: 18px; }

/* ============ TESTIMONIOS (carrusel sin fin) ============ */

.testimonios { position: relative; margin-top: 22px; }

.testimonios__cinta {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 2px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.testimonios__cinta::-webkit-scrollbar { display: none; }
.testimonios__cinta.testimonios__cinta--agarre { cursor: grabbing; scroll-behavior: auto; }

.testimonio {
  flex: 0 0 calc((100% - 36px) / 3);
  background: var(--nube);
  border: 1px solid var(--nube-linea);
  border-top: 3px solid var(--celeste);
  border-radius: var(--radio);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.testimonio:hover {
  box-shadow: 0 8px 22px rgba(0, 16, 18, .16);
  border-color: var(--sol);
  border-top-color: var(--sol);
}
.testimonio::before {
  content: "\201C";
  position: absolute;
  top: 2px; right: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 84px;
  line-height: 1;
  color: var(--sol);
  opacity: .3;
  pointer-events: none;
}

.testimonio__cara { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.testimonio__foto {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sol);
  box-shadow: 0 2px 8px rgba(0, 16, 18, .2);
}
.testimonio__quien { min-width: 0; }
.testimonio__nombre {
  display: block;
  font-family: var(--tipo-titulo);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--tinta);
}
.testimonio__linea { display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.testimonio__nota {
  background: var(--celeste-profundo);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 10px;
  flex-shrink: 0;
}
.testimonio__estrellas { color: var(--sol-profundo); font-size: 13px; letter-spacing: 2px; }
.testimonio__texto { font-style: italic; color: var(--tinta); font-size: 14.5px; margin: 0; position: relative; z-index: 1; }

.testimonios__control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.testimonios__flecha {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--celeste-profundo);
  color: #fff;
  border: 2px solid var(--celeste-oscuro);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.testimonios__flecha:hover { background: var(--sol); color: #2b2410; border-color: var(--sol-profundo); }
.testimonios__flecha svg { width: 18px; height: 18px; }

.testimonios__puntos { display: flex; align-items: center; gap: 8px; }
.testimonios__punto {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--nube-linea);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.testimonios__punto:hover { background: var(--celeste); }
.testimonios__punto.testimonios__punto--activo { background: var(--celeste-profundo); width: 24px; border-radius: 6px; }

/* ============ PUNTAJE GENERAL ============ */

.puntaje {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px 12px;
  background: linear-gradient(120deg, var(--celeste-oscuro) 0%, var(--celeste-profundo) 100%);
  color: #fff;
  border-radius: var(--radio);
  border-left: 6px solid var(--sol);
  border-right: 6px solid var(--sol);
  padding: 18px 26px;
  margin-top: 18px;
}
.puntaje__valor {
  font-family: var(--tipo-titulo);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sol);
}
.puntaje__rotulo { font-size: 15px; font-weight: 700; text-transform: uppercase; }

/* ============ PLEGABLES (FAQ) ============ */

.plegable-lista { margin-top: 6px; }
.plegable { border-bottom: 1px solid var(--nube-linea); }
.plegable summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  color: var(--tinta-suave);
  padding: 15px 34px 15px 0;
  position: relative;
  list-style: none;
  font-size: 15.5px;
  transition: color .18s ease;
}
.plegable summary::-webkit-details-marker { display: none; }
.plegable summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--celeste-profundo);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s, color .2s;
}
.plegable summary:hover { color: var(--celeste-oscuro); }
.plegable summary:hover::after { background: var(--sol); color: #2b2410; }
.plegable[open] summary::after { content: "\2212"; background: var(--sol); color: #2b2410; }
.plegable[open] summary:hover::after { background: var(--sol-profundo); }
.plegable .plegable__cuerpo { padding: 0 0 16px; }
.plegable .plegable__cuerpo p { margin-bottom: 8px; }

/* ============ FIRMA (veredicto del experto) ============ */

.firma {
  background: var(--celeste-palido);
  border-left: 5px solid var(--celeste-profundo);
  border-right: 5px solid var(--sol);
  border-radius: var(--radio);
  padding: 22px 26px;
  font-style: italic;
}
.firma__nombre { font-weight: 700; font-style: normal; color: var(--celeste-oscuro); }

/* ============ ZÓCALO (footer) ============ */

.zocalo {
  background: var(--marco);
  color: rgba(255, 255, 255, .8);
  padding: 44px 0 0;
}
.zocalo__grilla {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.zocalo__acerca img { height: 40px; width: auto; margin-bottom: 14px; }
.zocalo__acerca p { font-size: 13px; line-height: 1.6; }

.zocalo__columna h4 {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 8px;
  position: relative;
}
.zocalo__columna h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #2da6b1;
  border-radius: 2px;
}
.zocalo__columna ul { list-style: none; margin-top: 12px; }
.zocalo__columna li { margin-bottom: 9px; }
.zocalo__columna a { color: rgba(255, 255, 255, .7); font-size: 14px; }
.zocalo__columna a:hover { color: #fff; }

.zocalo__aviso {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.mayoria {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 2px solid #f04c44;
  color: #f04c44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.zocalo__aviso p { font-size: 12.5px; line-height: 1.55; margin: 0; }

.zocalo__base {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}

/* ============ ASCENSOR (volver arriba) ============ */

.ascensor {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--celeste-profundo);
  color: #fff;
  border: 2px solid var(--sol);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s, color .2s;
  z-index: 90;
}
.ascensor.ascensor--visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ascensor:hover { background: var(--sol); color: #2b2410; border-color: var(--sol-profundo); }
.ascensor svg { width: 22px; height: 22px; }

/* ============ SURGIR AL SCROLLEAR ============ */

.surgir { opacity: 0; transform: translateY(18px); }
.surgir.surgir--visible {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .surgir { opacity: 1; transform: none; }
}

/* ============ 404 ============ */

.extraviado {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
}
.extraviado__codigo {
  font-family: var(--tipo-titulo);
  font-size: 130px;
  font-weight: 700;
  color: var(--celeste);
  line-height: 1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.extraviado h1 { color: #fff; font-family: var(--tipo-titulo); font-size: 32px; text-transform: uppercase; margin: 12px 0; }
.extraviado p { color: rgba(255, 255, 255, .88); margin-bottom: 26px; }

/* ============ PÁGINAS LEGALES ============ */

.doc-fecha { font-size: 13.5px; color: var(--tinta-palida); margin-bottom: 18px; }

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

@media (max-width: 1080px) {
  .marquesina__fila { gap: 10px; }
  .sello img { height: 38px; }
  .botonera { gap: 2px; }
  .botonera a { padding: 9px 11px; font-size: 12px; }
  .pastilla { padding: 10px 16px; font-size: 12px; }
  .marquesina__acciones { gap: 8px; }
  .bandera { font-size: 12px; gap: 6px; }
  .bandera svg { width: 26px; height: 17px; }
}

@media (max-width: 1024px) {
  .vidriera h1 { font-size: 36px; }
  .zocalo__grilla { grid-template-columns: 1fr 1fr; }
  .panel { padding: 28px 26px; }
  .maquinitas { grid-template-columns: repeat(3, 1fr); }
  .meson { max-width: calc((100% - 18px) / 2); }
  .testimonio { flex-basis: calc((100% - 18px) / 2); }

  .cuadro {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cuadro table { min-width: 500px; }
  .cuadro thead th,
  .cuadro tbody td,
  .cuadro tbody th { min-width: 140px; }
  .cuadro table.cuadro--fino thead th,
  .cuadro table.cuadro--fino tbody td,
  .cuadro table.cuadro--fino tbody th { min-width: 120px; }
  .cuadro tbody tr > *:first-child,
  .cuadro thead th:first-child { min-width: 160px; }
}

@media (max-width: 860px) {
  .botonera, .marquesina__acciones { display: none; }
  .bandera { margin-left: auto; }
  .hamburguesa { display: block; }
  .vidriera__fila { flex-direction: column; align-items: flex-start; padding: 34px 0; min-height: 0; }
  .vidriera__texto { width: 100%; max-width: 100%; }
  .vidriera__fondo::after {
    background: linear-gradient(180deg, rgba(2, 20, 23, .52) 0%, rgba(2, 20, 23, .52) 60%, rgba(2, 20, 23, .5) 100%);
  }
  .vidriera h1 { font-size: 30px; }
  .vidriera h1, .vidriera__bajada, .migas {
    text-shadow:
      0 0 2px rgba(0, 12, 14, .98),
      0 1px 4px rgba(0, 12, 14, .95),
      0 2px 12px rgba(0, 12, 14, .92);
  }
  .contraste { grid-template-columns: 1fr; padding: 22px 6px 20px; }
  .contraste::before, .contraste::after { display: none; }
  .contraste--contra { margin-top: 20px; padding-top: 22px; border-top: 2px solid rgba(246, 180, 14, .4); }
  .promocion, .celular { flex-direction: column; align-items: flex-start; }
  .promocion::before, .promocion--celeste::before { background: none; }
  .promocion__texto {
    max-width: 100%;
    background: rgba(2, 20, 23, .74);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radio);
    padding: 22px 20px;
  }
  .promocion--celeste .promocion__texto { background: rgba(9, 34, 54, .76); }
  .celular__foto { flex-basis: auto; max-width: 280px; }
  .celular__tiendas { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; }
  .tienda { flex: 1 1 218px; max-width: 300px; }
  .zocalo__base { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  /* En el celular las láminas crecen a la mitad más de alto: 3:1 pasa a 2:1 */
  .lamina img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center;
  }

  .vidriera__fondo { background-position: 70% center; }
  .maquinitas { grid-template-columns: repeat(2, 1fr); }
  .meson { max-width: 100%; }
  .testimonio { flex-basis: 100%; }
}

@media (max-width: 560px) {
  /* Palabras largas pueden partirse en pantallas angostas */
  .panel h2, .panel h3, .panel p, .panel li,
  .vidriera h1, .vidriera__bajada,
  .promocion__titulo, .promocion__baja, .celular__titulo, .celular__baja,
  .meson__nombre, .plegable summary, .extraviado h1, .extraviado p,
  .zocalo__acerca p, .zocalo__aviso p, .zocalo__columna a {
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .zocalo__grilla { grid-template-columns: 1fr; text-align: center; }
  .zocalo__acerca img { margin-left: auto; margin-right: auto; }
  .zocalo__aviso { flex-direction: column; text-align: center; }
  .panel { padding: 22px 16px; }
  .panel h2 { font-size: 23px; }
  .vidriera h1 { font-size: 26px; }
  .extraviado__codigo { font-size: 90px; }

  .vidriera__texto,
  .promocion__texto,
  .celular__texto { text-align: center; width: 100%; }
  .vidriera__botones,
  .promocion__cta,
  .celular__tiendas,
  .migas ol { justify-content: center; }
  .promocion__cta, .celular__tiendas { display: flex; width: 100%; }
  .vidriera__fila, .promocion, .celular { align-items: center; }
  .vidriera__nota { align-self: center; }
}

@media (max-width: 450px) {
  .marco { padding: 0 10px; }
  .marquesina__fila { height: 60px; gap: 10px; }
  .sello img { height: 34px; }
  .bandera svg { width: 26px; height: 17px; }
  .bandera { font-size: 12px; gap: 6px; }
  .vidriera { margin-top: 60px; }
  .panel { padding: 18px 12px; }
  .promocion, .celular { padding: 20px 14px; }
  .vidriera__fila { padding: 28px 0; }
  thead th, tbody td, tbody th { padding: 8px 6px; }
}

@media (max-width: 400px) {
  .desplegable__acciones { flex-direction: column; align-items: center; }
  .desplegable__acciones a { flex: 0 0 auto; width: 100%; max-width: 260px; }
}

@media (max-width: 360px) {
  .marquesina__fila { height: 54px; gap: 8px; }
  .sello img { height: 28px; }
  .bandera svg { width: 22px; height: 15px; }
  .bandera { font-size: 11px; gap: 5px; }
  .hamburguesa { padding: 6px; }
  .hamburguesa span { width: 22px; height: 2.5px; margin: 4px 0; }
  .hamburguesa.hamburguesa--x span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburguesa.hamburguesa--x span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .vidriera { margin-top: 54px; }
  .extraviado { min-height: calc(100vh - 54px); }
}

/* ============ 22BET EN OTROS PAÍSES ============ */
.zocalo__paises {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 24px;
}
.zocalo__paises-titulo {
  display: inline-block;
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.zocalo__paises-titulo::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #2da6b1;
  border-radius: 2px;
}
.zocalo__paises-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zocalo__pais {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.zocalo__pais:hover {
  background: rgba(45, 166, 177, .16);
  border-color: #2da6b1;
  color: #fff;
  text-decoration: none;
}
.zocalo__pais.zocalo__pais--actual {
  background: rgba(246, 180, 14, .1);
  border-color: var(--sol);
  color: #fff;
}
.zocalo__bandera {
  flex-shrink: 0;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.zocalo__bandera svg { display: block; width: 100%; height: 100%; }
@media (max-width: 560px) {
  .zocalo__paises { text-align: center; }
  /* two even columns; every name stays on one line */
  .zocalo__paises-lista { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .zocalo__paises-lista li { min-width: 0; }
  .zocalo__pais { display: flex; width: 100%; min-width: 0; padding: 7px 10px 7px 7px; font-size: 12.5px; text-align: left; white-space: nowrap; }
  .zocalo__pais-nombre { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 380px) {
  .zocalo__paises-lista { gap: 6px; }
  .zocalo__pais { gap: 6px; padding: 6px 8px 6px 6px; font-size: 11.5px; }
  .zocalo__bandera { width: 18px; height: 12px; }
}
@media (max-width: 339px) {
  .zocalo__pais { gap: 5px; padding: 6px 6px 6px 5px; font-size: 11px; letter-spacing: -.01em; }
  .zocalo__bandera { width: 16px; height: 11px; }
}
/* up to 330px: one pill per row, back to the regular size */
@media (max-width: 330px) {
  .zocalo__paises-lista { grid-template-columns: minmax(0, 1fr); }
  .zocalo__pais { gap: 9px; padding: 7px 12px 7px 8px; font-size: 12.5px; letter-spacing: normal; }
  .zocalo__bandera { width: 22px; height: 15px; }
}
