/* ============================================================
   PODION — site de marketing (v3, redesign — MODO CLARO)
   Identidade do app: AZUL (confiança) + LARANJA (performance)
   sobre branco/neutro claro. Stack puro (sem build).
   Laranja = ação/CTA · Azul = marca/informação.
   ============================================================ */

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

:root {
  /* Base / claro */
  --bg: #FAFBFE;
  --bg-2: #F0F3F9;
  --surface: #FFFFFF;
  --surface-2: #F5F7FB;
  --surface-3: #EAEFF6;
  --line: #E3E8F0;
  --line-2: #D3DAE6;

  /* Text */
  --text: #10162A;
  --text-2: #48526B;
  --text-3: #707C97;
  --text-4: #8792AC;

  /* Azul da marca (mesmo do app) */
  --blue: #2E74FF;
  --blue-2: #5B91FF;
  --blue-3: #175CE0;
  --cyan: #19B5FF;
  --blue-deep: #0B44E0;
  --blue-glow: rgba(46, 116, 255, 0.30);
  --blue-soft: rgba(46, 116, 255, 0.08);
  --blue-line: rgba(46, 116, 255, 0.24);

  /* Laranja do app (performance / CTA) */
  --orange: #FF6B2C;
  --orange-2: #FF8A52;
  --orange-deep: #E45015;
  --orange-text: #C2410C;
  --orange-glow: rgba(255, 107, 44, 0.28);
  --orange-soft: rgba(255, 107, 44, 0.08);
  --orange-line: rgba(255, 107, 44, 0.28);

  /* Pódio + status */
  --gold: #FFC83D;
  --green: #17914F;
  --red: #E23D3D;

  /* Sombra de elevação (cartões brancos sobre fundo claro) */
  --shadow-card: 0 1px 2px rgba(16,22,42,0.04), 0 14px 32px -18px rgba(16,22,42,0.14);
  --shadow-lg: 0 20px 50px -20px rgba(16,22,42,0.20);

  /* Type */
  --display: "Sora", system-ui, -apple-system, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Spacing / radius */
  --container: 1160px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;
}

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

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--text-4); }
* { scrollbar-width: thin; scrollbar-color: var(--line-2) var(--bg-2); }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-text);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, var(--orange), transparent); }

