/* ════════════════════════════════════════════════
   JR TELECOM — Embaixadores JR 2026
   Design System + Componentes
   ════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Brand colours ── */
  --jr-primary: #000adc;
  --jr-secondary: #00c2fc;
  --jr-tertiary: #ff7e00;

  /* Legacy aliases kept for compatibility */
  --jr-blue: #000adc;
  --jr-cyan: #00c2fc;
  --jr-gradient: linear-gradient(135deg, #000adc 0%, #00c2fc 100%);
  --jr-gradient-h: linear-gradient(135deg, #001af0 0%, #00d8ff 100%);
  --jr-blue-mid: #001aee;
  --jr-blue-neon: #0022ff;
  --jr-blue-glow: rgba(0, 10, 220, 0.25);
  --jr-blue-soft: rgba(0, 10, 220, 0.07);

  /* ── Light theme surfaces ── */
  --bg-dark: #f0f4ff;
  --bg-card: #ffffff;
  --bg-card2: #f7f9ff;
  --glass: rgba(0, 10, 220, 0.04);
  --glass-border: rgba(0, 10, 220, 0.12);
  --premium-surface: rgba(10, 13, 46, 0.84);
  --premium-surface-soft: rgba(10, 13, 46, 0.68);
  --premium-border: rgba(255, 255, 255, 0.12);
  --premium-border-blue: rgba(0, 194, 252, 0.18);
  --premium-shadow: 0 24px 70px rgba(0, 10, 220, 0.18);
  --premium-shadow-deep: 0 32px 90px rgba(10, 13, 46, 0.28);
  --premium-glow: 0 0 30px rgba(0, 194, 252, 0.16);

  /* ── Foreground tokens (inverted for light) ── */
  --white: #0a0d2e;
  --white-70: rgba(10, 13, 46, 0.65);
  --white-40: rgba(10, 13, 46, 0.4);
  --white-15: rgba(10, 13, 46, 0.12);

  --font-main: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", "Inter", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 5rem 1.5rem;
  --container: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #e8eeff;
}
::-webkit-scrollbar-thumb {
  background: var(--jr-gradient);
  border-radius: 999px;
}

/* ─── SHARED LAYOUT ─── */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 13, 46, 0.06);
  border: 1px solid rgba(0, 194, 252, 0.22);
  color: var(--jr-primary);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 10px 26px rgba(0, 10, 220, 0.06);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--white-70);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.accent {
  background: var(--jr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--jr-tertiary);
  padding: 0.78rem 1.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all var(--transition);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 32px rgba(255, 126, 0, 0.22),
    0 0 0 1px rgba(0, 194, 252, 0.08);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: #e86500;
  box-shadow:
    0 0 42px rgba(0, 194, 252, 0.22),
    0 16px 38px rgba(255, 126, 0, 0.28);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--jr-primary);
  background: rgba(0, 10, 220, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  font-family: var(--font-display);
}
.btn-secondary:hover {
  background: rgba(0, 10, 220, 0.1);
  border-color: rgba(0, 10, 220, 0.35);
  transform: translateY(-2px);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 13, 46, 0.88);
  backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 42px rgba(10, 13, 46, 0.22);
}
.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.78);
}
.navbar.scrolled .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .logo-img {
  filter: brightness(0) invert(1);
}
.navbar.scrolled .hamburger span {
  background: #ffffff;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}
.nav-link {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white-70);
  transition:
    color var(--transition),
    background var(--transition);
}
.nav-link:hover {
  color: var(--jr-primary);
  background: var(--glass);
}
/* Over hero (transparent navbar) — white text for contrast */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
.navbar:not(.scrolled) .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.54rem 1rem;
  border-radius: 999px;
  background: var(--jr-tertiary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all var(--transition);
  box-shadow:
    0 10px 26px rgba(255, 126, 0, 0.18),
    0 0 0 1px rgba(0, 194, 252, 0.08);
  white-space: nowrap;
}
.nav-cta:hover {
  background: #e86500;
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(0, 194, 252, 0.18),
    0 14px 32px rgba(255, 126, 0, 0.24);
}
.nav-mobile-only {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--jr-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar:not(.scrolled) .hamburger span {
  background: #ffffff;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #000adc 0%, #0050c8 40%, #00c2fc 100%);
  overflow: hidden;
  padding: 5rem 1.5rem 2.2rem;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(255, 126, 0, 0.14) 0%,
    transparent 62%
  );
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 194, 252, 0.18);
  top: -120px;
  right: -100px;
}
.hero-orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(255, 126, 0, 0.1);
  bottom: 60px;
  left: -80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 1.35rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.36rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 13, 46, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(10, 13, 46, 0.14);
  animation: fadeUp 0.6s 0.1s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jr-secondary);
  box-shadow: 0 0 18px rgba(0, 194, 252, 0.7);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 650px;
  animation: fadeUp 0.6s 0.18s ease both;
}
.headline-accent {
  color: #ffffff;
  text-shadow: 0 0 34px rgba(0, 194, 252, 0.28);
}
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.hero-copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-visual {
  flex-shrink: 0;
}
.hero-visual--center {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  transform: translateY(1.2rem);
  animation: fadeUp 0.6s 0.14s ease both;
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
/* hide eyebrow — removed from HTML, keep rule harmless */
.hero-eyebrow {
  display: none;
}
.hero-pre-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.4rem;
  animation: fadeUp 0.6s 0.1s ease both;
  letter-spacing: 0.03em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  animation: fadeUp 0.6s 0.18s ease both;
}
.hero-badge-img {
  width: min(545px, 46vw);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(32, 64, 255, 0.5));
  animation:
    fadeUp 0.7s 0.2s ease both,
    badgePulse 4s 1s ease-in-out infinite;
  display: block;
}
@keyframes badgePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(32, 64, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(32, 64, 255, 0.75));
  }
}
.hero-sub {
  font-size: clamp(0.82rem, 1.1vw, 0.94rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 0;
  animation: fadeUp 0.6s 0.3s ease both;
  text-align: left;
  max-width: 540px;
}
.hero-sub strong {
  color: #ffffff;
}
.hero-sub-light {
  color: rgba(255, 255, 255, 0.68);
}
.br-desktop {
  display: block;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: fadeUp 0.6s 0.38s ease both;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-display);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
.hero-deadline {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: -0.25rem;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(10, 13, 46, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(10, 13, 46, 0.2),
    0 0 32px rgba(0, 194, 252, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: fadeUp 0.6s 0.46s ease both;
}
.deadline-copy {
  min-width: 0;
  text-align: left;
}
.deadline-copy span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--jr-secondary);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.deadline-copy strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  line-height: 1.15;
}
.hero-metrics {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(170px, 0.85fr) minmax(260px, 1fr) minmax(170px, 0.75fr);
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  margin-top: -0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(10, 13, 46, 0.36), rgba(10, 13, 46, 0.18)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(10, 13, 46, 0.2),
    0 0 34px rgba(0, 194, 252, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: fadeUp 0.6s 0.46s ease both;
}
.metrics-copy {
  text-align: left;
  padding: 0 0.35rem;
}
.metrics-copy span {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--jr-secondary);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.metrics-copy strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.15;
}
.hero-countdown {
  min-width: 0;
  padding: 0;
}
.countdown-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.countdown-kicker {
  color: var(--jr-secondary);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
}
.countdown-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 194, 252, 0.15);
}
.hero-deadline .countdown-items {
  min-width: 230px;
}
.countdown-item {
  position: relative;
  padding: 0.55rem 0.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.countdown-item + .countdown-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.countdown-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1;
  color: #ffffff;
}
.countdown-item span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0;
  white-space: nowrap;
}
.stat-item {
  min-width: 62px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.14);
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.hero-stat span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1.2s both;
}
.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(5px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── SOBRE ─── */
.sobre-section {
  padding: var(--section-pad);
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 194, 252, 0.12), transparent 32%),
    linear-gradient(180deg, #e8eeff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.sobre-badge-wrap {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 13, 46, 0.04);
  border: 1px solid rgba(0, 194, 252, 0.14);
  box-shadow: 0 24px 70px rgba(0, 10, 220, 0.08);
}
.sobre-badge-img {
  width: min(480px, 90%);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 30px rgba(0, 10, 220, 0.2));
  animation: badgePulse 4s ease-in-out infinite;
}
.sobre-copy {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(0, 194, 252, 0.16);
  box-shadow: 0 24px 70px rgba(0, 10, 220, 0.08);
  backdrop-filter: blur(14px);
}
.sobre-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 10, 220, 0.06);
  border: 1px solid rgba(0, 10, 220, 0.18);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jr-primary);
}
.sobre-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0.6rem 0 1.2rem;
}
.sobre-text {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.sobre-text strong {
  color: var(--jr-primary);
}
.sobre-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sobre-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 16px;
  background: var(--premium-surface-soft);
  border: 1px solid var(--premium-border-blue);
  box-shadow: 0 16px 38px rgba(10, 13, 46, 0.12);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.sobre-step:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 194, 252, 0.32);
  box-shadow:
    0 24px 54px rgba(10, 13, 46, 0.16),
    var(--premium-glow);
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--jr-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
}
.sobre-step strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}
.sobre-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* ─── VIDEOS SECTION ─── */
.videos-section {
  padding: var(--section-pad);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 10, 220, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  position: relative;
  overflow: hidden;
}
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 340px;
  margin: 0 auto 2.5rem;
}
.search-icon {
  position: absolute;
  left: 0.85rem;
  color: var(--white-40);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 2.5rem;
  background: #ffffff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font-main);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.search-input::placeholder {
  color: var(--white-40);
}
.search-input:focus {
  border-color: var(--jr-primary);
  background: #f5f7ff;
}
.search-clear {
  position: absolute;
  right: 0.7rem;
  color: var(--white-40);
  font-size: 0.8rem;
  padding: 2px 4px;
  transition: color var(--transition);
}
.search-clear:hover {
  color: var(--jr-primary);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.45rem;
}
.participation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.participation-step {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 10, 220, 0.12);
  box-shadow: 0 20px 50px rgba(0, 10, 220, 0.1);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.participation-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 252, 0.28);
  box-shadow:
    0 26px 64px rgba(0, 10, 220, 0.14),
    0 0 30px rgba(0, 194, 252, 0.12);
}
.participation-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--jr-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
}
.participation-step strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}
.participation-step p {
  color: var(--white-70);
  font-size: 0.82rem;
  line-height: 1.6;
}
.participation-step p strong {
  display: inline;
  color: var(--jr-primary);
  font: inherit;
}
.video-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.45rem;
}

