/* ============================================================
   Solo Deportes · Quiz Mundial 2026
   Paleta inspirada na loja da imagem:
   Azul principal #0076BD, azul escuro #005F9E, verde carrinho #24A633,
   cinza topo #D7D7D7, branco #FFFFFF, preto suave #1D1D1D.
   ============================================================ */

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

:root {
  --solo-blue: #0076BD;
  --solo-blue-dark: #005F9E;
  --solo-blue-deep: #004E83;
  --solo-blue-soft: #E7F5FF;
  --solo-sky: #4CB3F2;
  --solo-green: #24A633;
  --solo-green-dark: #168425;
  --solo-gray-top: #D7D7D7;
  --solo-gray-soft: #F2F2F2;
  --solo-gray-line: #E3E6EA;
  --solo-text: #1F2933;
  --solo-muted: #72777D;
  --solo-dark: #1D1D1D;
  --solo-white: #FFFFFF;
  --solo-gold: #F4C542;
  --solo-gold-dark: #C99618;
  --arg-blue: #74C7F5;
  --arg-white: #FFFFFF;
  --arg-navy: #073B63;
  --shadow-soft: 0 18px 48px rgba(0, 70, 120, 0.12);
  --shadow-strong: 0 26px 80px rgba(0, 46, 82, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;
  --font-display: 'Oswald', 'Inter', Arial, Helvetica, sans-serif;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--solo-text);
  background: #ffffff;
  position: relative;
}

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

button,
input {
  font-family: inherit;
}

button {
  border: 0;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -8;
  background:
    radial-gradient(circle at 16% 10%, rgba(116, 199, 245, 0.28), transparent 29%),
    radial-gradient(circle at 86% 18%, rgba(36, 166, 51, 0.13), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(0, 118, 189, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fc 47%, #eaf4fa 100%);
}

.stadium-light {
  position: fixed;
  z-index: -7;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(23px);
  opacity: 0.58;
}

.stadium-light-one {
  left: -260px;
  top: 220px;
  background: radial-gradient(circle, rgba(0, 118, 189, 0.24), transparent 68%);
  animation: floatOne 10s ease-in-out infinite;
}

.stadium-light-two {
  right: -300px;
  top: 140px;
  background: radial-gradient(circle, rgba(116, 199, 245, 0.35), transparent 66%);
  animation: floatTwo 12s ease-in-out infinite;
}

.pitch-lines {
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(0, 118, 189, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 118, 189, 0.34) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  opacity: 0.05;
  background:
    repeating-radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.35) 0 1px, transparent 1px 7px);
}

.top-strip {
  width: 100%;
  min-height: 44px;
  background: linear-gradient(105deg, transparent 0 37%, var(--solo-blue) 37% 62%, transparent 62% 100%);
  background-color: var(--solo-gray-top);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--solo-white);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.strip-inner strong {
  font-weight: 900;
  letter-spacing: 0.03em;
}

.truck-icon {
  font-size: 29px !important;
}

.site-header {
  width: 100%;
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}

.utility-row {
  width: min(100%, 1240px);
  margin: 0 auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  color: #7c858b;
  font-size: 13px;
  font-weight: 600;
}

.mini-brand-grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-logo {
  width: 48px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: lowercase;
  color: #fff;
}

.mini-logo.dark {
  background: #3c3c3c;
}

.mini-logo.green {
  background: #64B82F;
}

.mini-logo.light {
  background: #f4f0dc;
  color: #b4aa7b;
  text-transform: uppercase;
  font-size: 16px;
}

.utility-contact,
.utility-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.utility-contact .material-symbols-outlined,
.utility-phone .material-symbols-outlined {
  font-size: 18px;
}

.utility-spacer {
  flex: 1;
}

.main-row {
  width: min(100%, 1240px);
  margin: 0 auto;
  min-height: 90px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 18px 18px;
}

.logo-block {
  width: 126px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 118, 189, 0.18);
  transition: transform 0.22s ease;
}

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

