/* ============================================================
   HYROX DAILY WOD — Design System v2
   Conceito: "brasa sobre ferro" — variação do escuro+laranja
   original, mais quente e mais dinâmico.
   ============================================================ */

:root {
  /* Paleta — variação sobre o conceito escuro + laranja */
  --ink: #15110D;             /* preto com base terracota, não neutro */
  --ink-2: #0B0906;           /* preto profundo pras seções mais escuras */
  --ink-soft: #1E1811;        /* cards sobre fundo escuro */
  --paper: #EFE8DC;           /* claro quente */
  --paper-alt: #E4DAC5;       /* claro alternativo p/ seções */
  --graphite: #5C574C;        /* texto secundário sobre claro */

  --ember: #F0501F;           /* laranja principal, mais quente que o original */
  --ember-dark: #C93E15;
  --ember-2: #FF8A4C;         /* acento secundário p/ gradientes e glow */
  --rope: #E8B23A;            /* âmbar herdado do conceito original */
  --rope-soft: #F4CE72;

  --line-on-paper: rgba(21, 17, 13, 0.14);
  --line-on-ink: rgba(239, 232, 220, 0.14);

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1200px;
  --pad-inline: clamp(20px, 5vw, 64px);
  --pad-section: clamp(72px, 10vw, 132px);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

::selection {
  background: var(--ember);
  color: #fff;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.icon {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.15em;
}

/* ---------- Grão de fundo (textura sutil, sem imagem) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--ember-2));
  display: inline-block;
}

.section--dark .eyebrow,
.section--dark-2 .eyebrow { color: var(--rope); }

.section--dark .eyebrow::before,
.section--dark-2 .eyebrow::before {
  background: linear-gradient(90deg, var(--rope), var(--rope-soft));
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.96;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  margin: 0 0 18px;
  max-width: 18ch;
}

.section-title .hl { color: var(--ember); }
.section--dark .section-title .hl,
.section--dark-2 .section-title .hl { color: var(--ember-2); }

.lede {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--graphite);
  max-width: 54ch;
  margin: 0;
}

.section--dark .lede,
.section--dark-2 .lede { color: rgba(239, 232, 220, 0.72); }

.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .lede { margin-inline: auto; }

.section {
  padding-block: var(--pad-section);
  position: relative;
}

.section--dark { background: var(--ink); color: var(--paper); }
.section--dark-2 { background: var(--ink-2); color: var(--paper); }
.section--paper-alt { background: var(--paper-alt); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 16px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ember), var(--ember-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(240, 80, 31, 0.28);
}

.btn--primary::before {
  background: linear-gradient(135deg, var(--ember-2), var(--ember));
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(240, 80, 31, 0.4);
}

.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(-1px); }

.btn--block { width: 100%; }

.btn--ghost-light {
  background: transparent;
  border-color: rgba(239, 232, 220, 0.35);
  color: var(--paper);
}

.btn--ghost-light:hover {
  border-color: var(--paper);
  transform: translateY(-3px);
  background: rgba(239, 232, 220, 0.06);
}

.btn--ghost-dark {
  background: transparent;
  border-color: rgba(21, 17, 13, 0.3);
  color: var(--ink);
}

.btn--ghost-dark:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.14s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.23s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.32s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.41s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(21, 17, 13, 0.85);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  padding: 13px 0;
  border-bottom-color: var(--line-on-ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--paper);
}

.brand__mark {
  width: 36px; height: 36px;
  border: 2px solid var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.5s var(--ease-spring), background-color 0.3s ease, color 0.3s ease;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--ember);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.8);
}

.brand:hover .brand__mark {
  transform: rotate(-20deg) scale(1.1);
  background: var(--ember);
  color: #fff;
}

.brand:hover .brand__mark::after {
  opacity: 1;
  transform: scale(1);
}

.brand__mark .icon { width: 16px; height: 16px; stroke-width: 3; }

.brand__word { line-height: 1; }

.brand__word strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.38rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand__word span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rope);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 36px; }

.main-nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}

.main-nav__links a {
  text-decoration: none;
  color: var(--paper);
  font-size: 0.89rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.main-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--ember-2));
  transition: width 0.25s var(--ease-out);
}

.main-nav__links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  padding: 6px;
  cursor: pointer;
}

.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon--close { display: none; }

.mobile-drawer { display: none; }

@media (max-width: 860px) {
  .main-nav__links { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; padding: 9px; }

  .footer__nav a, .footer__legal a {
    display: inline-block;
    padding-block: 13px;
  }
  .footer__nav ul { gap: 0 28px; }
  .footer__legal { gap: 0 20px; }

  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0; top: 0;
    background: var(--ink);
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 90;
  }

  .mobile-drawer.is-open { transform: translateX(0); }

  .mobile-drawer ul {
    list-style: none;
    margin: 0 0 32px; padding: 0;
    display: flex; flex-direction: column; gap: 4px;
  }

  .mobile-drawer ul a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-on-ink);
    color: var(--paper);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle .icon--menu { display: none; }
  body.nav-open .nav-toggle .icon--close { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(150px, 20vw, 210px);
  padding-bottom: var(--pad-section);
  position: relative;
  overflow: hidden;
}

/* Glow ambiente atrás do hero — substitui o "fundo liso" original */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, rgba(240, 80, 31, 0.22) 0%, rgba(240, 80, 31, 0) 68%);
  pointer-events: none;
  z-index: 0;
  animation: emberDrift 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(239, 232, 220, 0.03) 0 1px, transparent 1px 64px);
  pointer-events: none;
  z-index: 0;
}