/* Video Card */
.video-card {
  background: var(--premium-surface);
  border: 1px solid var(--premium-border-blue);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 252, 0.36);
  box-shadow:
    0 30px 72px rgba(10, 13, 46, 0.22),
    var(--premium-glow);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.video-card:hover .video-card-thumb img {
  transform: scale(1.04);
}
.video-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 46, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.video-card:hover .video-card-hover {
  opacity: 1;
}
.video-card-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 194, 252, 0.14);
  border: 1px solid rgba(0, 194, 252, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 26px rgba(0, 194, 252, 0.22);
}
.video-card-duration {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(10, 13, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.video-card-star {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.9);
  color: #000;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card-number {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  min-width: 26px;
  height: 26px;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(10, 13, 46, 0.72);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  font-family: var(--font-display);
  border: 1px solid rgba(0, 194, 252, 0.24);
  letter-spacing: 0.06em;
}
.video-card-body {
  display: none;
}
.video-card-sector {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--jr-blue-soft);
  border: 1px solid rgba(0, 10, 220, 0.18);
  color: var(--jr-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.video-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-name {
  font-size: 0.8rem;
  color: var(--white-40);
}

.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--white-40);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ─── REGULAMENTO ─── */
.regras-section {
  padding: var(--section-pad);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 194, 252, 0.11), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(0, 10, 220, 0.1), transparent 34%),
    linear-gradient(180deg, #f0f4ff 0%, #e8eeff 100%);
  position: relative;
  overflow: hidden;
}
.regras-section::before {
  display: none;
}
.regras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.regra-card {
  background: var(--premium-surface);
  border: 1px solid var(--premium-border-blue);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.regra-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: rgba(0, 10, 220, 0.05);
  line-height: 1;
}
.regra-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 252, 0.34);
  box-shadow:
    0 30px 72px rgba(10, 13, 46, 0.2),
    var(--premium-glow);
}
.highlight-card {
  background: linear-gradient(
    145deg,
    rgba(10, 13, 46, 0.86) 0%,
    rgba(0, 10, 220, 0.68) 100%
  );
  border-color: rgba(0, 194, 252, 0.22);
}
.highlight-card:hover {
  border-color: rgba(0, 194, 252, 0.42);
  background: linear-gradient(
    145deg,
    rgba(10, 13, 46, 0.9) 0%,
    rgba(0, 10, 220, 0.74) 100%
  );
}