.logo-solo {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D80062;
  color: white;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.logo-deportes {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--solo-blue);
  color: white;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.search-box {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #F4F4F4;
  color: #9AA1A7;
  font-size: 13px;
  font-weight: 500;
}

.search-box .material-symbols-outlined {
  color: #4a4f54;
  font-size: 28px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions button {
  min-height: 48px;
  padding: 0 15px;
  background: #F7F7F7;
  color: #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.header-actions .material-symbols-outlined {
  font-size: 25px;
}

.cart-btn {
  background: var(--solo-green) !important;
  color: white !important;
  min-width: 152px;
}

.cart-btn b {
  margin-left: 8px;
  font-size: 14px;
}

.category-nav {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 0 18px;
  background: var(--solo-blue);
  color: var(--solo-white);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0.98;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.category-nav a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.quiz-page {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 42px;
}

.hero-section {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 34px 18px 0;
}

.hero-card {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
  border-radius: 0 0 34px 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 88, 143, 0.82), rgba(0, 118, 189, 0.72)),
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(135deg, var(--solo-blue-dark), var(--solo-blue));
  box-shadow: var(--shadow-strong);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 46%, rgba(255, 255, 255, 0.16) 46% 47%, transparent 47% 100%),
    radial-gradient(circle at 50% 115%, rgba(36, 166, 51, 0.35), transparent 35%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -150px;
  top: -120px;
  border: 32px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  padding: 58px 28px 56px 58px;
  position: relative;
  z-index: 2;
  color: white;
}

.campaign-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.flag-dot {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  font-size: 16px;
}

.hero-copy h1 {
  max-width: 660px;
  font-family: var(--font-display);
  color: var(--solo-white);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 42, 77, 0.25);
}

.hero-text,
.hero-subtext {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 600;
}

.hero-text {
  margin-top: 22px;
}

.hero-subtext {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-text strong {
  color: #ffffff;
  font-weight: 950;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.primary-hero-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--solo-green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.23), transparent);
  transform: translateX(-110%);
  animation: buttonShine 2.8s ease-in-out infinite;
}

.primary-hero-btn:hover {
  transform: translateY(-2px);
  background: var(--solo-green-dark);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.benefit-pill {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 15px 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.benefit-pill strong {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--solo-white);
  color: var(--solo-blue);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
}

.benefit-pill span {
  max-width: 100px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 44px 48px 44px 14px;
}

.cup-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 57%),
    radial-gradient(circle, rgba(244, 197, 66, 0.24), transparent 64%);
  filter: blur(8px);
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.cup-card {
  width: min(100%, 370px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 80px rgba(0, 47, 88, 0.28);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
}

.cup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(116, 199, 245, 0.22) 0 33%, rgba(255,255,255,0.2) 33% 66%, rgba(116, 199, 245, 0.22) 66% 100%);
  opacity: 0.46;
}

.star-line {
  color: var(--solo-gold);
  font-size: 31px;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 10px rgba(201, 150, 24, 0.26);
}

.shirt-shape {
  width: 220px;
  height: 220px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--arg-blue) 0 28%, #ffffff 28% 44%, var(--arg-blue) 44% 62%, #ffffff 62% 76%, var(--arg-blue) 76% 100%);
  clip-path: polygon(20% 12%, 36% 0, 64% 0, 80% 12%, 98% 34%, 80% 49%, 80% 100%, 20% 100%, 20% 49%, 2% 34%);
  box-shadow: inset 0 -18px 28px rgba(0, 118, 189, 0.18), 0 22px 42px rgba(0, 72, 132, 0.19);
  display: grid;
  place-items: center;
}

.shirt-shape::before {
  content: "";
  width: 62px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 -4px 0 rgba(0, 118, 189, 0.10);
}

.shirt-shape span {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 700;
  color: var(--arg-navy);
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.42);
}

.kit-label {
  position: relative;
  z-index: 1;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--solo-blue);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.kit-price-row {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--solo-green);
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 26px rgba(36, 166, 51, 0.22);
}

.kit-price-row span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kit-price-row strong {
  font-family: var(--font-display);
  font-size: 33px;
  line-height: 1;
}

.trust-row {
  width: min(94%, 980px);
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 4;
}

.trust-row div {
  min-height: 78px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 118, 189, 0.13);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-row strong {
  display: block;
  color: var(--solo-blue-deep);
  font-size: 14px;
  font-weight: 950;
}

.trust-row span {
  display: block;
  margin-top: 4px;
  color: var(--solo-muted);
  font-size: 12px;
  font-weight: 650;
}