@keyframes emberDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-6%, 4%) scale(1.08); }
}

.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(52px, 6vw, 88px);
}

.hero__content { max-width: 100%; }
.hero .eyebrow { color: var(--rope); }

.hero__heading {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.hero__heading em {
  font-style: normal;
  color: var(--ember);
  position: relative;
  display: inline-block;
}

.hero__heading em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.08em;
  height: 0.22em;
  background: linear-gradient(90deg, var(--ember), var(--ember-2));
  opacity: 0.25;
  z-index: -1;
  border-radius: 3px;
}

.hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: rgba(239, 232, 220, 0.74);
  max-width: 56ch;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  font-family: var(--font-mono);
  font-size: 0.79rem;
  color: rgba(239, 232, 220, 0.55);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__scroll-hint:hover { color: var(--paper); gap: 10px; }

.hero__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(240, 80, 31, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 45px rgba(240, 80, 31, 0.18);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.hero__visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(240, 80, 31, 0.28);
}

.hero__visual::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ember), var(--rope), var(--ember-2));
  z-index: 2;
}

.hero__media-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  background:
    radial-gradient(circle at 30% 20%, rgba(240, 80, 31, 0.35), transparent 55%),
    linear-gradient(160deg, #221a12 0%, #0b0906 100%);
  overflow: hidden;
}

/* Silhueta ilustrativa da cena de treino, via CSS — usada onde o vídeo/imagem
   real ainda não foi conectado. Basta trocar o <video>/<img> real e este bloco
   fica escondido atrás dele. */
.hero__media-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(11,9,6,0.9) 100%),
    repeating-linear-gradient(115deg, rgba(240,80,31,0.06) 0 2px, transparent 2px 26px);
}

.hero__img, .hero__video {
  width: 100%; height: 100%;
  max-height: 540px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.hero__tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(11, 9, 6, 0.6);
  backdrop-filter: blur(6px);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(239, 232, 220, 0.18);
}

.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
  animation: heroPulse 1.8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(240, 80, 31, 0.5); }
  50% { opacity: 0.55; box-shadow: 0 0 0 7px rgba(240, 80, 31, 0); }
}

.hero__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(180deg, rgba(21, 17, 13, 0) 0%, rgba(11, 9, 6, 0.9) 78%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero__caption::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--ember);
  flex-shrink: 0;
}

.hero__caption span {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
}

/* ---------- Barra de estações (elemento de assinatura) ---------- */
.stations {
  position: relative;
}

.stations__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 232, 220, 0.5);
  margin: 0 0 16px;
}

.stations__track-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-on-ink);
  border-bottom: 1px solid var(--line-on-ink);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  padding-block: 4px;
}

.stations__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: stationsScroll 42s linear infinite;
}