/* ─── PREMIAÇÃO ─── */
.premiacao-winner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jr-tertiary) 0%, #ffab40 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(255, 126, 0, 0.5);
}
.premiacao-wrap {
  margin-bottom: 2rem;
}
.premiacao-card-unified {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.premio-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.8rem;
}
.premio-hero span {
  margin-bottom: 0.35rem;
  color: var(--jr-tertiary);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.premio-hero strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}
.premio-emoji {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 18px 34px rgba(255, 126, 0, 0.28));
}
.premio-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.premio-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-height: 145px;
  padding: 1.15rem 0.9rem;
  border: 1px solid rgba(0, 10, 220, 0.1);
  border-radius: 16px;
  background: rgba(0, 10, 220, 0.04);
}
.premio-list li:last-child {
  border-bottom: 1px solid rgba(0, 10, 220, 0.1);
}
.premio-list-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.premio-list-desc {
  font-size: 0.82rem;
  color: var(--white-70);
  line-height: 1.5;
  max-width: 180px;
}
.card-featured {
  border-color: rgba(0, 194, 252, 0.24);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(10, 13, 46, 0.28),
    0 0 42px rgba(255, 126, 0, 0.12);
}
.card-featured::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 126, 0, 0.16), transparent 42%);
}
.premiacao-card-unified > * {
  position: relative;
  z-index: 1;
}
.card-featured:hover {
  border-color: rgba(0, 194, 252, 0.42);
  box-shadow:
    0 0 0 1px rgba(0, 194, 252, 0.16),
    0 34px 86px rgba(10, 13, 46, 0.28),
    var(--premium-glow);
  transform: translateY(-4px);
}
.premio-label {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 126, 0, 0.1);
  border: 1px solid rgba(255, 126, 0, 0.3);
  color: var(--jr-tertiary);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.card-featured .premio-label {
  background: rgba(255, 126, 0, 0.1);
  border-color: rgba(255, 126, 0, 0.3);
  color: var(--jr-tertiary);
}
.card-featured:hover .regra-icon {
  background: #e86500;
  box-shadow: 0 8px 28px rgba(255, 126, 0, 0.5);
}
.timeline-section {
  margin: 2.5rem auto 2rem;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  background: var(--premium-surface);
  border: 1px solid var(--premium-border-blue);
  box-shadow: var(--premium-shadow-deep);
  backdrop-filter: blur(14px);
}
.timeline-title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(0, 10, 220, 0.14);
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.timeline-dot {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 194, 252, 0.28);
  box-shadow: 0 0 0 5px rgba(0, 10, 220, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-primary);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
}
.timeline-item.done .timeline-dot,
.timeline-item.active .timeline-dot {
  background: var(--jr-gradient);
  color: #ffffff;
  box-shadow:
    0 0 0 5px rgba(0, 10, 220, 0.08),
    0 0 24px rgba(0, 194, 252, 0.22);
}
.timeline-content {
  min-height: 150px;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 10, 220, 0.09);
  box-shadow: 0 16px 38px rgba(0, 10, 220, 0.08);
}
.timeline-item:nth-child(even) .timeline-content {
  transform: translateY(1rem);
}
.timeline-date {
  display: inline-block;
  margin-bottom: 0.32rem;
  color: var(--jr-secondary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.timeline-content strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.timeline-content p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* generic regra-card text (non-premiacao) */
.regra-icon {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}
.regra-card h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #ffffff;
}
.regra-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.regra-card strong {
  color: #ffffff;
}

@media (max-width: 640px) {
  .premiacao-card-unified {
    padding: 1.45rem 1rem;
  }
  .premio-hero {
    margin-bottom: 1.15rem;
  }
  .premio-emoji {
    font-size: 3rem;
  }
  .premio-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .premio-list li {
    min-height: auto;
    gap: 0.35rem;
    padding: 0.9rem;
  }
}

/* ─── DESTAQUE GALLERY ─── */
.destaque-section {
  padding: var(--section-pad);
  background: #f7f9ff;
}
.destaque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.destaque-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.destaque-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 126, 0, 0.35);
  box-shadow: 0 16px 48px rgba(0, 10, 220, 0.1);
}
.destaque-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.destaque-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.destaque-card:hover .destaque-thumb img {
  transform: scale(1.05);
}
.destaque-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.destaque-card:hover .destaque-overlay {
  opacity: 1;
}
.destaque-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.destaque-card:hover .destaque-play {
  transform: scale(1.1);
}
.destaque-badge-tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--jr-tertiary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.destaque-duration {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
}
.destaque-info {
  padding: 1.1rem 1.25rem;
}
.destaque-sector {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--jr-blue-soft);
  border: 1px solid rgba(0, 10, 220, 0.18);
  color: var(--jr-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.destaque-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.destaque-name {
  font-size: 0.82rem;
  color: var(--white-40);
}

/* ─── ALERT BOX ─── */
.alert-box-section {
  background: #f0f4ff;
  padding: 0 1.5rem 3rem;
}
.alert-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 126, 0, 0.06);
  border: 1px solid rgba(255, 126, 0, 0.28);
  color: var(--white-70);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: var(--container);
  margin: 0 auto;
}
.alert-box strong {
  color: var(--white);
}
.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── PARTICIPAR ─── */
.participar-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #000adc 0%, #0060c8 50%, #00c2fa 100%);
}
.participar-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(10, 13, 46, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  box-shadow:
    0 34px 90px rgba(10, 13, 46, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.participar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 252, 0.28);
  box-shadow:
    0 40px 96px rgba(10, 13, 46, 0.28),
    var(--premium-glow);
}
.participar-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0.6rem 0 1rem;
  color: #ffffff;
}
.participar-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.7;
}
/* section-tag override: white pill on colored bg */
.regras-section .section-tag {
  background: rgba(255, 126, 0, 0.1);
  border-color: rgba(255, 126, 0, 0.25);
  color: var(--jr-tertiary);
}
.regras-section .section-title {
  color: var(--white);
}
.regras-section .section-title .accent {
  color: var(--jr-tertiary);
  background: none;
  -webkit-text-fill-color: unset;
}
.regras-section .section-desc {
  color: var(--white-70);
}
.regras-section .regra-card,
.regras-section .timeline-section {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(0, 10, 220, 0.12);
  box-shadow: 0 20px 50px rgba(0, 10, 220, 0.1);
  color: var(--white);
}
.regras-section .regra-card:hover,
.regras-section .timeline-section:hover {
  border-color: rgba(0, 194, 252, 0.28);
  box-shadow:
    0 26px 64px rgba(0, 10, 220, 0.14),
    0 0 30px rgba(0, 194, 252, 0.12);
}
.regras-section .regra-card h3,
.regras-section .regra-card strong,
.regras-section .timeline-title,
.regras-section .timeline-content strong {
  color: var(--white);
}
.regras-section .regra-card p,
.regras-section .timeline-content p {
  color: var(--white-70);
}
.regras-section .highlight-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 126, 0, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 126, 0, 0.22);
}
.regras-section .highlight-card:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 126, 0, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.92);
}
.regras-section .premiacao-winner-pill {
  background: linear-gradient(90deg, var(--jr-tertiary) 0%, #ffab40 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(255, 126, 0, 0.4);
  color: #ffffff;
}
.participar-section .section-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 194, 252, 0.24);
  color: #ffffff;
}
.participar-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.participar-action-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 194, 252, 0.1);
  border: 1px solid rgba(0, 194, 252, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 32px rgba(0, 194, 252, 0.12);
}
.participar-action p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.participar-btn {
  width: 100%;
  justify-content: center;
}