.h-display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.h-section {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05; letter-spacing: -0.04em; text-wrap: balance;
}
.sec-head { max-width: 700px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-sub { margin-top: 16px; color: var(--text-2); font-size: 17.5px; line-height: 1.6; text-wrap: pretty; }

.grad-blue {
  background: linear-gradient(100deg, var(--blue-deep), var(--blue) 55%, var(--blue-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-orange {
  background: linear-gradient(100deg, var(--orange-deep), var(--orange) 60%, var(--orange-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

section { padding: 96px 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--r-full);
  font-family: var(--display); font-weight: 600; font-size: 15px;
  transition: transform .18s ease, box-shadow .25s, background .25s, border-color .25s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 12px 30px -10px var(--orange-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 16px 40px -12px var(--orange-glow), 0 0 0 1px rgba(255,138,82,0.65); }
.btn-ghost {
  border: 1px solid var(--line-2); color: var(--text-2); background: transparent;
}
.btn-ghost:hover { border-color: var(--blue-line); background: var(--blue-soft); color: var(--blue-3); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* App Store badge (oficial-style) */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff;
  border: 1px solid #3a3a3c;
  border-radius: 13px;
  padding: 9px 16px 9px 14px;
  transition: transform .18s ease, border-color .2s, box-shadow .25s;
  min-height: 56px;
}
.store-badge:hover { transform: translateY(-2px); border-color: #6a6a6e; box-shadow: 0 14px 34px -14px rgba(255,107,44,0.45); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-badge .sb-small { font-size: 11px; font-weight: 500; opacity: 0.85; letter-spacing: 0.01em; }
.store-badge .sb-big { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; font-family: var(--sans); }

/* Pill "em breve" (Google Play) */
.soon-pill {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 56px; padding: 9px 18px;
  border-radius: 13px; border: 1px dashed var(--line-2);
  color: var(--text-3); font-size: 13.5px; font-weight: 600;
}
.soon-pill svg { width: 19px; height: 19px; opacity: .7; }

/* ============================================================
   NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 254, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.88); box-shadow: 0 1px 0 rgba(16,22,42,0.03), 0 12px 24px -18px rgba(16,22,42,0.15); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.navbar-brand { display: flex; align-items: center; gap: 11px; }
.navbar-brand .brand-icon { width: 34px; height: auto; filter: drop-shadow(0 4px 12px rgba(46,116,255,0.35)); }
.navbar-brand .brand-word { height: 19px; width: auto; }
.navbar-menu { display: flex; align-items: center; gap: 32px; }
.navbar-menu a {
  color: var(--text-2); font-size: 14.5px; font-weight: 600;
  transition: color .2s; position: relative;
}
.navbar-menu a:not(.btn):hover { color: var(--text); }
.navbar-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s ease; border-radius: 2px;
}
.navbar-menu a:not(.btn):hover::after { width: 100%; }

/* Botões de loja no header — sempre os dois lado a lado */
.nav-stores { display: flex; align-items: center; gap: 8px; }
.nav-store {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 20px -10px var(--orange-glow);
  transition: transform .18s ease, box-shadow .25s;
}
.nav-store svg { width: 17px; height: 17px; }
.nav-store:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 26px -12px var(--orange-glow); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-2); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .navbar-menu {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-120%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .navbar-menu.open { transform: translateY(0); }
  .navbar-menu a:not(.btn) { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .navbar-menu a:not(.btn)::after { display: none; }
  .navbar-menu .btn { margin-top: 16px; }
  .navbar-menu .nav-stores { margin-top: 16px; justify-content: center; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 76px 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero-bg .mesh {
  position: absolute; inset: -20% -10%;
  background:
    radial-gradient(46% 50% at 18% 24%, rgba(46,116,255,0.16) 0%, transparent 70%),
    radial-gradient(38% 44% at 86% 76%, rgba(255,107,44,0.12) 0%, transparent 70%),
    radial-gradient(30% 36% at 70% 12%, rgba(25,181,255,0.10) 0%, transparent 70%);
  filter: blur(12px);
  animation: meshShift 14s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.07) translate(1.5%, 1%); }
}
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,74,140,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,74,140,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 65% at 50% 35%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 35%, #000 20%, transparent 100%);
}
.hero-video {
  position: absolute; right: 0; top: 0; width: 56%; height: 108%;
  object-fit: cover; object-position: center 25%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 78%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 78%, transparent 100%);
  opacity: 0.22;
}
@media (max-width: 900px) { .hero-video { width: 100%; opacity: 0.12; } }

.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 48px; align-items: center;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; border-radius: var(--r-full);
  background: var(--orange-soft); border: 1px solid var(--orange-line);
  font-size: 13px; font-weight: 600; color: var(--orange-text);
  margin-bottom: 26px;
}
.badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,107,44,0.45);} 50% { box-shadow: 0 0 0 6px rgba(255,107,44,0);} }

.hero-sub {
  margin-top: 22px; color: var(--text-2);
  font-size: 18px; line-height: 1.65; max-width: 500px; text-wrap: pretty;
}
.hero-sub strong { color: var(--text); font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; color: var(--text-3); font-size: 13.5px; font-weight: 600; }
.trust-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.trust-sep { width: 1px; height: 14px; background: var(--line-2); }

/* Card com a arte real do app (o screenshot já traz a própria composição) */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(340px, 84vw);
  border-radius: 28px;
  border: 1px solid var(--line-2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.5) inset,
    0 30px 70px -24px rgba(16,22,42,0.28),
    0 0 90px -30px var(--blue-glow);
}
.phone img { width: 100%; height: auto; border-radius: 27px; }
.phone-glow {
  position: absolute; inset: auto -18% -14% -18%; height: 55%; z-index: -1;
  background:
    radial-gradient(45% 90% at 35% 60%, var(--blue-glow), transparent 70%),
    radial-gradient(45% 90% at 70% 60%, var(--orange-glow), transparent 70%);
  filter: blur(46px); opacity: .7;
}

.float {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 11px 15px; box-shadow: 0 18px 40px -16px rgba(16,22,42,0.28);
  animation: floaty 6s ease-in-out infinite;
}
.float .t1 { display: block; font-family: var(--display); font-weight: 700; font-size: 13.5px; letter-spacing: -0.01em; }
.float .t2 { display: block; font-size: 11.5px; color: var(--text-3); }
.float-rank { top: 34%; left: -12%; animation-delay: .6s; }
.float-rank .medal {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(150deg, var(--gold), #E09A00);
  color: #402800; font-family: var(--display); font-weight: 800; font-size: 14px;
}
.float-evo { bottom: 14%; right: -8%; }
.float-evo .ic {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(37,194,106,0.14); color: var(--green); border: 1px solid rgba(37,194,106,0.3);
}
.float-evo .ic svg { width: 18px; height: 18px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 900px) {
  .hero { padding: 52px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-sub { max-width: none; }
  .float-rank { left: 0; }
  .float-evo { right: 0; }
}

/* ============================================================
   MARQUEE (CSS puro — conteúdo duplicado no HTML)
   ============================================================ */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 18px 0; position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: flex; gap: 52px; width: max-content; align-items: center; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-item { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--text-3); white-space: nowrap; }
.m-item svg { width: 19px; height: 19px; color: var(--orange); }
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); flex-shrink: 0; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   COMO FUNCIONA (passos)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px 0; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.step:hover { border-color: var(--orange-line); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: .1em;
  color: var(--orange-text); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px;
}
.step-num::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--orange-line), transparent); }
.step h3 { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.step-shot { margin-top: 24px; display: flex; justify-content: center; }
.step-shot img {
  width: 78%; height: auto; border-radius: 22px 22px 0 0;
  border: 1px solid var(--line-2); border-bottom: none;
  box-shadow: 0 -14px 44px -18px var(--blue-glow);
  transition: transform .4s ease;
}
.step:hover .step-shot img { transform: translateY(-8px); }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 620px) {
  .steps { gap: 10px; }
  .step { padding: 20px 16px 0; }
  .step-num { font-size: 11px; margin-bottom: 10px; }
  .step h3 { font-size: 17px; }
  .step p { font-size: 13px; }
  .step-shot img { width: 95%; }
}