.quiz-shell {
  width: min(92%, 760px);
  margin: 34px auto 0;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 118, 189, 0.14);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  position: relative;
}

.quiz-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 9% 4%, rgba(0, 118, 189, 0.16), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(36, 166, 51, 0.10), transparent 29%);
  pointer-events: none;
}

.quiz-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 4px 18px;
}

.quiz-eyebrow {
  display: inline-flex;
  color: var(--solo-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quiz-header h2 {
  margin-top: 5px;
  color: var(--solo-dark);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.quiz-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--solo-blue-soft);
  color: var(--solo-blue-deep);
  border: 1px solid rgba(0, 118, 189, 0.14);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.quiz-badge .material-symbols-outlined {
  color: var(--solo-green);
  font-size: 21px;
}

.progress-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 4px 19px;
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.progress-top p {
  color: var(--solo-dark);
  font-size: 14px;
  font-weight: 950;
}

.progress-top span {
  color: var(--solo-blue);
  font-size: 13px;
  font-weight: 950;
}

.progress-bar {
  width: 100%;
  height: 15px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 118, 189, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 2px 5px rgba(0, 46, 82, 0.10);
}

.progress-fill {
  width: 11%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--solo-blue-dark), var(--solo-blue), var(--solo-green));
  position: relative;
  overflow: hidden;
  transition: width 0.35s ease;
  box-shadow: 0 7px 20px rgba(0, 118, 189, 0.25);
}

.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: translateX(-120%);
  animation: progressShine 2.2s ease-in-out infinite;
}

.question-card,
.pergunta {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 30px 24px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 118, 189, 0.12);
  box-shadow: 0 16px 44px rgba(0, 72, 132, 0.12);
  overflow: hidden;
  animation: fadeInUp 0.42s ease both;
}

.question-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(116, 199, 245, 0.17), transparent 34%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.66) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: cardShine 5.4s ease-in-out infinite;
  pointer-events: none;
}

.question-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--solo-blue-dark), var(--solo-blue), var(--solo-green));
}

.question-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--solo-blue);
  color: white;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 118, 189, 0.28);
  position: relative;
  z-index: 2;
}

.question-number::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 118, 189, 0.18);
}

.question-title,
.pergunta_title {
  max-width: 640px;
  margin: 0 auto 22px;
  text-align: center;
  color: var(--solo-dark);
  font-size: clamp(23px, 4.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 950;
  position: relative;
  z-index: 2;
}

.radio-container {
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  z-index: 2;
}

.radio-container label {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  background: #F7FAFC;
  border: 2px solid rgba(0, 118, 189, 0.10);
  color: var(--solo-text);
  font-size: 15.5px;
  font-weight: 760;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.radio-container label:hover {
  transform: translateY(-2px);
  background: var(--solo-blue-soft);
  border-color: rgba(0, 118, 189, 0.38);
  box-shadow: 0 14px 32px rgba(0, 118, 189, 0.12);
}

.radio-container label.selected {
  background: linear-gradient(135deg, #ffffff, #e8f6ff);
  border-color: var(--solo-blue);
  color: var(--solo-blue-deep);
  box-shadow: 0 18px 38px rgba(0, 118, 189, 0.16);
}

.radio-container input[type="radio"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  cursor: pointer;
  accent-color: var(--solo-blue);
}

.question-button,
.pergunta-botao {
  width: 100%;
  min-height: 62px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--solo-blue-dark), var(--solo-blue));
  color: var(--solo-white);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 118, 189, 0.24);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.question-button::before,
.pergunta-botao::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: buttonShine 2.8s infinite;
}

.question-button:hover,
.pergunta-botao:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(0, 118, 189, 0.31);
  filter: saturate(1.06);
}

.question-button:active,
.pergunta-botao:active {
  transform: translateY(0) scale(0.992);
}

.final-button {
  background: linear-gradient(135deg, var(--solo-green-dark), var(--solo-green));
  box-shadow: 0 18px 40px rgba(36, 166, 51, 0.24);
}

.question-in {
  animation: slideIn 0.35s ease both !important;
}

.question-out {
  animation: slideOut 0.22s ease both !important;
}