/* ─── FOOTER ─── */
.footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 194, 252, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(255, 126, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #0a0d2e 0%, #050720 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.footer-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.footer-brand {
  max-width: 280px;
}
.footer-campaign-badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 126, 0, 0.1);
  border: 1px solid rgba(255, 126, 0, 0.24);
  color: var(--jr-tertiary);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}
.social-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.5rem;
}
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  transition: color var(--transition);
}
.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ─── MODAL DE VÍDEO ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.75);
}
.modal-video-wrap {
  position: relative;
  padding-top: 56.25%;
}
.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.modal-info {
  padding: 1.25rem 1.5rem;
}
.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.modal-meta h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.modal-sector {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--jr-blue-soft);
  color: var(--jr-primary);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.3rem;
}
.modal-date {
  font-size: 0.8rem;
  color: var(--white-40);
  white-space: nowrap;
}
.modal-info > p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* ─── TERMS MODAL ─── */
.terms-bottom-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.terms-bottom-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.terms-bottom-sheet {
  width: 100%;
  max-height: 85svh;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.terms-bottom-overlay.open .terms-bottom-sheet {
  transform: translateY(0);
}
.terms-grabber {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 10, 220, 0.15);
  margin: 0.75rem auto 0;
  flex-shrink: 0;
}
.terms-bottom-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.2rem 1.5rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}
.terms-heading h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.terms-heading p {
  font-size: 0.8rem;
  color: var(--white-40);
  margin-top: 0.25rem;
}
.terms-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  flex-shrink: 0;
}
.terms-close:hover {
  color: var(--jr-primary);
  background: var(--jr-blue-soft);
}
.terms-progress {
  height: 3px;
  background: rgba(0, 10, 220, 0.1);
  flex-shrink: 0;
}
.terms-progress span {
  display: block;
  height: 100%;
  background: var(--jr-gradient);
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s ease;
}
.terms-scroll-box {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--white-70);
}
.terms-summary {
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 10, 220, 0.05);
  border: 1px solid rgba(0, 10, 220, 0.14);
}
.terms-summary > strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.terms-summary ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.terms-summary li {
  position: relative;
  margin: 0;
  padding-left: 1.35rem;
  color: var(--white-70);
  font-size: 0.82rem;
}
.terms-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--jr-primary);
  font-weight: 900;
}
.regulation-text {
  display: grid;
  gap: 0.95rem;
}
.regulation-text h4 {
  margin-top: 0.45rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(0, 10, 220, 0.1);
  color: var(--jr-primary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}
.regulation-text p {
  color: var(--white-70);
}
.regulation-text ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
}
.regulation-text li {
  margin: 0;
  color: var(--white-70);
}
.regulation-text strong {
  color: var(--white);
}
.terms-scroll-box::-webkit-scrollbar {
  width: 4px;
}
.terms-scroll-box::-webkit-scrollbar-thumb {
  background: rgba(0, 10, 220, 0.2);
  border-radius: 2px;
}
.terms-intro {
  margin-bottom: 1.2rem;
  font-weight: 500;
  color: var(--white);
}
.terms-scroll-box ol {
  padding-left: 1.4rem;
}
.terms-scroll-box li {
  margin-bottom: 0.75rem;
}
.terms-scroll-box strong {
  color: var(--white);
}
.terms-end-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--jr-blue-soft);
  border: 1px solid rgba(0, 10, 220, 0.15);
  font-size: 0.82rem;
  color: var(--white-70);
}
.terms-bottom-actions {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}
#termsReadHint {
  font-size: 0.78rem;
  color: var(--white-40);
  text-align: center;
}
.terms-accept {
  width: 100%;
  justify-content: center;
}
.terms-accept:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 3000;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 0.88rem;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 10, 220, 0.12);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-feature {
    grid-template-columns: repeat(2, 1fr);
  }
  .participation-steps {
    grid-template-columns: 1fr;
  }
  .destaque-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .regras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    display: none;
  }
  .timeline-item:nth-child(even) .timeline-content {
    transform: none;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sobre-visual {
    order: -1;
  }
  .participar-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .participar-action {
    align-items: center;
  }
  .participar-btn {
    max-width: 280px;
  }
}