/* ============================================================
   BENEFÍCIOS (dores → soluções)
   ============================================================ */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pain::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: linear-gradient(180deg, var(--orange), transparent 80%);
  opacity: 0; transition: opacity .25s;
}
.pain:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pain:hover::before { opacity: 1; }
.pain-tag {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--text-4);
  text-decoration: line-through; text-decoration-color: var(--red);
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: var(--r-full); margin-bottom: 16px;
}
.pain .ic {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue-2); border: 1px solid var(--blue-line);
  margin-bottom: 14px;
}
.pain .ic svg { width: 19px; height: 19px; }
.pain h3 { font-family: var(--display); font-size: 18.5px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.pain p { color: var(--text-2); font-size: 14px; line-height: 1.6; }
@media (max-width: 940px) { .pains { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .pains { gap: 10px; }
  .pain { padding: 18px 16px; }
  .pain h3 { font-size: 16.5px; }
  .pain p { font-size: 13px; }
}

/* ============================================================
   MODALIDADES (abas)
   ============================================================ */
.tabs { margin-top: 8px; }
.tablist {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 0 auto 44px; width: max-content; max-width: 100%;
  padding: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-full);
  box-shadow: var(--shadow-card);
}
.tab {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 11px 20px; border-radius: var(--r-full); border: 1px solid transparent;
  font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--text-3);
  transition: color .25s, background .25s, border-color .25s;
}
.tab svg { width: 18px; height: 18px; }
.tab:hover { color: var(--text); }
.tab[aria-selected="true"] {
  color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: var(--blue-2); box-shadow: 0 8px 22px -10px var(--blue-glow);
}
.tabpanel { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; animation: tabIn .5s cubic-bezier(.2,.7,.2,1); }
.tabpanel[hidden] { display: none; }
.tabpanel.flip .t-media { order: 2; }
@keyframes tabIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.t-media { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--surface); border: 1px solid var(--line); isolation: isolate; box-shadow: var(--shadow-card); }
.t-media video, .t-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s ease; }
.t-media:hover img { transform: scale(1.04); }
.t-media .t-glow { position: absolute; inset: auto -20% -45% -20%; height: 70%; background: radial-gradient(closest-side, var(--blue-glow), transparent 75%); filter: blur(44px); z-index: -1; }
.t-badge {
  position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-full); background: rgba(5,7,13,0.55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .03em; color: #fff;
}
.t-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.t-copy .eyebrow { margin-bottom: 14px; }
.t-copy h3 { font-family: var(--display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.035em; line-height: 1.06; margin-bottom: 14px; text-wrap: balance; }
.t-copy > p { color: var(--text-2); font-size: 16.5px; line-height: 1.62; max-width: 460px; text-wrap: pretty; }
.t-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.t-feats li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: var(--text); }
.t-feats svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.t-stats { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.t-stat { padding: 12px 18px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.t-stat .v { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1; color: var(--orange-2); }
.t-stat .v small { font-size: 13px; font-weight: 600; color: var(--text-3); }
.t-stat .l { font-size: 12px; color: var(--text-3); margin-top: 4px; }
@media (max-width: 900px) {
  .tabpanel { grid-template-columns: 1fr; gap: 30px; }
  .tabpanel.flip .t-media { order: 0; }
  .t-copy > p { max-width: none; }
}

/* ============================================================
   BANDA CINEMÁTICA (vídeo full-bleed)
   ============================================================ */
.cinematic { position: relative; min-height: 72vh; display: grid; place-items: center; overflow: hidden; padding: 104px 0; }
.cine-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cine-ov {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,7,13,.85), rgba(5,7,13,.48) 45%, rgba(5,7,13,.95)),
    radial-gradient(120% 80% at 50% 42%, transparent, rgba(5,7,13,.72));
}
.cine-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px; }
.cine-inner .eyebrow { justify-content: center; }
.cine-inner .eyebrow::before { display: none; }
.cine-quote { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 5.4vw, 62px); line-height: 1.04; letter-spacing: -.04em; text-wrap: balance; margin: 16px 0 22px; }
.cine-sub { color: var(--text-2); font-size: 18px; max-width: 560px; margin: 0 auto 32px; text-wrap: pretty; }
.cine-inner .cta-stores { margin: 0 auto; }