.quiz-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(22px);
  z-index: 99999;
  width: max-content;
  max-width: calc(100vw - 28px);
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--solo-dark);
  color: var(--solo-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: var(--shadow-strong);
}

.quiz-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.final-loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 8%, rgba(116, 199, 245, 0.30), transparent 27%),
    radial-gradient(circle at 82% 13%, rgba(36, 166, 51, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(236, 246, 252, 0.97) 48%, rgba(216, 235, 247, 0.97) 100%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.final-loading.show {
  opacity: 1;
  pointer-events: all;
}

.final-loading-card {
  width: min(92vw, 470px);
  padding: 32px 25px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 118, 189, 0.16);
  text-align: center;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.35s ease both;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.final-loading-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--arg-blue), #ffffff, var(--arg-blue), var(--solo-green));
}

.final-spinner-wrap {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  position: relative;
}

.final-spinner {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 6px solid rgba(0, 118, 189, 0.13);
  border-top-color: var(--solo-blue);
  border-right-color: var(--solo-green);
  animation: spin 0.82s linear infinite;
}

.final-spinner-wrap .material-symbols-outlined {
  color: var(--solo-blue);
  font-size: 33px;
  animation: soccerPulse 1s ease-in-out infinite;
}

.final-loading-card h2 {
  margin: 0 0 10px;
  color: var(--solo-dark);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.final-loading-card p {
  margin: 0 auto;
  max-width: 360px;
  color: var(--solo-muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.loading-checks {
  margin-top: 19px;
  display: grid;
  gap: 9px;
}

.loading-check {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4f7fa;
  color: #6f7880;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  transition: 0.22s ease;
}

.loading-check span {
  width: 17px;
  height: 17px;
  min-width: 17px;
  border-radius: 50%;
  border: 2px solid rgba(0, 118, 189, 0.18);
  position: relative;
}

.loading-check.active {
  background: #eaf8ee;
  color: var(--solo-green-dark);
}

.loading-check.active span {
  background: var(--solo-green);
  border-color: var(--solo-green);
}

.loading-check.active span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.confetti-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  border-radius: 2px;
  opacity: 0.92;
  animation: confettiFall 2.4s linear infinite;
}

.confetti-blue { background: var(--arg-blue); }
.confetti-white { background: #ffffff; border: 1px solid rgba(0, 118, 189, 0.12); }
.confetti-green { background: var(--solo-green); }

.footer-benefits {
  width: min(92%, 980px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.footer-benefits div {
  min-height: 154px;
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 118, 189, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-benefits div:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 72, 132, 0.14);
}

.footer-benefits .material-symbols-outlined {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--solo-blue-soft);
  color: var(--solo-blue);
  font-size: 28px;
}

.footer-benefits strong {
  display: block;
  color: var(--solo-dark);
  font-size: 15px;
  font-weight: 950;
}

.footer-benefits p {
  margin: 8px auto 0;
  max-width: 240px;
  color: var(--solo-muted);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 620;
}

@keyframes floatOne {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(32px, 28px, 0) scale(1.06); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-28px, 34px, 0) scale(1.08); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(24px) scale(0.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideOut {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-18px) scale(0.985); }
}

@keyframes progressShine {
  0%, 45% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes cardShine {
  0%, 54% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

@keyframes buttonShine {
  0% { transform: translateX(-120%); left: -100%; }
  100% { transform: translateX(120%); left: 100%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes soccerPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.4; }
}

@media screen and (max-width: 980px) {
  .desktop-only {
    display: none !important;
  }

  .top-strip {
    background: var(--solo-blue);
  }

  .main-row {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .logo-block {
    width: 118px;
    height: 66px;
  }

  .logo-solo {
    height: 39px;
    font-size: 39px;
  }

  .logo-deportes {
    height: 27px;
    font-size: 17px;
  }

  .header-actions button:not(.cart-btn) {
    width: 48px;
    padding: 0;
  }

  .cart-btn {
    min-width: 48px;
    width: 48px;
    padding: 0 !important;
  }

  .cart-btn b,
  .cart-btn .material-symbols-outlined + text {
    display: none;
  }

  .category-nav {
    justify-content: flex-start;
    gap: 24px;
    min-height: 54px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 44px 28px 8px;
    text-align: center;
  }

  .campaign-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy h1,
  .hero-text,
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 370px;
    padding: 18px 24px 44px;
  }

  .cup-card {
    min-height: 330px;
    width: min(100%, 330px);
  }

  .shirt-shape {
    width: 168px;
    height: 168px;
  }

  .shirt-shape span {
    font-size: 58px;
  }
}

@media screen and (max-width: 720px) {
  .strip-inner {
    font-size: 12px;
  }

  .utility-row {
    min-height: 40px;
    padding: 0 12px;
    gap: 10px;
    font-size: 11px;
  }

  .mini-brand-grid {
    gap: 6px;
  }

  .mini-logo {
    width: 40px;
    height: 24px;
    font-size: 14px;
  }

  .utility-contact {
    display: none;
  }

  .main-row {
    padding: 10px 12px 14px;
  }

  .category-nav a {
    font-size: 15px;
  }

  .hero-section {
    padding: 18px 12px 0;
  }

  .hero-card {
    border-radius: 0 0 26px 26px;
  }

  .hero-copy {
    padding: 34px 18px 2px;
  }

  .campaign-kicker {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 8px 11px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-text,
  .hero-subtext {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .primary-hero-btn {
    width: 100%;
  }

  .benefit-pill {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .trust-row div {
    min-height: 66px;
  }

  .quiz-shell {
    width: 92%;
    margin-top: 26px;
    padding: 15px;
    border-radius: 27px;
  }

  .quiz-shell::before {
    border-radius: 27px;
  }

  .quiz-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 4px 3px 14px;
  }

  .quiz-badge {
    width: fit-content;
  }

  .question-card,
  .pergunta {
    padding: 25px 16px 18px;
    border-radius: 23px;
  }

  .question-number {
    width: 46px;
    height: 46px;
    font-size: 17px;
    margin-bottom: 12px;
  }

  .question-title,
  .pergunta_title {
    font-size: 23px;
    margin-bottom: 18px;
  }

  .radio-container {
    gap: 10px;
  }

  .radio-container label {
    min-height: 58px;
    padding: 13px 13px;
    border-radius: 16px;
    font-size: 14.5px;
  }

  .radio-container input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .question-button,
  .pergunta-botao {
    min-height: 58px;
    font-size: 14px;
  }

  .footer-benefits {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .footer-benefits div {
    min-height: auto;
    padding: 20px 16px;
  }
}

@media screen and (max-width: 400px) {
  .logo-block {
    width: 106px;
    height: 61px;
  }

  .logo-solo {
    height: 36px;
    font-size: 35px;
  }

  .logo-deportes {
    height: 25px;
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .question-title,
  .pergunta_title {
    font-size: 21px;
  }

  .radio-container label {
    font-size: 14px;
  }
}


/* ============================================================
   Produto real no hero: Kit Torcedor Argentina
   ============================================================ */
.product-image-card {
  width: min(100%, 430px);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(0, 47, 88, 0.30);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
}

.product-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 14%, rgba(116, 199, 245, 0.28), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(244, 197, 66, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.product-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 45px rgba(0, 73, 130, 0.18);
}

.image-ribbon {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: calc(100% - 20px);
  margin-bottom: -2px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--solo-blue);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 118, 189, 0.25);
}

.product-discount-row {
  z-index: 2;
  margin-top: 0;
}

@media screen and (max-width: 980px) {
  .product-image-card {
    width: min(100%, 390px);
    min-height: auto;
  }
}

@media screen and (max-width: 520px) {
  .product-image-card {
    padding: 12px;
    border-radius: 26px;
  }

  .product-image-card img {
    border-radius: 19px;
  }

  .image-ribbon {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Corrección mobile: evita que el botón verde del carrito quede cortado */
@media screen and (max-width: 980px) {
  .header-actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .cart-btn {
    min-width: 48px !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    flex: 0 0 48px !important;
  }

  .cart-btn .material-symbols-outlined {
    font-size: 25px !important;
    margin: 0 !important;
  }

  .cart-btn b {
    display: none !important;
  }
}

@media screen and (max-width: 520px) {
  .main-row {
    grid-template-columns: minmax(104px, 1fr) auto;
    column-gap: 8px;
    overflow: hidden;
  }
}