/* Mobile — single column */
@media (max-width: 640px) {
  :root {
    --section-pad: 3rem 1rem;
  }

  .section-container {
    padding: 0 0.95rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-tag {
    margin-bottom: 0.7rem;
    padding: 0.3rem 0.72rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .section-title {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
    margin-bottom: 0.65rem;
  }

  .section-desc {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  /* Navbar */
  .navbar {
    position: fixed;
    padding: 0.65rem 0;
    background: rgba(10, 13, 46, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(10, 13, 46, 0.18);
  }
  .nav-container {
    padding: 0.45rem 0.9rem;
    border-radius: 0;
    background: transparent;
    border: none;
  }
  .navbar .logo-img {
    height: 28px;
    filter: brightness(0) invert(1);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    background: rgba(10, 13, 46, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.6rem;
    gap: 0.3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 48px rgba(10, 13, 46, 0.26);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 0.72rem 0.9rem;
    color: rgba(255, 255, 255, 0.84) !important;
    text-align: center;
  }
  .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
  }
  .nav-mobile-only {
    display: block;
  }
  .nav-mobile-only .nav-link-enviar {
    background: var(--jr-tertiary) !important;
    color: #ffffff !important;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    box-shadow: none !important;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hamburger span {
    background: #ffffff;
  }

  /* Hero */
  .hero {
    padding: 5rem 1rem 2.75rem;
    min-height: auto;
  }
  .hero-content {
    gap: 0.95rem;
  }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hero-body {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    text-align: center;
    order: 2;
    align-items: center;
    gap: 0.78rem;
  }
  .hero-visual {
    order: 1;
    display: flex;
    justify-content: center;
  }
  .hero-visual--center {
    justify-content: center;
    transform: translateY(0);
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .hero-headline {
    font-size: clamp(1.85rem, 9.5vw, 2.65rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }
  .hero-sub {
    max-width: 31rem;
    font-size: 0.8rem;
    line-height: 1.55;
    text-align: center;
  }
  .hero-pre-title {
    text-align: center;
  }
  .hero-badge-img {
    width: min(255px, 70vw);
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-deadline {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 330px;
    gap: 0.65rem;
    margin-top: 0;
    padding: 0.7rem;
    text-align: center;
  }
  .deadline-copy {
    text-align: center;
  }
  .deadline-copy span {
    font-size: 0.52rem;
  }
  .deadline-copy strong {
    font-size: 0.82rem;
  }
  .hero-deadline .countdown-items {
    min-width: 0;
    width: 100%;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.58rem;
    padding: 0.68rem;
    border-radius: 16px;
  }
  .metrics-copy {
    text-align: center;
  }
  .metrics-copy span {
    font-size: 0.5rem;
  }
  .metrics-copy strong {
    font-size: 0.82rem;
  }
  .hero-countdown {
    width: 100%;
  }
  .countdown-items {
    border-radius: 12px;
  }
  .countdown-item {
    padding: 0.45rem 0.35rem;
  }
  .countdown-item strong {
    font-size: 0.98rem;
  }
  .countdown-item span {
    margin-top: 0.18rem;
    font-size: 0.48rem;
  }
  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
    padding-top: 0.05rem;
  }
  .stat-item {
    min-width: 56px;
  }
  .stat-num {
    font-size: 0.92rem;
  }
  .stat-label {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }
  .stat-divider {
    height: 22px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .br-desktop {
    display: none;
  }

  /* Grids */
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .video-feature {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .participation-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .destaque-grid {
    grid-template-columns: 1fr;
  }
  .regras-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }
  .participation-step,
  .regra-card {
    padding: 1.05rem;
    border-radius: 16px;
  }
  .participation-step span {
    width: 30px;
    height: 30px;
    margin-bottom: 0.7rem;
    font-size: 0.64rem;
  }
  .participation-step strong,
  .regra-card h3 {
    font-size: 0.86rem;
  }
  .participation-step p,
  .regra-card p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  /* Participar card */
  .participar-card {
    gap: 1.25rem;
    padding: 1.35rem 1.05rem;
    border-radius: 18px;
  }
  .participar-title {
    font-size: 1.25rem;
  }
  .participar-text,
  .participar-action p {
    font-size: 0.78rem;
  }
  .participar-action-icon {
    width: 58px;
    height: 58px;
  }
  .timeline-section {
    margin: 1.5rem auto 1.25rem;
    padding: 1.05rem;
    border-radius: 18px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    text-align: left;
  }
  .timeline::before {
    display: block;
    top: 12px;
    bottom: 12px;
    left: 13px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .timeline-item {
    display: grid;
    grid-template-columns: 26px 1fr;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
  }
  .timeline-item:nth-child(even) .timeline-content {
    transform: none;
  }
  .timeline-content {
    min-height: auto;
    padding: 0.85rem;
  }
  .timeline-title {
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
  }
  .timeline-content p {
    font-size: 0.76rem;
  }
  .alert-box {
    padding: 0.95rem;
    border-radius: 16px;
    font-size: 0.78rem;
  }

  /* Footer */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