/* ============================================================
   COMUNIDADE (faixa de fotos)
   ============================================================ */
.photo-strip {
  overflow: hidden; padding: 12px 0; margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.photo-row { display: flex; gap: 16px; width: max-content; }
.photo-row.a { animation: scroll 52s linear infinite; }
.photo-row.b { animation: scrollBack 60s linear infinite; margin-top: 16px; }
.photo-strip:hover .photo-row { animation-play-state: paused; }
@keyframes scrollBack { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ph { width: 290px; height: 196px; border-radius: var(--r-lg); overflow: hidden; flex-shrink: 0; border: 1px solid var(--line); position: relative; }
.ph::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -40px 50px -30px rgba(5,7,13,.9); }
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ph:hover img { transform: scale(1.07); }
@media (max-width: 560px) { .ph { width: 210px; height: 144px; } }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta { padding: 104px 0; }
.cta-wrap {
  position: relative; text-align: center; overflow: hidden;
  border-radius: var(--r-xl); border: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 20% 0%, rgba(46,116,255,0.14), transparent 60%),
    radial-gradient(60% 110% at 85% 100%, rgba(255,107,44,0.12), transparent 60%),
    linear-gradient(170deg, #FFFFFF, #F2F5FB);
  box-shadow: var(--shadow-lg);
  padding: 76px 40px;
}
.cta-wrap .grid-deco {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(46,74,140,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,74,140,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 80% at 50% 30%, #000 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 80% at 50% 30%, #000 10%, transparent 100%);
}
.cta-wrap > * { position: relative; }
.cta-icon { width: 62px; height: auto; margin: 0 auto 22px; filter: drop-shadow(0 8px 24px rgba(46,116,255,0.5)); }
.cta h2 { font-family: var(--display); font-size: clamp(30px, 4.6vw, 56px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; text-wrap: balance; }
.cta p { color: var(--text-2); font-size: 18px; margin: 18px auto 0; max-width: 480px; text-wrap: pretty; }
.cta-stores { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 36px; }
@media (max-width: 620px) { .cta-wrap { padding: 52px 24px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand .navbar-brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-3); font-size: 14px; max-width: 290px; }
.footer-brand .flag { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 12px; color: var(--text-2); background: var(--surface); border: 1px solid var(--line); padding: 6px 11px; border-radius: var(--r-full); }
.footer-col h5 { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 16px; color: var(--text-2); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--text-3); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--orange-2); }
.footer-bot { margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bot p { color: var(--text-3); font-size: 13px; }
.footer-soc { display: flex; gap: 9px; margin-right: 60px; }
@media (max-width: 460px) { .footer-soc { margin-right: 0; } }
.footer-soc a { width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-2); transition: color .2s, border-color .2s, transform .2s; }
.footer-soc a:hover { color: var(--orange-2); border-color: var(--orange-line); transform: translateY(-2px); }
.footer-soc svg { width: 17px; height: 17px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: span 2; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; } }

/* ============================================================
   REVEAL ON-SCROLL + BACK TO TOP
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.visible { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: .08s; }
html.js .reveal.d2 { transition-delay: .16s; }
html.js .reveal.d3 { transition-delay: .24s; }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--text-2);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .3s, transform .3s, color .2s, border-color .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { color: var(--orange-2); border-color: var(--orange-line); }
.back-to-top svg { width: 18px; height: 18px; }
@media (max-width: 560px) { .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; } }

/* ============================================================
   Elevação para cartões definidos nas páginas de doc/atividade
   (mesma classe, estilo inline por página — shadow entra aqui)
   ============================================================ */
.faq-item, .activity-card, .contact-box { box-shadow: var(--shadow-card); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-video, .cine-video { display: none; }
  .marquee-track, .photo-row.a, .photo-row.b { animation: none; }
  .float { animation: none; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  .back-to-top { transition: none; }
}