.stations__track:hover { animation-play-state: paused; }

.stations__seq {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
}

@keyframes stationsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.station {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-right: 1px solid var(--line-on-ink);
  white-space: nowrap;
}

.station__n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ember);
  opacity: 0.85;
}

.station__name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 1.15;
}

.station__dist {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(239, 232, 220, 0.5);
}

.station--run {
  color: var(--rope);
  gap: 8px;
}

.station--run .station__name {
  color: var(--rope);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
}

/* ============================================================
   "Feito pra quem dá aula em" — badges
   ============================================================ */
.audience {
  padding-block: 28px;
  background: var(--ink-2);
  border-top: 1px solid var(--line-on-ink);
  border-bottom: 1px solid var(--line-on-ink);
}

.audience .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.audience__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239, 232, 220, 0.5);
  flex-shrink: 0;
}

.audience__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0; padding: 0;
}

.audience__list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--paper);
  padding: 8px 16px;
  border: 1px solid var(--line-on-ink);
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.audience__list li:hover {
  border-color: var(--ember);
  color: var(--ember-2);
  background: rgba(240, 80, 31, 0.08);
}

/* ============================================================
   Resultados (stats)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-ink);
  border: 1px solid var(--line-on-ink);
  border-radius: 10px;
  overflow: hidden;
}

.stat {
  background: var(--ink);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 30px);
  position: relative;
  transition: background 0.3s ease;
}

.stat:hover { background: var(--ink-soft); }

.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--ember-2);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat__num sup {
  font-size: 0.4em;
  color: var(--rope);
}

.stat__label {
  font-size: 0.88rem;
  color: rgba(239, 232, 220, 0.68);
  max-width: 22ch;
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Diferenciais (feature list + imagem)
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.diff-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 70% 30%, rgba(240, 80, 31, 0.25), transparent 60%),
    linear-gradient(160deg, #2a2015 0%, #100c07 100%);
  box-shadow: 0 20px 45px rgba(21, 17, 13, 0.25);
}

.diff-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.diff-media__tag {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(21, 17, 13, 0.65);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(239, 232, 220, 0.15);
}

.diff-list { display: flex; flex-direction: column; gap: 28px; }

.diff-item {
  display: flex;
  gap: 20px;
  padding: 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.diff-item:hover {
  border-color: var(--line-on-paper);
  background: rgba(240, 80, 31, 0.04);
  transform: translateX(6px);
}

.diff-item__num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--ember);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}

.diff-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 4px 0 6px;
  letter-spacing: 0.01em;
}

.diff-item__text {
  color: var(--graphite);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 860px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Oferta — cards de produto
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 32px);
  align-items: stretch;
}

.offer-card {
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-on-ink);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.offer-card--featured {
  border-color: var(--ember);
  box-shadow: 0 0 0 1px var(--ember), 0 20px 50px rgba(240, 80, 31, 0.18);
}

.offer-card--featured:hover {
  box-shadow: 0 0 0 1px var(--ember), 0 30px 65px rgba(240, 80, 31, 0.3);
}

.offer-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--ember), var(--ember-dark));
  padding: 7px 14px;
  border-radius: 999px;
}

.offer-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(150deg, #241c13 0%, #0d0a06 100%);
}

.offer-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.offer-card:hover .offer-card__media img { transform: scale(1.06); }

.offer-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21,17,13,0.9) 100%);
}

.offer-card__tag {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rope);
}

.offer-card__body {
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.offer-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--paper);
  margin: 0;
  letter-spacing: 0.01em;
}

.offer-card--featured .offer-card__title { color: var(--ember-2); }

.offer-card__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(239, 232, 220, 0.5);
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-card__price-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--paper);
}

.offer-card__price-note {
  font-size: 0.82rem;
  color: rgba(239, 232, 220, 0.55);
}

.offer-card__desc {
  color: rgba(239, 232, 220, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.offer-card__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(239, 232, 220, 0.82);
  line-height: 1.4;
}

.offer-card__list .icon {
  color: var(--ember-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-card__group-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rope);
  margin: 6px 0 -2px;
}

.offer-card__cta { margin-top: auto; padding-top: 6px; }

.offer-note {
  text-align: center;
  color: var(--graphite);
  font-size: 0.92rem;
  margin: 32px 0 0;
}

.guarantee-box {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 18px 26px;
  border: 1px dashed var(--line-on-paper);
  border-radius: 10px;
  max-width: 640px;
  margin-inline: auto;
  background: rgba(240, 80, 31, 0.04);
}

.guarantee-box .icon {
  width: 28px; height: 28px;
  color: var(--ember);
  flex-shrink: 0;
}

.guarantee-box p { margin: 0; font-size: 0.92rem; color: var(--ink); }
.guarantee-box strong { color: var(--ember-dark); }

@media (max-width: 860px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Por dentro — galeria de previews
   ============================================================ */
