@font-face {
  font-family: 'FWC2026Text';
  src: url('assets/fonts/FWC2026-NormalRegular.77c3c249.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'FWC2026Title';
  src: url('assets/fonts/FWC2026-UltraCondensedBold.0e7149b5.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'FIFA26';
  src: url('assets/fonts/fifa-26.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
:root {
  --bg: #07151f;
  --bg-deep: #031019;
  --surface: rgba(8, 28, 40, 0.78);
  --surface-strong: #0b2534;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3f8fb;
  --muted: #a7c1d0;
  --gold: #ffc247;
  --gold-strong: #ffb000;
  --green: #27d17f;
  --green-soft: #0d5d42;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'FWC2026Text', sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(3, 16, 25, 0.72), rgba(3, 16, 25, 0.84)),
    url("assets/fodo_resto.png"),
    radial-gradient(circle at top left, rgba(39, 209, 127, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.1), transparent 20%),
    linear-gradient(180deg, #0b2232 0%, #06131d 52%, #031019 100%);
  background-position: center, center top, top left, top right, center;
  background-size: cover, cover, auto, auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, scroll, scroll, scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 90%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  border: 0;
  cursor: pointer;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 56px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 0 0 24px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(3, 16, 25, 0.42), rgba(3, 16, 25, 0.56)),
    url("assets/prode_fondo_v8.png"),
    radial-gradient(circle at top left, rgba(39, 209, 127, 0.25), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.18), transparent 24%),
    linear-gradient(180deg, #0b2232 0%, #06131d 52%, #031019 100%);
  background-position: center, center top, top left, top right, center;
  background-size: cover, 100% auto, auto, auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
}

.topbar,
.hero-content,
.trust-strip,
.trust-strip-premios,
.cta-panel,
.positions-layout,
.countdown-panel {
  backdrop-filter: blur(16px);
}

.hero-content {
  backdrop-filter: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;

  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

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

.brand h2,
.section-heading h2,
.prize-card h3,
.mini-card h3,
.step-card h3 {
margin-bottom: 12px;
}

.brand-badge,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #fff0b9 100%);
  color: #0c1921;
  font-family: 'FWC2026Title', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 200px;
  object-fit: contain;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transform: translateX(250px);
}

.topbar-links a {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.topbar-links a:hover {
  background: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
}

.topbar-links span {
  color: rgba(255, 255, 255, 0.45);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content {
  margin-top: 0;
  display: grid;
  width: min(calc(100% + 260px), calc(100vw - 8px));
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(260px, 360px) minmax(220px, 1fr) minmax(260px, 360px);
  gap: 36px;
  align-items: start;
  min-height: calc(100vh - 180px);
  padding: 48px 4px 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-top-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(220px, 1fr) minmax(260px, 360px);
  gap: 36px;
  align-items: start;
  margin-top: -24px;
}

.hero-copy {
  grid-column: 1;
  justify-self: start;
  align-self: start;
  max-width: 460px;
  margin-left: -64px;
  text-align: left;
}

.hero-copy .eyebrow {
  color: var(--text);
}

.hero-copy h1 {
  margin: 0;
  max-width: 15ch;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2.3rem, 5.4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.hero-text,
.cta-panel p,
.info-card p,
.prize-card p,
.mini-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 34ch;
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(8, 28, 40, 0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-copy-actions {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  justify-content: flex-end;
  padding-right: 20vw;
}

.hero-copy-actions .button-primary {
  min-height: 64px;
  min-width: 320px;
  padding: 0 42px;
  font-size: 1.02rem;
  box-shadow: 0 18px 38px rgba(255, 176, 0, 0.28);
}

.hero-bottom-row {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  width: 100vw;
  margin: 28px 0 0;
  grid-template-columns: minmax(420px, 560px);
  align-items: center;
  justify-content: center;
}

.hero-actions .hero-button-desktop {
  display: inline-flex;
}

.hero-actions .hero-button-mobile {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.cta-actions .button-primary:hover {
  color: #fff;
}

.cta-actions .button-ghost.dark:hover {
  color: var(--gold);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #0f1820;
  box-shadow: 0 12px 30px rgba(255, 176, 0, 0.25);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-ghost.dark {
  background: rgba(7, 21, 31, 0.16);
  border-color: rgba(7, 21, 31, 0.2);
  color: #08202e;
}

.hero-stats {
  grid-column: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: start;
}

.hero-stats li,
.hero-card,
.info-card,
.prize-card,
.mini-card,
.step-card,
.table-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-md);
}

.hero-stats li {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
}

.hero-stats span,
.fixture-head span,
.fixture-match small,
.fixture-odds span {
  color: var(--muted);
}

.hero-mini-countdown {
  grid-column: 1;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 28, 40, 0.58);
}

.hero-mini-countdown-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
}

.hero-mini-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-mini-countdown-card {
  padding: 18px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-mini-countdown-card strong {
  display: block;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  line-height: 1;
  color: var(--gold);
}

.hero-mini-countdown-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel {
  grid-column: 3;
  display: grid;
  gap: 18px;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  align-content: start;
  transform: translateX(-160px);

}

.hero-card {
  padding: 24px;
}

.spotlight {
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.24), transparent 30%),
    rgba(8, 28, 40, 0.82);
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card h3,
.cta-panel h2 {
  margin: 16px 0 10px;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-card.spotlight h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.fixture-head,
.fixture-odds,
.fixture-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fixture-match {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fixture-match div:last-child {
  text-align: right;
}

.fixture-match strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.live-dot {
  color: var(--green);
}

.section {
  padding: 42px 0 0;
}

.trust-strip,
.trust-strip-premios {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.trust-strip-premios {
  margin-bottom: 18px;
}

.trust-strip p,
.trust-strip-premios p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.trust-strip div,
.trust-strip-premios div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip span,
.trust-strip-premios span {
  color: var(--muted);
}

.partners-section {
  padding-top: 24px;
}

.partners-heading {
  max-width: 680px;
  margin-bottom: 18px;
}

.partners-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 320px);
  gap: 24px;
  align-items: end;
}

.partners-heading h2 {
  margin: 0;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.partners-sidecard {
  display: grid;
  gap: 12px;

  justify-self: center;   /* centra horizontalmente */
  align-self: start;      /* lo pega arriba dentro del grid */

  margin-top: 65px;      /* lo sube */

  width: 100%;
  max-width: 320px;

  padding: 18px 20px;
  border: 1px solid rgba(255, 194, 71, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 194, 71, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}ox-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.partners-sidecard span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.partners-sidecard span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  box-shadow: 0 0 0 4px rgba(255, 194, 71, 0.1);
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(3, 16, 25, 0.96), rgba(3, 16, 25, 0) 10%),
    linear-gradient(270deg, rgba(3, 16, 25, 0.96), rgba(3, 16, 25, 0) 10%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partners-scroll 26s linear infinite;
}

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

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 260px;
  min-height: 138px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 194, 71, 0.12), transparent 58%),
    rgba(8, 28, 40, 0.88);
}

.partner-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 94px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.05);
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: end;
}

.section-heading h2 {
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading.compact h2 {
  max-width: 10ch;
}

.positions-section .section-heading.compact h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.showcase .section-heading.compact h2 {
  max-width: 22ch;
  line-height: 1.02;
}

.heading-sidecard {
justify-self: center;
text-align: center;
  width: 100%;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 194, 71, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 194, 71, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.heading-sidecard-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heading-sidecard-medals {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1;
}

.heading-sidecard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.heading-sidecard-steps {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 12px;
}

.heading-sidecard-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.cards-grid,
.prizes-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.prize-card,
.step-card,
.mini-card {
  padding: 24px;
}

.card-number {
  color: var(--gold);
  font-family: 'FWC2026Title', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.prizes-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.gameplay-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.gameplay-head .section-heading {
  margin-bottom: 0;
}

.gameplay-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.gameplay-video video {
  display: block;
  width: 100%;
  height: auto;
}

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

.gameplay-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.gameplay-card img {
  display: block;
  width: 100%;
  height: 800px;
}

.prize-card.featured {
  background:
    linear-gradient(135deg, rgba(255, 194, 71, 0.18), transparent),
    rgba(255, 255, 255, 0.06);
}

.prize-product-title {
  margin: 12px 0 0;
  text-align: center;
  font-family: 'FWC2026Title', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--text);
}

.prize-card .pill {
  display: table;
  margin: 0 auto;
}

.prize-card img {
  display: block;
  width: min(100%, 260px);
  height: 240px;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.prize-value {
  margin: 12px 0;
  font-family: 'FWC2026Title', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.positions-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.table-card {
  overflow: hidden;
}

.table-card img {
  display: block;
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: rgba(255, 255, 255, 0.05);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
}

tbody tr + tr td {
  border-top: 1px solid var(--line);
}

tbody tr.is-top {
  background: rgba(255, 194, 71, 0.08);
}

td strong {
  display: block;
}

tbody td span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-panels {
  display: grid;
  gap: 18px;
}

.mini-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.mini-card.accent {
  background:
    linear-gradient(180deg, rgba(39, 209, 127, 0.16), rgba(39, 209, 127, 0.05)),
    rgba(255, 255, 255, 0.06);
}

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

.step-card span {
  margin-bottom: 18px;
}

.cta-section {
  padding-top: 52px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #08202e;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #ffc247 0%, #ffd984 55%, #fff1be 100%);
  box-shadow: var(--shadow);
}

.cta-copy .eyebrow {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(8, 32, 46, 0.2);
  box-shadow: 0 8px 20px rgba(8, 32, 46, 0.12);
}

.cta-copy .cta-copy-text {
  display: inline-block;
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;

  background: #0b2a3c; /* azul oscuro coherente con el fondo */
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.cta-media {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(8, 32, 46, 0.18);
}

.cta-media img {
  display: block;
  width: 100%;
  height: auto;
}

.countdown-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.countdown-copy h2 {
  margin: 0;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.form-embed {
  grid-column: 1 / -1;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.form-shell {
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 194, 71, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.form-shell-head h3 {
  margin: 16px 0 10px;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.form-shell-head p,
.form-note,
.form-feedback {
  color: var(--muted);
  line-height: 1.6;
}

.prode-form {
  max-width: 860px;
  margin: 22px auto 0;
}

.form-shell .pill,
.form-actions {
  justify-content: center;
}

.field,
.birthdate-grid label,
.terms-check {
  align-items: stretch;
}

.field input,
.birthdate-grid input,
.birthdate-grid select {
  text-align: left;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.field span,
.birthdate-field legend,
.birthdate-grid span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.field input,
.birthdate-grid input,
.birthdate-grid select {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 21, 31, 0.74);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder,
.birthdate-grid input::placeholder {
  color: rgba(167, 193, 208, 0.78);
}

.field input:focus,
.birthdate-grid input:focus,
.birthdate-grid select:focus {
  border-color: rgba(255, 194, 71, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 194, 71, 0.12);
  background: rgba(7, 21, 31, 0.9);
}

.birthdate-field {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.birthdate-field legend {
  margin-bottom: 10px;
  padding: 0;
}

.birthdate-grid {
  display: grid;
  grid-template-columns: 90px 160px 120px;
  gap: 12px;
}

.birthdate-grid label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.birthdate-grid select {
  appearance: none;
}

.field-wide {
  grid-column: 1 / -1;
}

.terms-check {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.terms-check span {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.form-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  filter: grayscale(0.1);
}

.form-actions .button[disabled]:hover {
  transform: none;
}

.form-note {
  margin: 0;
}

.form-feedback {
  min-height: 26px;
  margin: 18px 0 0;
  font-weight: 600;
}

.form-feedback.is-success {
  color: var(--green);
}

.form-feedback.is-error {
  color: #ff9b8f;
}

.hidden-submit-frame {
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
}

.countdown-card {
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.countdown-card strong {
  display: block;
  font-family: 'FWC2026Title', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  color: var(--gold);
}

.countdown-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(4, 18, 28, 0.72);
  box-shadow: var(--shadow);
}

.footer-brand,
.footer-contact,
.footer-social {
  min-width: 0;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-contact p,
.footer-social a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-contact h3,
.footer-social h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.footer-contact,
.footer-social {
  display: grid;
  grid-auto-rows: minmax(28px, auto);
  gap: 10px;
  align-content: start;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 28px;
  margin: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  width: 100%;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 18px;
}

.footer-social a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 18px;
  margin-top: 4px;
}

.footer-social a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(167, 193, 208, 0.8);
  font-size: 0.9rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 42px rgba(18, 140, 126, 0.42);
  filter: brightness(1.04);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 28px;
}

@media (max-width: 1080px) {
  .hero-content,
  .cards-grid,
  .prizes-grid,
  .gameplay-head,
  .gameplay-grid,
  .positions-layout,
  .cta-panel,
  .countdown-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-intro,
  .hero-content {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 36px;
  }

  .hero-top-row,
  .hero-bottom-row {
    grid-template-columns: 1fr;
  }

  .hero-top-row {
    gap: 24px;
    margin-top: 0;
  }

  .hero-copy,
  .hero-panel,
  .hero-mini-countdown,
  .hero-stats {
    grid-column: auto;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .hero-copy {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-copy-actions {
    width: auto;
    margin-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .hero-panel {
    display: flex;
    justify-content: center;
    justify-self: center;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .hero-panel .hero-card.spotlight {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bottom-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .section-heading.compact h2,
  .hero-copy h1 {
    max-width: none;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .heading-sidecard {
    justify-self: start;
    max-width: 360px;
  }

  .partners-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .partners-sidecard {
    justify-self: start;
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar,
  .hero-content,
  .trust-strip,
  .trust-strip-premios,
  .cta-panel,
  .site-footer,
  .partners-carousel {
    padding: 18px;
  }

  .topbar,
  .trust-strip,
  .trust-strip-premios {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-bottom: 12px;
  }

  .partners-track {
    gap: 14px;
    animation-duration: 20s;
  }

  .partner-logo-card {
    flex-basis: 210px;
    min-height: 112px;
    padding: 16px 20px;
  }

  .partner-logo-card img {
    max-height: 72px;
  }

  .topbar {
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .brand-logo img {
    height: 88px;
  }

  .topbar-links {
    display: none;
  }

  .hero-content {
    padding: 22px 16px 24px;
  }

  .hero-top-row {
    gap: 18px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    max-width: none;
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .hero-stats,
  .steps-grid,
  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-bottom-row .hero-actions {
    order: 2;
    width: 100%;
    flex: 0 0 auto;
    margin-top: 0;
    align-self: center;
    justify-content: center;
  }

  .hero-actions .hero-button-desktop {
    display: none;
  }

  .hero-actions .hero-button-mobile {
    display: inline-flex;
  }

  .hero-copy-actions .button-primary {
    width: fit-content;
    min-width: 0;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-copy-actions {
    width: auto;
    margin-left: 0;
    padding-right: 0;
    justify-content: center;
    margin-top: 20px;
  }

  .hero-bottom-row .button-primary {
    width: fit-content;
    min-width: 0;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-mini-countdown {
    order: 3;
  }

  .hero-panel .hero-card {
    padding: 18px;
  }

  .hero-panel {
    display: flex;
    justify-content: center;
    align-items: stretch;
    justify-items: center;
    margin: 0 auto;
    transform: none;
  }

  .hero-panel .hero-card.spotlight {
    width: min(100%, 420px);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-items: center;
  }

  .hero-panel .hero-card.spotlight .pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-panel .hero-card p[style] {
    margin-bottom: 14px !important;
  }

  .hero-panel .hero-card div[style*="display: grid; gap: 12px;"] {
    gap: 10px !important;
  }

  .hero-panel .hero-card div[style*="padding: 14px 16px"] {
    padding: 12px !important;
  }

  .hero-panel .hero-card div[style*="font-size: 2.4rem"] {
    gap: 10px !important;
    font-size: 2rem !important;
    flex-wrap: wrap;
  }

  .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 28, 40, 0.78);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    display: grid;
    gap: 8px;
    min-width: 190px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(8, 28, 40, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: left;
  }

  .mobile-menu-panel a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .form-shell {
    padding: 20px;
  }


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

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

  th,
  td {
    padding: 14px 12px;
    font-size: 0.92rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-panel h2 {
    word-break: break-word;
  }

  .site-footer {
    gap: 18px;
    margin-top: 36px;
    text-align: center;
  }

  .footer-brand img {
    height: 56px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact,
  .footer-social {
    gap: 12px;
    justify-items: center;
  }

  .footer-contact p,
  .footer-social a {
    min-height: 0;
    font-size: 0.95rem;
    justify-content: center;
  }

  .footer-legal {
    padding-top: 14px;
    font-size: 0.82rem;
    text-align: center;
  }

  .gameplay-card {
    width: 92%;
    margin: 0 auto;
  }

  .gameplay-card img {
    height: 320px;
    object-fit: cover;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 54px;
    padding: 0 16px;
  }

  .whatsapp-float span {
    display: none;
  }
}
.positions-section .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  overflow: visible;
  font-size: clamp(2rem, 5vw, 4.5rem);
}
.topbar-links {
  margin-right: 90px;
}
*[style*="FWC2026Title"],
.FWC2026Title,
.hero-copy h1,
.hero-card h3,
.section-heading h2,
.partners-heading h2,
.countdown-copy h2,
.prize-product-title,
.prize-value,
.card-number {
  text-transform: uppercase;
}
.steps-section .heading-sidecard {
  position: relative;
  transform: translateX(-410px);
}
.cta-actions {
  flex-direction: column;
  align-items: center;   /* centra horizontalmente */
  justify-content: center;

}
.cta-section .eyebrow {
  background: #0b2a3c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.prizes-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 0 14px;
}

.prizes-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: prizes-scroll 36s linear infinite;
}

.prizes-track .prize-card {
  flex: 0 0 340px;
}

.prize-product-name {
  margin: 10px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  margin: 10px 0 0;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

@keyframes prizes-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}
.prizes-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 0 14px;
  margin: 0 0 18px;
}
.prize-product-title {
  color: var(--gold);
}
.prize-product-title {
  display: block;
  width: fit-content;
  margin: 12px auto 0;

  padding: 4px 12px;
  border-radius: 999px;

  font-size: 1.2rem; /* antes era más grande */
  line-height: 1;

  background: rgba(255, 194, 71, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.prize-card .pill {
  background: none;
  border: none;
  color: #ffffff;
}
.prize-card a {
  display: block;
}

.prize-card a img {
  display: block;
  width: min(100%, 260px);
  height: 240px;
  margin: 14px auto 0;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prize-card a:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.prizes-carousel:hover .prizes-track {
  animation-play-state: running; /* evita que se pause */
}

.prize-card a {
  display: block;
  pointer-events: auto;
}

.prizes-track {
  pointer-events: none; /* el track no bloquea */
}

.prize-card {
  pointer-events: auto; /* pero las cards sí */
}
.brand {
  transform: translateX(-50px);
}
.partners-sidecard span {
  text-transform: uppercase;
}
.partners-sidecard span {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.partners-sidecard span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  box-shadow: 0 0 0 4px rgba(255, 194, 71, 0.1);
  flex: 0 0 10px;
}
.partners-section .partners-sidecard {
  justify-self: end;
  position: relative;
  left: 155px;
}
.heading-sidecard-medals {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;
  gap: 12px;

  width: 100%;
  text-align: center;
}
.info-card h3 {
  text-transform: uppercase;
}
.showcase .section-heading {
  margin-bottom: 10px;
}

.showcase .prizes-carousel {
  margin-top: 0;
}
.form-shell-head h3,
.form-shell-head .pill {
  text-transform: uppercase;
}
.cta-actions .button {
  text-transform: uppercase;
}
.info-card h3,
.step-card h3 {
  text-transform: uppercase;
}
.cta-panel h2 {
  text-transform: uppercase;
}
.pill {
  text-transform: uppercase;
}

/* Reducir espacio entre etiqueta superior y título de sección */
.section-heading > .eyebrow,
.section-heading > div > .eyebrow {
  margin: 0 0 20px !important;
}

.section-heading > h2,
.section-heading > div > h2 {
  margin-top: 0 !important;
}
.pill {
  text-transform: uppercase;
}

/* Reducir espacio entre etiqueta superior y título de sección */
.section-heading > .eyebrow,
.section-heading > div > .eyebrow {
  margin: 0 0 2px !important;
}

.section-heading > h2,
.section-heading > div > h2 {
  margin-top: 0 !important;
}
/* 26 estilo Mundial - decorativo, sin modificar estructura */
.gameplay-section .section-heading.compact h2 {
  position: relative;
  display: block;
  max-width: 10ch;
  padding-right: 86px;
}

/* Estilo común para el 2 y el 6 */
.gameplay-section .section-heading.compact h2::before,
.gameplay-section .section-heading.compact h2::after {
  position: absolute;
  right: 0;

  font-family: 'FIFA26', sans-serif;
  font-size: clamp(4rem, 6vw, 5.8rem);
  line-height: 0.85;

  color: #ffffff;
  -webkit-text-fill-color: #ffffff;

  background: none;
  -webkit-background-clip: initial;
  background-clip: border-box;

  pointer-events: none;
  z-index: 2;
}

/* Número 2 arriba */
.gameplay-section .section-heading.compact h2::before {
  content: "2";
  top: 0.05em;
}

/* Número 6 abajo */
.gameplay-section .section-heading.compact h2::after {
  content: "6";
  top: 1.05em;
}

/* Mantiene el ancho original en tablet */
@media (max-width: 1080px) {
  .gameplay-section .section-heading.compact h2 {
    max-width: 10ch;
  }
@media (max-width: 760px) {
  .gameplay-section .section-heading.compact h2 {
    max-width: none;
    padding-right: 62px;
  }

  .gameplay-section .section-heading.compact h2::before,
  .gameplay-section .section-heading.compact h2::after {
    right: 0;
    font-size: 2.6rem;
  }

  .gameplay-section .section-heading.compact h2::before {
    top: 0.05em;
  }

  .gameplay-section .section-heading.compact h2::after {
    top: 1.05em;
  }
}