.preview-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ember) transparent;
}

.preview-scroller::-webkit-scrollbar { height: 6px; }
.preview-scroller::-webkit-scrollbar-thumb { background: var(--ember); border-radius: 999px; }
.preview-scroller::-webkit-scrollbar-track { background: rgba(239,232,220,0.08); }

.preview-card {
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-on-ink);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}

.preview-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: var(--ember);
}

.preview-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(160deg, #241c13, #0d0a06);
}

.preview-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-card:hover .preview-card__img img { transform: scale(1.08); }

.preview-card__cap {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: rgba(239, 232, 220, 0.8);
}

.preview-card__cap strong { color: var(--ember-2); }

/* ============================================================
   Expert
   ============================================================ */
.expert-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.expert-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #d8cdb4, #b9ab89);
  box-shadow: 0 20px 45px rgba(21,17,13,0.15);
}

.expert-photo img { width: 100%; height: 100%; object-fit: cover; }

.expert-name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.7rem;
  margin: 0 0 4px;
}

.expert-role {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ember-dark);
  margin: 0 0 18px;
}

.expert-bio {
  color: var(--graphite);
  max-width: 60ch;
  margin: 0 0 22px;
}

.expert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.expert-badges li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-on-paper);
  color: var(--graphite);
}

.expert-quote {
  border-left: 3px solid var(--ember);
  padding-left: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  font-style: normal;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 860px) {
  .expert-grid { grid-template-columns: 1fr; }
  .expert-photo { max-width: 320px; margin-inline: auto; }
}

/* ============================================================
   Cases (depoimentos com vídeo)
   ============================================================ */
.case-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 64px);
}

.case-block:not(:last-of-type) { border-bottom: 1px solid var(--line-on-paper); }
.case-block:nth-of-type(even) { direction: rtl; }
.case-block:nth-of-type(even) > * { direction: ltr; }

.case-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, #241c13, #0d0a06);
  box-shadow: 0 20px 45px rgba(21,17,13,0.18);
}

.case-media video, .case-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.case-media__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.case-media__badge span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(21,17,13,0.65);
  backdrop-filter: blur(6px);
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(239,232,220,0.15);
}

.case-media__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.case-media__play .icon {
  width: 52px; height: 52px;
  padding: 14px;
  border-radius: 50%;
  background: rgba(240, 80, 31, 0.85);
  backdrop-filter: blur(4px);
}

.case-media:hover .case-media__play { opacity: 1; }

.case-quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.case-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--ember);
  background: linear-gradient(160deg, #d8cdb4, #b9ab89);
}

.case-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Avatar neutro (iniciais) — usado quando não há foto de rosto adequada */
.case-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--ember), var(--ember-dark));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}

.case-quote__name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 0;
}

.case-quote__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ember-dark);
  margin: 2px 0 0;
}

.case-quote__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.case-quote__text {
  color: var(--graphite);
  margin: 0;
  max-width: 50ch;
}

.case-quote__points {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-quote__points li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}

.case-quote__points .icon { color: var(--ember); flex-shrink: 0; margin-top: 2px; }

.case-quote__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ember-dark);
  text-decoration: none;
  width: fit-content;
  transition: gap 0.2s ease, color 0.2s ease;
}

.case-quote__link:hover { gap: 12px; color: var(--ember); }

@media (max-width: 860px) {
  .case-block, .case-block:nth-of-type(even) { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Mini-quotes ---------- */
.mini-quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}

.mini-quote {
  padding: 22px;
  border-radius: 10px;
  border: 1px solid var(--line-on-paper);
  background: rgba(240, 80, 31, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mini-quote:hover {
  transform: translateY(-4px);
  border-color: var(--ember);
}

.mini-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.mini-quote cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--graphite);
  display: block;
}

.mini-quote cite strong { color: var(--ink); display: block; font-size: 0.85rem; margin-bottom: 2px; }

@media (max-width: 960px) {
  .mini-quotes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mini-quotes { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line-on-paper);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.35);
  transition: border-color 0.25s ease;
}

.faq-item.is-open { border-color: var(--ember); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ember);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--ember);
  color: #fff;
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-item__a-inner { overflow: hidden; }

.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }

.faq-item__a p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--graphite);
  max-width: 62ch;
}

/* ============================================================
   CTA final
   ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(11,9,6,0.88) 0%, rgba(11,9,6,0.95) 100%),
    url("assets/images/cta_final.png");
  background-size: cover;
  background-position: center 30%;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, rgba(240, 80, 31, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cta-section__note {
  font-size: 0.88rem;
  color: rgba(239, 232, 220, 0.55);
  margin: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink-2);
  color: rgba(239, 232, 220, 0.7);
  padding-block: clamp(48px, 6vw, 72px) 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-on-ink);
  margin-bottom: 28px;
}

.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { max-width: 42ch; font-size: 0.9rem; margin: 0; }

.footer__nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  text-decoration: none;
  color: rgba(239, 232, 220, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__nav a:hover { color: var(--ember-2); }

.footer__social {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-on-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(239, 232, 220, 0.7);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  border-color: var(--ember);
  color: var(--ember-2);
  transform: translateY(-3px);
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(239, 232, 220, 0.4);
  max-width: 90ch;
  margin: 0 0 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer__legal { display: flex; gap: 20px; }
.footer__legal a { text-decoration: none; color: rgba(239, 232, 220, 0.55); }
.footer__legal a:hover { color: var(--paper); }

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   Modal — Oferta Relâmpago
   ============================================================ */
.flash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 9, 6, 0);
  backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, visibility 0s linear 0.3s;
}

.flash.is-open {
  opacity: 1;
  visibility: visible;
  background: rgba(11, 9, 6, 0.72);
  backdrop-filter: blur(6px);
  transition: opacity 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.flash__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--ink);
  border: 1px solid rgba(240, 80, 31, 0.4);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 60px rgba(240, 80, 31, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s var(--ease-spring);
}

.flash.is-open .flash__dialog { transform: scale(1) translateY(0); }

.flash__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-on-ink);
  background: none;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.flash__close:hover { border-color: var(--ember); transform: rotate(90deg); }

.flash__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rope);
  margin: 0 0 14px;
}

.flash__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  animation: heroPulse 1.5s ease-in-out infinite;
}

.flash__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.9rem;
  color: var(--paper);
  margin: 0 0 14px;
}

.flash__text {
  color: rgba(239, 232, 220, 0.72);
  font-size: 0.95rem;
  margin: 0 0 22px;
}

.flash__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.flash__price-old {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(239, 232, 220, 0.4);
  text-decoration: line-through;
}

.flash__price-new {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.3rem;
  color: var(--ember-2);
}

.flash__price-off {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--ember);
  padding: 4px 10px;
  border-radius: 999px;
}

.flash__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flash__keep {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(239, 232, 220, 0.55);
  text-decoration: none;
  padding: 8px;
  transition: color 0.2s ease;
}

.flash__keep:hover { color: var(--paper); }

body.flash-open { overflow: hidden; }

/* ============================================================
   Fallback visual para imagens/vídeos ainda não conectados
   (mesmo nome de arquivo do site original — troque o arquivo em
   assets/images/ e este fallback fica invisível atrás dele).
   ============================================================ */
img, video {
  background: linear-gradient(150deg, #241c13 0%, #0d0a06 100%);
}

.expert-photo img, .case-avatar img {
  background: linear-gradient(150deg, #d8cdb4 0%, #b9ab89 100%);
}

img::before {
  content: "";
}

/* ============================================================
   Responsivo geral
   ============================================================ */
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .case-block { gap: 24px; }
}
