@charset "utf-8";
/* ==========================================================================
   SOLUTE RH — Design System
   Dark premium · laranja de marca #F38C23
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Tipografia
   4.  Layout / grid
   5.  Utilitarios de animacao
   6.  Header & navegacao
   7.  Botoes & links
   8.  Hero
   9.  Marquee
   10. Cards & secoes
   11. Numeros / stats
   12. Timeline / metodo
   13. Depoimentos
   14. Valores
   15. Faixas de CTA
   16. Formularios
   17. Acordeao / FAQ
   18. Footer
   19. Widgets flutuantes
   20. Paginas internas
   21. Responsivo
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* --- superficies ------------------------------------------------------ */
  --ink-1000: #050506;
  --ink-950:  #0A0A0C;
  --ink-900:  #0F0F12;
  --ink-850:  #141418;
  --ink-800:  #1A1A20;
  --ink-700:  #232329;
  --ink-600:  #2E2E36;

  /* --- texto ------------------------------------------------------------ */
  --fog-50:   #FBFBFC;
  --fog-100:  #EDEDF0;
  --fog-300:  #C4C4CC;
  --fog-400:  #A0A0AA;
  --fog-500:  #82828D;
  --fog-600:  #5E5E68;

  /* --- marca ------------------------------------------------------------ */
  --brand:      #F38C23;
  --brand-lt:   #FFAE5C;
  --brand-soft: #FFC98F;
  --brand-dk:   #D2740F;
  --brand-deep: #8A4A05;

  /* --- traços e vidros -------------------------------------------------- */
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-brand:  rgba(243, 140, 35, 0.30);
  --glass:       rgba(255, 255, 255, 0.035);
  --glass-hi:    rgba(255, 255, 255, 0.07);

  /* --- brilhos ---------------------------------------------------------- */
  --glow-brand: 0 0 0 1px rgba(243, 140, 35, .25), 0 18px 60px -18px rgba(243, 140, 35, .45);
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, .3);
  --shadow-md:  0 12px 32px -8px rgba(0, 0, 0, .55);
  --shadow-lg:  0 34px 90px -28px rgba(0, 0, 0, .8);

  /* --- tipografia ------------------------------------------------------- */
  --font-display: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-text:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body:    clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --fs-lead:    clamp(1.08rem, 1rem + 0.42vw, 1.3rem);
  --fs-h6:      clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --fs-h5:      clamp(1.12rem, 1.05rem + 0.35vw, 1.3rem);
  --fs-h4:      clamp(1.3rem, 1.18rem + 0.6vw, 1.65rem);
  --fs-h3:      clamp(1.55rem, 1.32rem + 1.05vw, 2.25rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2.3vw, 3.4rem);
  --fs-h1:      clamp(2.5rem, 1.6rem + 4.1vw, 5.6rem);
  --fs-display: clamp(3rem, 1.6rem + 6.2vw, 8rem);

  /* --- ritmo ------------------------------------------------------------ */
  --gutter:    clamp(1.15rem, 0.8rem + 1.8vw, 2.5rem);
  --maxw:      1280px;
  --maxw-wide: 1560px;
  --maxw-text: 68ch;
  /* folga vertical de cada secao. Duas secoes seguidas somam as duas folgas,
     entao o valor aqui e metade do respiro que se ve entre elas */
  --section-y: clamp(3.5rem, 2.2rem + 4.6vw, 6.5rem);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* --- movimento -------------------------------------------------------- */
  --e-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --e-in:   cubic-bezier(0.55, 0, 1, 0.45);
  --e-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --e-back: cubic-bezier(0.34, 1.4, 0.5, 1);
  --t-fast: 0.22s;
  --t-mid:  0.45s;
  --t-slow: 0.9s;

  --header-h: 78px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

/* O atributo `hidden` do HTML vale menos que qualquer regra de display
   escrita aqui. Sem esta linha, um elemento com classe propria (um .btn,
   por exemplo) continua aparecendo mesmo escondido pelo JavaScript. */
[hidden] { display: none !important; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  background: var(--ink-950);
  color: var(--fog-100);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.66;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* clip em vez de hidden: hidden cria contexto de rolagem e quebra
     o position:sticky do indice lateral */
  overflow-x: hidden;
  overflow-x: clip;
}

body.is-locked { overflow: hidden; }

img, svg, video, canvas { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #12100D; }

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

/* barra de rolagem */
@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar { width: 11px; height: 11px; }
  ::-webkit-scrollbar-track { background: var(--ink-1000); }
  ::-webkit-scrollbar-thumb {
    background: var(--ink-700);
    border-radius: 99px;
    border: 3px solid var(--ink-1000);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--brand-dk); }
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 999;
  padding: 0.7rem 1.2rem;
  background: var(--brand);
  color: #14110C;
  font-weight: 700;
  border-radius: var(--r-sm);
  transform: translateY(-160%);
  transition: transform var(--t-fast) var(--e-out);
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   3. TIPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--fog-50);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.035em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); line-height: 1.2; }
h5 { font-size: var(--fs-h5); line-height: 1.3; }
h6 { font-size: var(--fs-h6); line-height: 1.4; }

p { text-wrap: pretty; }

.display {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--fog-300);
  font-weight: 400;
}

.muted   { color: var(--fog-400); }
.dim     { color: var(--fog-500); }
.accent  { color: var(--brand); }
.measure { max-width: var(--maxw-text); }
.tight   { line-height: 1.35; }

/* palavra em destaque com sublinhado desenhado */
.mark {
  position: relative;
  color: var(--brand);
  display: inline-block;
  white-space: nowrap;
}
.mark::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.04em;          /* abaixo da descendente do "p" de pessoas */
  height: 0.055em;
  background: var(--brand);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.05s var(--e-out) 0.5s;
}
.is-revealed .mark::after,
.reveal-done .mark::after { transform: scaleX(1); }

/* texto com preenchimento em gradiente */
.grad {
  background: linear-gradient(105deg, var(--fog-50) 12%, var(--brand-soft) 48%, var(--brand) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* emblema: icone de submarca dentro de um circulo com brilho */
.emblem {
  display: grid;
  place-items: center;
  width: clamp(64px, 7vw, 82px);
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--line-brand);
  background: rgba(243, 140, 35, .08);
  transition: transform var(--t-mid) var(--e-back), background-color var(--t-mid);
}
.emblem img { width: 52%; height: auto; }
.emblem svg { width: 42%; height: auto; color: var(--brand); }
.emblem:hover { transform: translateY(-3px) scale(1.05); background: rgba(243, 140, 35, .14); }

/* olho / eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-text);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand));
  border-radius: 2px;
  flex: none;
}
/* ocupa a linha inteira para conseguir centralizar de fato */
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  border-radius: 2px;
  flex: none;
}
.eyebrow--plain::before, .eyebrow--plain::after { display: none; }

/* ==========================================================================
   4. LAYOUT / GRID
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide   { max-width: var(--maxw-wide); }
.wrap--narrow { max-width: 900px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section-head { margin-bottom: clamp(2.5rem, 1.8rem + 2.4vw, 4.5rem); }
.section-head--center { text-align: center; }
.section-head--center .measure { margin-inline: auto; }
.section-head p { margin-top: 1.15rem; }

/* cabecalho de secao com titulo a esquerda + texto a direita */
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 1rem + 3vw, 4rem);
  align-items: end;
}
.section-head--split p { margin-top: 0; padding-bottom: 0.35rem; }

.grid { display: grid; gap: clamp(1rem, 0.7rem + 1.2vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }

.stack   { display: flex; flex-direction: column; gap: 1rem; }
.row     { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.row--gap-lg { gap: 1.5rem; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 22%, var(--line-strong) 78%, transparent);
  border: 0;
}

/* superficies alternadas */
.surface-900 { background: var(--ink-900); }
.surface-850 { background: var(--ink-850); }
.surface-deep {
  background: linear-gradient(180deg, var(--ink-950), var(--ink-1000) 60%, var(--ink-950));
}

/* brilho ambiente por tras de secoes */
.aura { position: relative; isolation: isolate; overflow: clip; }
.aura::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(1100px, 130%);
  aspect-ratio: 1;
  left: 50%;
  top: -35%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(243, 140, 35, .13), rgba(243, 140, 35, .04) 42%, transparent 68%);
  pointer-events: none;
}
.aura--bottom::before { top: auto; bottom: -45%; }
.aura--left::before   { left: -10%; transform: none; }
.aura--right::before  { left: auto; right: -18%; transform: none; }
.aura--soft::before   { opacity: 0.55; }

/* grade sutil de fundo */
.gridlines { position: relative; isolation: isolate; }
.gridlines::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 82% 62% at 50% 42%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 82% 62% at 50% 42%, #000 20%, transparent 78%);
  opacity: .75;
  pointer-events: none;
}

/* pontinhos */
.dots { position: relative; isolation: isolate; }
.dots::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}

/* ==========================================================================
   5. UTILITARIOS DE ANIMACAO
   ========================================================================== */

/* revelacao base — controlada por IntersectionObserver em js/main.js */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.85s var(--e-out) var(--reveal-delay, 0ms),
    transform 0.95s var(--e-out) var(--reveal-delay, 0ms),
    filter 0.85s var(--e-out) var(--reveal-delay, 0ms);
}
[data-reveal="up"]     { transform: translate3d(0, 34px, 0); }
[data-reveal="down"]   { transform: translate3d(0, -30px, 0); }
[data-reveal="left"]   { transform: translate3d(38px, 0, 0); }
[data-reveal="right"]  { transform: translate3d(-38px, 0, 0); }
[data-reveal="fade"]   { transform: none; }
[data-reveal="zoom"]   { transform: scale(0.9); }
[data-reveal="zoom-out"] { transform: scale(1.08); }
[data-reveal="blur"]   { filter: blur(14px); transform: translate3d(0, 18px, 0); }
[data-reveal="clip"]   { clip-path: inset(0 0 100% 0); transform: none; }
[data-reveal="rise"]   { transform: translate3d(0, 70px, 0) scale(0.97); }

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}
/* O recorte vale so para a revelacao do tipo "clip". Aplicado a todas, ele
   deixava cada bloco revelado recortando o proprio conteudo no retangulo da
   caixa: a sombra dos botoes e o deslocamento do efeito magnetico no hover
   eram cortados, e o botao arredondado aparecia dentro de um retangulo. */
[data-reveal="clip"].is-revealed { clip-path: inset(0 0 0 0); }

/* revelacao por linha de texto / palavra
   OBS: sem overflow:hidden — um titulo pode quebrar em varias linhas visuais
   dentro do mesmo bloco, e o clip cortaria as linhas seguintes. */
.split-line { display: block; }
.split-word {
  display: inline-block;
  transform: translate3d(0, 0.48em, 0);
  opacity: 0;
  transition:
    transform 0.95s var(--e-out) var(--word-delay, 0ms),
    opacity 0.66s var(--e-out) var(--word-delay, 0ms);
  will-change: transform;
}
.is-revealed .split-word,
.split-in .split-word { transform: none; opacity: 1; }

/* letras */
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 44%, 0);
  transition:
    transform 0.7s var(--e-back) var(--char-delay, 0ms),
    opacity 0.5s var(--e-out) var(--char-delay, 0ms);
}
.is-revealed .split-char { opacity: 1; transform: none; }

/* linha que se desenha */
.draw-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--e-out);
}
.is-revealed .draw-line { transform: scaleX(1); }

/* imagem com cortina */
.veil { position: relative; overflow: hidden; }
.veil > img, .veil > video {
  transform: scale(1.16);
  transition: transform 1.5s var(--e-out);
  will-change: transform;
}
.veil.is-revealed > img, .veil.is-revealed > video { transform: scale(1); }
.veil::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink-950);
  transform-origin: bottom;
  transition: transform 1.05s var(--e-out);
  z-index: 2;
}
.veil.is-revealed::after { transform: scaleY(0); }

/* flutuacao lenta */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.float { animation: float-y 7s var(--e-soft) infinite; }
.float--slow { animation-duration: 11s; }
.float--delay { animation-delay: -3.5s; }

/* pulso do brilho */
@keyframes pulse-glow {
  0%, 100% { opacity: .45; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.09); }
}

/* rotacao lenta */
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* barra de progresso de leitura */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-dk), var(--brand), var(--brand-soft));
  z-index: 300;
  pointer-events: none;
}

/* cursor personalizado */
/* preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  /* logo e barra formam um bloco so, centralizado na tela inteira. Antes a
     barra ficava presa ao fundo da tela e, num celular alto, se afastava
     do logo */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  background: var(--ink-1000);
  transition: opacity .7s var(--e-out), visibility .7s;
}
.preloader.is-gone { opacity: 0; visibility: hidden; }
.preloader__mark {
  width: clamp(64px, 9vw, 96px);
  animation: pl-pop 1.5s var(--e-out) infinite;
}
@keyframes pl-pop {
  0%, 100% { transform: scale(.86); opacity: .45; }
  50%      { transform: scale(1);   opacity: 1; }
}
.preloader__bar {
  width: min(160px, 42vw);
  height: 2px;
  background: var(--ink-700);
  border-radius: 99px;
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 30%;
  background: var(--brand);
  border-radius: 99px;
  animation: pl-slide 1.15s var(--e-soft) infinite;
}
@keyframes pl-slide {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(430%); }
}

/* ==========================================================================
   6. HEADER & NAVEGACAO
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--t-mid) var(--e-out),
              background-color var(--t-mid) var(--e-out),
              border-color var(--t-mid), backdrop-filter var(--t-mid);
  border-bottom: 1px solid transparent;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, .78), rgba(5, 5, 6, 0));
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.header.is-stuck {
  --header-h: 66px;
  background: rgba(10, 10, 12, .82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.header.is-stuck::before { opacity: 0; }
.header.is-hidden { transform: translateY(-102%); transition: transform .45s var(--e-in); }
/* com o cabecalho escondido, nenhum painel do menu fica visivel nem
   clicavel, mesmo que a classe de aberto demore um instante a sair */
.header.is-hidden .mega { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

.header__inner {
  width: 100%;
  max-width: var(--maxw-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand img { width: auto; height: clamp(30px, 3.4vw, 38px); transition: height var(--t-mid) var(--e-out); }
.header.is-stuck .brand img { height: clamp(27px, 3vw, 33px); }

/* --- nav desktop ------------------------------------------------------- */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.15rem, .9vw, 1rem); }
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .62rem .82rem;
  font-size: .935rem;
  font-weight: 500;
  color: var(--fog-300);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background-color var(--t-fast);
  white-space: nowrap;
}
.nav__link:hover, .nav__link:focus-visible { color: var(--fog-50); background: var(--glass); }
.nav__link[aria-current="page"] { color: var(--fog-50); }
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: .82rem; right: .82rem;
  bottom: .28rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}
/* Rotulo que alterna entre dois nomes (Solute Cast e Plantao RH).
   O sizer invisivel segura a largura do maior, para o resto do menu nao
   se mexer a cada troca. Os dois rotulos ficam sobrepostos. */
.swap {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  overflow: hidden;
}
.swap__sizer { visibility: hidden; }
.swap__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(70%);
  transition: opacity .34s var(--e-out), transform .34s var(--e-out);
}
.swap__item.is-on { opacity: 1; transform: none; }
.swap__item.is-out { opacity: 0; transform: translateY(-70%); }

@media (prefers-reduced-motion: reduce) {
  .swap__item { transition: none; }
}

.nav__caret {
  width: 9px; height: 9px;
  flex: none;
  opacity: .6;
  transition: transform var(--t-fast) var(--e-out);
}
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* --- mega menu --------------------------------------------------------- */
.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: max-content;
  max-width: min(940px, 92vw);
  padding: 1.1rem;
  background: rgba(16, 16, 19, .94);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--e-out), transform var(--t-fast) var(--e-out), visibility var(--t-fast);
}
.nav__item.is-open > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega__grid { display: grid; grid-template-columns: repeat(2, minmax(230px, 1fr)); gap: .3rem; }
.mega__grid--3 { grid-template-columns: repeat(3, minmax(210px, 1fr)); }

.mega__link {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .72rem .8rem;
  border-radius: var(--r-md);
  transition: background-color var(--t-fast);
}
.mega__link:hover { background: var(--glass-hi); }
.mega__ico {
  flex: none;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(243, 140, 35, .12);
  color: var(--brand);
  border: 1px solid var(--line-brand);
}
.mega__ico svg { width: 17px; height: 17px; }
.mega__txt strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--fog-50);
  letter-spacing: -.01em;
  line-height: 1.3;
}
.mega__txt span {
  display: block;
  font-size: .82rem;
  color: var(--fog-500);
  line-height: 1.45;
  margin-top: .12rem;
}
.mega__foot {
  margin-top: .7rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: .8rem;
  font-size: .86rem;
  color: var(--fog-400);
}

/* --- acoes do header --------------------------------------------------- */
.header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }

/* --- botao hamburguer -------------------------------------------------- */
.burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  place-items: center;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  flex: none;
}
.burger__bars { display: block; }
.burger__bars i {
  display: block;
  width: 19px; height: 1.7px;
  background: var(--fog-50);
  border-radius: 2px;
}
.burger__bars i + i { margin-top: 5px; }

/* estado aberto: troca as barras pelo icone de fechar da Solute */
.burger__bars, .burger__close {
  transition: opacity .25s var(--e-out), transform .35s var(--e-back);
}
.burger__close {
  position: absolute;
  top: 50%; left: 50%;
  width: 17px; height: 17px;
  margin: -8.5px 0 0 -8.5px;
  opacity: 0;
  transform: rotate(-90deg) scale(.6);
  pointer-events: none;
}
.burger.is-active .burger__bars { opacity: 0; transform: scale(.6); }
.burger.is-active .burger__close { opacity: 1; transform: rotate(0) scale(1); }

/* --- drawer mobile ----------------------------------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--ink-1000);
  padding: calc(var(--header-h) + 1.4rem) var(--gutter) 2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  clip-path: circle(0% at calc(100% - 44px) 40px);
  transition: clip-path .68s var(--e-out);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 44px) 40px); visibility: visible; }

.drawer__list { display: flex; flex-direction: column; }
.drawer__item { border-bottom: 1px solid var(--line); }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem .2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--fog-100);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s var(--e-out), transform .5s var(--e-out), color var(--t-fast);
}
.drawer.is-open .drawer__link { opacity: 1; transform: none; }
.drawer__link:hover { color: var(--brand); }
.drawer__link svg { width: 15px; height: 15px; opacity: .45; transition: transform var(--t-fast); flex: none; }
.drawer__item.is-open .drawer__link svg { transform: rotate(180deg); }

.drawer__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--e-out);
}
.drawer__item.is-open .drawer__sub { grid-template-rows: 1fr; }
.drawer__sub > div { overflow: hidden; }
.drawer__sub a {
  display: block;
  padding: .6rem .2rem .6rem 1.1rem;
  font-size: .96rem;
  color: var(--fog-400);
  border-left: 2px solid var(--line);
  margin-left: .2rem;
}
.drawer__sub a:hover { color: var(--brand); border-left-color: var(--brand); }
.drawer__sub > div > :last-child { margin-bottom: .8rem; }

.drawer__contact { display: grid; gap: .85rem; }
.drawer__contact a {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: var(--fog-300);
  transition: color var(--t-fast);
}
.drawer__contact a:hover { color: var(--brand); }
.drawer__contact svg { width: 17px; height: 17px; flex: none; color: var(--brand); }

.drawer__foot {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s var(--e-out) .28s, transform .5s var(--e-out) .28s;
}
.drawer.is-open .drawer__foot { opacity: 1; transform: none; }

/* ==========================================================================
   7. BOTOES & LINKS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  padding: .88rem 1.55rem;
  font-family: var(--font-text);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.2;
  border-radius: var(--r-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--t-fast) var(--e-out), filter var(--t-mid) var(--e-out),
              box-shadow var(--t-mid) var(--e-out),
              color var(--t-fast), background-color var(--t-fast), border-color var(--t-fast);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform var(--t-fast) var(--e-out); }
.btn:active { transform: scale(.97); }

/* Preenchimento primario.
   Sem pseudo-elementos: camadas em ::before/::after com z-index negativo
   dependem do overflow:hidden do botao para nao vazar, e essa combinacao
   com o transform do efeito magnetico faz o navegador falhar no recorte,
   deixando um retangulo escapando ao lado do botao. O degrade vive no
   proprio elemento e o hover so ajusta o brilho. */
.btn--primary {
  background: linear-gradient(100deg, var(--brand), var(--brand-lt));
  color: #16120C;
  box-shadow: 0 10px 30px -12px rgba(243, 140, 35, .7);
}
.btn--primary:hover {
  filter: brightness(1.07) saturate(1.04);
  box-shadow: 0 16px 44px -12px rgba(243, 140, 35, .85);
}
.btn--primary:hover svg { transform: translateX(3px); }

/* contorno */
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--fog-100);
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--line-brand);
  color: var(--fog-50);
  background: rgba(243, 140, 35, .1);
}
.btn--ghost:hover svg { transform: translateX(3px); }

/* solido claro */
.btn--light { background: var(--fog-50); color: var(--ink-950); }
.btn--light:hover { background: #fff; box-shadow: 0 14px 40px -14px rgba(255,255,255,.4); }
.btn--light:hover svg { transform: translateX(3px); }

/* em breve: informa sem prometer clique */
.btn--soon {
  border: 1px dashed var(--line-strong);
  color: var(--fog-500);
  background: transparent;
  cursor: default;
}
.btn--soon svg { opacity: .8; }

/* discreto */
.btn--quiet { color: var(--fog-300); padding-inline: .9rem; }
.btn--quiet:hover { color: var(--brand); }

.btn--sm { padding: .62rem 1.1rem; font-size: .875rem; }
.btn--lg { padding: 1.08rem 2rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }
.btn--icon { padding: .78rem; width: 44px; height: 44px; }
.btn--icon svg { width: 18px; height: 18px; }

/* link com seta */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--brand);
  position: relative;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--e-out); }
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid) var(--e-out);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow:hover svg { transform: translateX(4px); }

/* etiqueta / pill */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .36rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  color: var(--fog-300);
  white-space: nowrap;
  line-height: 1.35;
}
.tag svg, .tag img {
  width: 15px;
  height: 15px;
  flex: none;
  object-fit: contain;
}
.tag--brand {
  border-color: var(--line-brand);
  background: rgba(243, 140, 35, .1);
  color: var(--brand-lt);
}
.tag__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.tag__dot--live {
  background: var(--fog-600);
  box-shadow: none;
}
/* acende de verdade so durante a transmissao (terca, 09h as 12h) */
.is-live .tag__dot--live,
.live-tag.is-live .tag__dot--live {
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .7);
  animation: live-ping 2s var(--e-out) infinite;
}
/* selo de transmissao: so o texto e a bolinha, sem pilula */
.live-tag {
  border: 0;
  background: none;
  padding-inline: 0;
  color: var(--fog-400);
}
.live-tag.is-live { color: #7defb9; }
.ep.is-live { border-color: rgba(52, 211, 153, .4); }
.ep.is-live .ep__title { color: #7defb9; }
@keyframes live-ping {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, .65); }
  70%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100svh, 980px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(2rem, 5vh, 4rem));
  padding-bottom: clamp(2.5rem, 6vh, 5rem);
  overflow: clip;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.06);
  will-change: transform;
  /* a filmagem original e escura: levanta exposicao sem estourar o laranja */
  filter: brightness(1.62) contrast(1.05) saturate(0.9);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  /* vinheta central: escurece atras do texto e deixa o video respirar nas bordas */
  background:
    radial-gradient(ellipse 64% 60% at 50% 44%, rgba(5,5,6,.94) 0%, rgba(5,5,6,.72) 50%, rgba(5,5,6,.34) 100%),
    linear-gradient(180deg, rgba(5,5,6,.8) 0%, rgba(5,5,6,.34) 20%, rgba(5,5,6,.46) 66%, var(--ink-950) 100%);
}

/* brilho laranja do hero */
.hero__glow {
  position: absolute;
  z-index: -2;
  width: min(920px, 100%);
  aspect-ratio: 1;
  right: -12%;
  top: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,140,35,.28), rgba(243,140,35,.07) 40%, transparent 66%);
  filter: blur(28px);
  animation: pulse-glow 9s var(--e-soft) infinite;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__content { max-width: 62rem; }

/* --- hero centralizado -------------------------------------------------- */
.hero--center { text-align: center; }
.hero--center .hero__content {
  max-width: 62rem;
  margin-inline: auto;
}
.hero--center .hero__lead { margin-inline: auto; }
.hero--center .hero__cta { justify-content: center; }

/* selo de localizacao logo abaixo dos CTAs */
.hero__place {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.9rem;
  font-size: .84rem;
  color: var(--fog-400);
  letter-spacing: .01em;
}
.hero__place svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* a chamada da home tem tres linhas longas: escala propria, menor que o h1
   padrao, para nao estourar a largura em telas grandes */
.hero__title { margin-bottom: 1.5rem; font-size: clamp(2.1rem, 1.35rem + 3.2vw, 4.3rem); }
.hero__title .split-line + .split-line { margin-top: -0.04em; }

.hero__lead {
  max-width: 46rem;
  font-size: clamp(1.05rem, .98rem + .5vw, 1.32rem);
  color: var(--fog-300);
  line-height: 1.62;
}
.hero__lead strong { color: var(--fog-50); font-weight: 600; }

.hero__cta { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

/* faixa de estatisticas do hero */
.hero__stats {
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__stat {
  background: rgba(10, 10, 12, .55);
  padding: 1.15rem 1.25rem;
  transition: background-color var(--t-mid);
}
.hero__stat:hover { background: rgba(243, 140, 35, .08); }
.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--fog-50);
  white-space: nowrap;
}
/* filho direto: o <span> do contador vive dentro do <b> e nao pode virar bloco */
.hero__stat > span {
  display: block;
  margin-top: .4rem;
  font-size: .8rem;
  color: var(--fog-500);
  line-height: 1.35;
}

/* indicador de rolagem */
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .55rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fog-600);
  z-index: 2;
}
.scroll-cue__rail {
  width: 1px;
  height: 46px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.scroll-cue__rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--brand));
  animation: cue-run 2.1s var(--e-soft) infinite;
}
@keyframes cue-run {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* hero secundario (paginas internas) */
.hero-sub {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 7rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  overflow: clip;
  isolation: isolate;
}
.hero-sub__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-sub__bg img, .hero-sub__bg video { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.hero-sub__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,.86), rgba(5,5,6,.94) 55%, var(--ink-950));
}
.hero-sub__title { max-width: 22ch; }
.hero-sub .lead { max-width: 56ch; margin-top: 1.35rem; }

/* --- variante centralizada, com a foto de fundo mais presente ----------- */
.hero-sub--center {
  text-align: center;
  /* mais perto da navbar */
  padding-top: calc(var(--header-h) + clamp(1.8rem, 3.4vw, 3.2rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.hero-sub--center .crumbs { justify-content: center; }
.hero-sub--center .hero-sub__title { max-width: 20ch; margin-inline: auto; }
.hero-sub--center .lead { margin-inline: auto; }
.hero-sub--center .row { justify-content: center; }

/* foto de fundo com mais presença: sobe a opacidade e alivia a cortina */
.hero-sub--center .hero-sub__bg img,
.hero-sub--center .hero-sub__bg video {
  opacity: .62;
  /* a propria foto se dissolve na base, para nao existir corte reto
     entre esta secao e a seguinte */
  mask-image: linear-gradient(180deg, #000 0%, #000 52%, rgba(0,0,0,.55) 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, rgba(0,0,0,.55) 78%, transparent 100%);
}
.hero-sub--center .hero-sub__bg::after {
  background:
    /* o radial some nas bordas: se terminasse opaco, a base do hero ficaria
       mais escura que o fundo da pagina e criaria um degrau visivel */
    radial-gradient(ellipse 68% 72% at 50% 38%, rgba(5,5,6,.86) 0%, rgba(5,5,6,.6) 58%, transparent 100%),
    linear-gradient(180deg, rgba(5,5,6,.62) 0%, rgba(5,5,6,.4) 30%, rgba(5,5,6,.76) 68%, var(--ink-950) 92%);
}

/* aviso de conteudo provisorio: some quando o texto real entrar */
.draft-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.4rem;
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  border: 1px dashed rgba(240, 103, 74, .5);
  background: rgba(240, 103, 74, .08);
  color: #F0674A;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.draft-note svg { width: 14px; height: 14px; flex: none; }

/* migalhas */
.crumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--fog-500);
  margin-bottom: 1.5rem;
}
.crumbs a:hover { color: var(--brand); }
.crumbs svg { width: 11px; height: 11px; opacity: .5; }
.crumbs [aria-current] { color: var(--fog-300); }

/* ==========================================================================
   9. MARQUEE
   ========================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-run var(--marquee-dur, 46s) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--rev .marquee__track { animation-direction: reverse; }
@keyframes marquee-run {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-right: clamp(2rem, 4vw, 4rem);
  /* respiro vertical para o hover levantar o item sem ser cortado */
  padding-block: 14px;
  flex: none;
}

/* logotipos de clientes */
/* Quadrado preenchido: parte das logos vem recortada em fundo branco e parte
   vem como tile de marca ja colorido. Deixando a imagem ocupar a moldura
   inteira, os dois tipos ficam com a mesma aparencia. */
.client-logo {
  flex: none;
  width: clamp(88px, 9.5vw, 116px);
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--fog-50);
  filter: grayscale(1);
  opacity: .5;
  transition: filter var(--t-mid) var(--e-out), opacity var(--t-mid), transform var(--t-mid) var(--e-out);
}
.client-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.client-logo:hover { filter: none; opacity: 1; transform: translateY(-4px) scale(1.05); }

/* marquee tipografica */
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 5.6rem);
  font-weight: 800;
  /* espacamento normal: com letter-spacing negativo as letras colidiam */
  letter-spacing: -.012em;
  line-height: 1.12;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .085);
  white-space: nowrap;
}
.marquee-text .accent { color: rgba(243, 140, 35, .5); }
.marquee__group--text { gap: 0; padding-right: 0; }
.marquee__group--text > span { padding-inline: .35em; }

/* ==========================================================================
   10. CARDS & SECOES
   ========================================================================== */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 1.1rem + 1vw, 2.1rem);
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-mid) var(--e-out),
              border-color var(--t-mid), background-color var(--t-mid),
              box-shadow var(--t-mid) var(--e-out);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(243,140,35,.13), transparent 62%);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-brand);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }

.card__ico {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1.15rem;
  background: linear-gradient(145deg, rgba(243,140,35,.18), rgba(243,140,35,.05));
  border: 1px solid var(--line-brand);
  color: var(--brand);
  flex: none;
  transition: transform var(--t-mid) var(--e-back), background-color var(--t-mid);
}
.card__ico svg { width: 23px; height: 23px; }
.card:hover .card__ico { transform: translateY(-2px) rotate(-6deg) scale(1.06); }

.card__title { font-size: var(--fs-h5); margin-bottom: .6rem; }
.card__text { color: var(--fog-400); font-size: .945rem; line-height: 1.62; }
.card__foot { margin-top: auto; padding-top: 1.3rem; }

/* numero grande de fundo no card */
.card__num {
  position: absolute;
  top: -.3rem; right: .4rem;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, .035);
  z-index: -1;
  transition: color var(--t-mid);
  pointer-events: none;
}
.card:hover .card__num { color: rgba(243, 140, 35, .1); }

/* --- card de servico com foto ------------------------------------------ */
.svc {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.svc:hover { transform: translateY(-6px); border-color: var(--line-brand); box-shadow: var(--shadow-lg); }

.svc__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--e-out), filter var(--t-mid);
  filter: saturate(.8) brightness(.88);
}
.svc:hover .svc__media img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.svc__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.15) 0%, rgba(10,10,12,.55) 48%, rgba(10,10,12,.97) 100%);
}

.svc__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(1.15rem, 1rem + .7vw, 1.7rem);
}
.svc__kicker {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
  display: block;
}
.svc__title {
  font-size: clamp(1.1rem, 1rem + .45vw, 1.32rem);
  line-height: 1.22;
  margin-bottom: .55rem;
}
.svc__text {
  font-size: .89rem;
  line-height: 1.55;
  color: var(--fog-400);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .55s var(--e-out), opacity .4s var(--e-out), margin-bottom .55s var(--e-out);
}
.svc:hover .svc__text, .svc:focus-visible .svc__text { max-height: 9rem; opacity: 1; }

.svc__go {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .9rem;
  font-size: .87rem;
  font-weight: 600;
  color: var(--fog-100);
}
.svc__go svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--e-out); }
.svc:hover .svc__go { color: var(--brand); }
.svc:hover .svc__go svg { transform: translateX(4px); }

/* --- grade recolhida no celular ("ver mais") ----------------------------- */
/* No desktop tudo aparece e o botao some. Em telas pequenas mostramos so os
   primeiros itens para a pessoa nao precisar rolar uma lista enorme. */
.collapse-more { display: none; justify-content: center; margin-top: 1.7rem; }
.collapse-more .btn svg { transition: transform var(--t-mid) var(--e-out); }
.collapse-more .btn[aria-expanded="true"] svg { transform: rotate(180deg); }

@media (max-width: 720px) {
  .collapse-more { display: flex; }
  .collapsible > :nth-child(n + 4) { display: none; }
  .collapsible.is-expanded > :nth-child(n + 4) { display: revert; }
}

/* --- card de pilar / divisao -------------------------------------------- */
.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 1.2rem + 1.4vw, 2.5rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.012) 45%),
    var(--ink-900);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.pillar::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 340px; aspect-ratio: 1;
  right: -130px; bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,140,35,.3), transparent 65%);
  opacity: .5;
  transition: opacity var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out);
}
.pillar:hover { transform: translateY(-7px); border-color: var(--line-brand); box-shadow: var(--shadow-lg); }
.pillar:hover::after { opacity: 1; transform: scale(1.35) translate(-14px, -22px); }

.pillar__logo {
  height: 38px;
  width: auto;
  max-width: min(230px, 68%);
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.5rem;
}
.pillar__title { font-size: var(--fs-h4); margin-bottom: .75rem; }
.pillar__text { color: var(--fog-400); font-size: .95rem; }
.pillar__list { margin: 1.35rem 0 0; display: grid; gap: .6rem; }
.pillar__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--fog-300);
  line-height: 1.5;
}
.pillar__list svg { width: 15px; height: 15px; color: var(--brand); flex: none; margin-top: .22rem; }
.pillar__foot { margin-top: auto; padding-top: 1.6rem; }

/* --- painel de destaque ------------------------------------------------- */
.panel {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--ink-900);
  overflow: hidden;
  isolation: isolate;
}
.panel--brand {
  border-color: var(--line-brand);
  background:
    radial-gradient(700px circle at 84% 4%, rgba(243,140,35,.2), transparent 58%),
    linear-gradient(150deg, var(--ink-850), var(--ink-950));
}
.panel__inner { padding: clamp(1.8rem, 1.2rem + 2.6vw, 4rem); }

/* --- media + texto lado a lado ----------------------------------------- */
.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 1.2rem + 4vw, 5.5rem);
  align-items: center;
}
.duo--reverse > :first-child { order: 2; }
.duo--tight { gap: clamp(1.5rem, 1rem + 2.5vw, 3.5rem); }
.duo--top { align-items: start; }

.figure {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-850);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
/* As fotos dos servicos sao retrato (4:5) e aqui aparecem deitadas (16:11).
   Centralizado, o corte comia a cabeca das pessoas: o ponto de foco sobe
   para a altura dos rostos. */
.figure__crop {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 26%;
}

.figure--portrait { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1; }

/* moldura decorativa da figura */
.figure-frame { position: relative; }
.figure-frame::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-brand);
  border-radius: var(--r-xl);
  z-index: -1;
}

/* selo flutuante sobre a foto */
.badge-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.15rem;
  border-radius: var(--r-lg);
  background: rgba(14, 14, 17, .84);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.badge-float b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand);
}
.badge-float span { display: block; font-size: .78rem; color: var(--fog-400); line-height: 1.35; max-width: 13ch; }
.badge-float--br { right: clamp(-14px, -1vw, 0px); bottom: 22px; }
.badge-float--bl { left: clamp(-14px, -1vw, 0px); bottom: 22px; }
.badge-float--tr { right: clamp(-14px, -1vw, 0px); top: 22px; }

/* --- grade de dores (secao "diagnostico honesto") ----------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.9rem, .7rem + .8vw, 1.4rem);
}
.pain {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: clamp(1.15rem, 1rem + .6vw, 1.6rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-900);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--fog-300);
  transition: border-color var(--t-mid), transform var(--t-mid) var(--e-out), background-color var(--t-mid);
}
.pain:hover { border-color: rgba(240, 103, 74, .35); transform: translateY(-3px); background: var(--ink-850); }
.pain svg { width: 20px; height: 20px; flex: none; margin-top: .16rem; color: #F0674A; }
.pain strong { color: var(--fog-50); font-weight: 600; }

/* mesma grade, sentido positivo (listas de "para quem e") */
.pain--ok svg { color: var(--brand); }
.pain--ok:hover { border-color: var(--line-brand); }

/* --- processo em cartoes conectados ------------------------------------- */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, .7rem + 1.2vw, 1.7rem);
  isolation: isolate;
}
/* linha tracejada atras dos cartoes: so aparece nos vaos entre eles */
.process::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: calc(clamp(1.4rem, 1.15rem + .9vw, 2rem) + 23px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--line-brand) 0 7px, transparent 7px 14px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s var(--e-out) .2s;
}
.process.is-revealed::before,
.process:has(.is-revealed)::before { transform: scaleX(1); }
.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 1.15rem + .9vw, 2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,.05), transparent 55%), var(--ink-950);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.process__step:hover { transform: translateY(-6px); border-color: var(--line-brand); box-shadow: var(--shadow-md); }

.process__num {
  position: absolute;
  top: .1rem; right: .75rem;
  z-index: -1;
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: rgba(255, 255, 255, .045);
  transition: color var(--t-mid);
  pointer-events: none;
}
.process__step:hover .process__num { color: rgba(243, 140, 35, .13); }

.process__ico {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  margin-bottom: 1.2rem;
  background: linear-gradient(145deg, rgba(243,140,35,.18), rgba(243,140,35,.05));
  border: 1px solid var(--line-brand);
  color: var(--brand);
  flex: none;
  transition: transform var(--t-mid) var(--e-back);
}
.process__ico svg { width: 21px; height: 21px; }
.process__step:hover .process__ico { transform: translateY(-2px) rotate(-7deg) scale(1.07); }

.process__title { font-size: var(--fs-h5); margin-bottom: .55rem; }
.process__text { font-size: .92rem; color: var(--fog-400); line-height: 1.6; }
.process__meta {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  margin-top: auto;
  padding-top: 1.3rem;
  font-size: .79rem;
  color: var(--fog-500);
}
.process__meta svg { width: 13px; height: 13px; color: var(--brand); flex: none; }

/* --- vitrine: video vertical + foto sobreposta -------------------------- */
.showcase { position: relative; padding-left: clamp(0px, 3vw, 42px); }
.showcase__video {
  position: relative;
  border-radius: clamp(20px, 2vw, 30px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
  background: var(--ink-850);
  box-shadow: var(--shadow-lg), 0 0 70px -22px rgba(243, 140, 35, .32);
  isolation: isolate;
}
.showcase__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: brightness(1.22) contrast(1.04) saturate(.95);
}
.showcase__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,.3) 0%, transparent 24%, transparent 62%, rgba(5,5,6,.82) 100%);
  pointer-events: none;
}
.showcase__tag {
  position: absolute;
  z-index: 2;
  right: clamp(.9rem, 1.4vw, 1.3rem);
  bottom: clamp(.9rem, 1.4vw, 1.3rem);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--fog-100);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .9);
}
.showcase__tag svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

.showcase__photo {
  position: absolute;
  z-index: 3;
  left: clamp(-18px, -1.4vw, 0px);
  bottom: clamp(38px, 6vw, 76px);
  width: clamp(148px, 17vw, 218px);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  background: var(--ink-850);
}
.showcase__photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* limita a altura de retratos grandes (foto da Rose) */
.portrait-cap { max-width: 430px; margin-inline: auto; }

/* --- lista de checagem -------------------------------------------------- */
.checks { display: grid; gap: .85rem; }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .97rem;
  line-height: 1.55;
  color: var(--fog-300);
}
.checks svg {
  width: 20px; height: 20px;
  flex: none;
  margin-top: .12rem;
  color: var(--brand);
}
.checks strong { color: var(--fog-50); font-weight: 600; }

/* lista de dores (x vermelho) */
.pains li svg { color: #F0674A; }

/* --- equipe (quem somos) ------------------------------------------------ */
.team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, .7rem + 1.2vw, 1.7rem);
}

.person {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.6rem, 1.3rem + 1vw, 2.2rem) clamp(1.1rem, .9rem + .8vw, 1.6rem) clamp(1.6rem, 1.3rem + 1vw, 2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255,255,255,.045), transparent 55%), var(--ink-900);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.person::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: auto 0 auto 50%;
  top: -70px;
  width: 240px; aspect-ratio: 1;
  margin-left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,140,35,.3), transparent 62%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--e-out);
}
.person:hover {
  transform: translateY(-6px);
  border-color: var(--line-brand);
  box-shadow: var(--shadow-md);
}
.person:hover::before { opacity: 1; }

/* foto redonda com anel */
.person__ring {
  position: relative;
  display: block;
  width: clamp(104px, 11vw, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 3px;
  margin-bottom: 1.2rem;
  background: linear-gradient(150deg, var(--line-strong), transparent 55%);
  transition: background var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-back);
}
.person:hover .person__ring {
  background: linear-gradient(150deg, var(--brand), var(--brand-deep) 70%);
  transform: scale(1.05);
}
.person__ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  background: var(--ink-850);
  filter: saturate(.9) brightness(.96);
  transition: filter var(--t-mid);
}
.person:hover .person__ring img { filter: none; }

.person__tag {
  display: inline-block;
  padding: .28rem .72rem;
  margin-bottom: .95rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-brand);
  background: rgba(243, 140, 35, .1);
  color: var(--brand-lt);
  white-space: nowrap;
}
.person__name {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: .4rem;
}
.person__role {
  font-size: .82rem;
  color: var(--fog-300);
  line-height: 1.45;
  margin-bottom: .85rem;
}
.person__text {
  font-size: .86rem;
  color: var(--fog-500);
  line-height: 1.55;
  margin-top: auto;
  padding-top: .2rem;
}

/* fundadores com um leve destaque */
.person--founder { border-color: var(--line-brand); }
.person--founder .person__ring { background: linear-gradient(150deg, var(--brand), transparent 62%); }

/* card de vagas */
.person--open {
  border-style: dashed;
  border-color: var(--line-brand);
  background: linear-gradient(170deg, rgba(243,140,35,.09), transparent 58%), var(--ink-900);
}
.person--open .person__ring img { object-position: center; }
.person__cta { margin-top: 1.3rem; }

/* --- caixa de citacao --------------------------------------------------- */
.quote-box {
  position: relative;
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-900);
}
.quote-box::before {
  content: '"';
  position: absolute;
  top: -.1em; left: .35rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(243, 140, 35, .16);
  pointer-events: none;
}

/* variante centralizada, sem as aspas decorativas */
.quote-box--center {
  max-width: 74ch;
  margin: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem) auto 0;
  text-align: center;
  border-color: var(--line-brand);
  background: linear-gradient(160deg, rgba(243,140,35,.08), transparent 60%), var(--ink-900);
}
.quote-box--center::before { display: none; }
.quote-box--center p { font-size: 1.02rem; color: var(--fog-300); }
.quote-box--center strong { color: var(--brand); font-weight: 600; }

/* ==========================================================================
   11. NUMEROS / STATS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.6vw, 2.2rem);
}
.stat { position: relative; padding-top: 1.15rem; text-align: center; }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 42px; height: 2px;
  margin-left: -21px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  transform: scaleX(0);
  transition: transform .9s var(--e-out) var(--reveal-delay, 0ms);
}
.stat.is-revealed::before, .is-revealed .stat::before { transform: scaleX(1); }

.stat__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .06em;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4.6rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.055em;
  color: var(--fog-50);
}
.stat__num .pre, .stat__num .suf { color: var(--brand); }
.stat__label {
  margin-top: .75rem;
  margin-inline: auto;
  font-size: .9rem;
  color: var(--fog-400);
  line-height: 1.45;
  max-width: 22ch;
}

/* variante em cartao */
.stat-card {
  padding: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255,255,255,.045), transparent 60%), var(--ink-900);
  text-align: center;
  transition: border-color var(--t-mid), transform var(--t-mid) var(--e-out);
}
.stat-card:hover { border-color: var(--line-brand); transform: translateY(-4px); }
.stat-card .stat__num { justify-content: center; }
.stat-card .stat__label { margin-inline: auto; text-align: center; }

/* ==========================================================================
   12. TIMELINE / METODO
   ========================================================================== */
.steps { position: relative; display: grid; gap: clamp(1.6rem, 1rem + 2vw, 2.8rem); }
.steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}
.steps__progress {
  position: absolute;
  left: 27px; top: 12px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dk));
  height: 0;
  transition: height .18s linear;
  box-shadow: 0 0 14px rgba(243, 140, 35, .55);
}

.step { position: relative; display: flex; gap: clamp(1.1rem, .8rem + 1vw, 1.9rem); }
.step__dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-850);
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--fog-400);
  transition: background-color var(--t-mid), color var(--t-mid), border-color var(--t-mid), transform var(--t-mid) var(--e-back);
}
.step.is-revealed .step__dot {
  background: var(--brand);
  border-color: var(--brand);
  color: #16120C;
  transform: scale(1.06);
}
.step__body { padding-top: .4rem; padding-bottom: .3rem; }
.step__title { font-size: var(--fs-h5); margin-bottom: .5rem; }
.step__text { color: var(--fog-400); font-size: .95rem; max-width: 62ch; }
.step__meta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .8rem;
  font-size: .8rem;
  color: var(--fog-500);
}
.step__meta svg { width: 13px; height: 13px; color: var(--brand); }

/* timeline horizontal (variante) */
.steps--h { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.steps--h::before, .steps--h .steps__progress { display: none; }
.steps--h .step { flex-direction: column; gap: 1.1rem; }
.steps--h .step::after {
  content: '';
  position: absolute;
  /* centro real da bolinha (56px de altura) e para 14px antes da proxima,
     para a linha nao encostar no circulo seguinte */
  top: 28px;
  left: 68px;
  right: -10px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.steps--h .step:last-child::after { display: none; }
/* sem o zoom da variante vertical: aqui a bolinha fica colada na borda do
   container e qualquer escala a faria vazar para fora da coluna */
.steps--h .step.is-revealed .step__dot { transform: none; }

/* ==========================================================================
   13. DEPOIMENTOS
   ========================================================================== */
/* carrossel automatico de depoimentos (pausa no hover) */
.marquee--cards .marquee__group {
  align-items: stretch;
  gap: clamp(1rem, .7rem + 1vw, 1.6rem);
  padding-right: clamp(1rem, .7rem + 1vw, 1.6rem);
  padding-block: 6px;
}
.marquee--cards { mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }

.tstm-viewport { overflow: hidden; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.tstm-track {
  display: flex;
  gap: clamp(1rem, .7rem + 1vw, 1.6rem);
  transition: transform .68s var(--e-out);
  will-change: transform;
}
.tstm {
  flex: 0 0 clamp(290px, 78vw, 420px);
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.05), transparent 55%), var(--ink-900);
  transition: border-color var(--t-mid), transform var(--t-mid) var(--e-out);
}
.tstm:hover { border-color: var(--line-brand); }
.tstm__stars { display: flex; gap: .18rem; margin-bottom: 1.15rem; color: var(--brand); }
.tstm__stars svg { width: 16px; height: 16px; }
.tstm__quote {
  font-size: 1.03rem;
  line-height: 1.62;
  color: var(--fog-100);
  flex: 1;
}
.tstm__quote::before { content: '\201C'; }
.tstm__quote::after  { content: '\201D'; }
.tstm__who { display: flex; align-items: center; gap: .85rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.tstm__ava {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-brand);
  flex: none;
}
/* logo de empresa como avatar: preenche o circulo inteiro */
.tstm__ava--logo { object-fit: cover; background: var(--fog-50); }

.tstm__ava--ph {
  display: grid;
  place-items: center;
  background: rgba(243,140,35,.14);
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
/* nome e cargo em linhas proprias: como spans inline, o cargo emendava no
   nome e a quebra voltava para baixo do avatar */
.tstm__who > span { min-width: 0; }
.tstm__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  color: var(--fog-50);
  line-height: 1.3;
}
.tstm__role {
  display: block;
  margin-top: .1rem;
  font-size: .82rem;
  color: var(--fog-500);
  line-height: 1.4;
}

.slider-nav { display: flex; align-items: center; gap: .55rem; }
.slider-btn {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--fog-300);
  background: var(--glass);
  transition: all var(--t-fast) var(--e-out);
}
.slider-btn svg { width: 17px; height: 17px; }
.slider-btn:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); background: rgba(243,140,35,.1); }
.slider-btn:disabled { opacity: .3; cursor: not-allowed; }

.slider-dots { display: flex; gap: .4rem; align-items: center; }
.slider-dots button {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: var(--ink-600);
  transition: all var(--t-mid) var(--e-out);
}
.slider-dots button[aria-selected="true"] { width: 26px; background: var(--brand); }

/* ==========================================================================
   14. VALORES
   ========================================================================== */
/* seis valores: duas fileiras de tres */
.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.value {
  position: relative;
  padding: clamp(1.3rem, 1rem + 1.1vw, 2rem);
  background: var(--ink-900);
  transition: background-color var(--t-mid) var(--e-out);
  isolation: isolate;
  overflow: hidden;
}
.value::before {
  content: '';
  position: absolute;
  inset: auto auto -60% -20%;
  width: 180px; aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,140,35,.28), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--e-out), transform var(--t-mid) var(--e-out);
}
.value:hover { background: var(--ink-850); }
.value:hover::before { opacity: 1; transform: translate(20px, -18px); }
.value__ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  margin-bottom: 1rem;
  color: var(--brand);
  background: rgba(243,140,35,.1);
  border: 1px solid var(--line-brand);
  transition: transform var(--t-mid) var(--e-back);
}
.value__ico svg { width: 19px; height: 19px; }
.value:hover .value__ico { transform: rotate(-8deg) scale(1.08); }
.value h3 { font-size: 1.02rem; margin-bottom: .4rem; letter-spacing: -.02em; }
.value p { font-size: .855rem; color: var(--fog-500); line-height: 1.5; }

/* ==========================================================================
   15. FAIXAS DE CTA
   ========================================================================== */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 1.4rem + 3.6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  border: 1px solid var(--line-brand);
  background:
    radial-gradient(760px circle at 50% -10%, rgba(243,140,35,.25), transparent 60%),
    linear-gradient(165deg, var(--ink-850), var(--ink-1000));
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 72%);
}
.cta-band__title { max-width: 20ch; margin-inline: auto; }
.cta-band .lead { max-width: 54ch; margin: 1.3rem auto 0; }
.cta-band__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.cta-band__note { margin-top: 1.5rem; font-size: .84rem; color: var(--fog-500); }

/* faixa full-bleed com video */
.band-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(4rem, 3rem + 6vw, 8rem);
}
.band-video__media { position: absolute; inset: 0; z-index: -2; }
.band-video__media video, .band-video__media img { width: 100%; height: 100%; object-fit: cover; }
.band-video__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink-950), rgba(5,5,6,.72) 30%, rgba(5,5,6,.72) 70%, var(--ink-950));
}

/* cartao do Solute Cast (home) */
.cast-card {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  /* padding generoso: a onda do play precisa de espaco para nao ser cortada */
  padding: clamp(2.6rem, 2rem + 2.6vw, 4rem) clamp(1.5rem, 1.2rem + 2vw, 3rem);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(520px circle at 50% 108%, rgba(243,140,35,.16), transparent 62%),
    linear-gradient(150deg, var(--ink-850), var(--ink-1000));
  overflow: visible;
}
.cast-card__logo { width: min(300px, 62%); height: auto; }

/* Card com video. O card continua com overflow visivel, para a onda do play
   nao ser cortada; quem recorta o video nos cantos e a camada de fundo. */
.cast-card--video { isolation: isolate; overflow: visible; }
.cast-card__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  overflow: hidden;
  background: var(--ink-1000);
}
.cast-card__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* o quadro parado ja aparece antes de tocar, e fica para quem pede
     menos movimento, que nao ve o video andar */
  opacity: .6;
  transform: scale(1.04);
  transition: opacity 1.1s var(--e-out), transform 6s linear;
}
.cast-card__bg.is-playing video { opacity: .92; transform: scale(1); }
/* escurece o centro para o logo e o play continuarem legiveis sobre o video */
.cast-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 40% at 50% 38%, rgba(10,10,12,.62), rgba(10,10,12,.22) 75%, transparent),
    linear-gradient(180deg, rgba(10,10,12,.1) 40%, rgba(10,10,12,.82));
}

.cast-card__ep {
  display: grid;
  gap: .25rem;
  max-width: 44ch;
  margin-top: -.6rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, .92rem + .35vw, 1.18rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fog-50);
  text-wrap: balance;
}
.cast-card__ep span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}

/* --------------------------------------------------------------------------
   Plantao e Solute Cast lado a lado (dois cards, dois visuais)
   -------------------------------------------------------------------------- */
.channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.4vw, 1.6rem);
  align-items: stretch;
}
@media (max-width: 860px) { .channels { grid-template-columns: minmax(0, 1fr); } }

.channel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--ink-850), var(--ink-1000));
  overflow: hidden;
}
.channel__media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.1rem;
  overflow: hidden;
}
.channel__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  margin: 0;
  padding: .38rem .8rem;
  border-radius: var(--r-pill);
  background: rgba(10,10,12,.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  font-size: .78rem;
  z-index: 2;
}

/* Plantao: foto da Rose, que apresenta a aula. Sem brilho nem letreiro:
   o visual segue o do card do Cast, que tambem e imagem real */
.channel--live .channel__media { background: var(--ink-1000); }
.channel__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.channel--live .channel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,12,.35), transparent 35%, transparent 70%, rgba(10,10,12,.55));
}

/* Cast: o programa e o visual */
.channel__logo { width: min(210px, 52%); height: auto; }
.play-btn--sm { width: clamp(56px, 6vw, 68px); }

.channel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: clamp(1.3rem, 1rem + 1.2vw, 1.9rem);
}
.channel__kicker {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.channel__title { font-size: clamp(1.4rem, 1.15rem + .9vw, 1.8rem); line-height: 1.12; }
.channel__text { color: var(--fog-400); font-size: .95rem; line-height: 1.6; }
.channel__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  font-size: .85rem;
  color: var(--fog-300);
}
.channel__facts li { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.channel__facts svg { width: 15px; height: 15px; color: var(--brand); flex: none; }
.channel__ep {
  display: grid;
  gap: .2rem;
  padding: .8rem .95rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fog-100);
}
.channel__ep span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }
/* o botao vai para o pe do card, alinhado entre os dois */
.channel__cta { margin-top: auto; padding-top: .5rem; }
@media (max-width: 520px) { .channel__cta .btn { width: 100%; justify-content: center; } }


.cast-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--fog-500);
}
.cast-card__meta svg { width: 14px; height: 14px; color: var(--brand); flex: none; }
.cast-card__meta > [aria-hidden] { color: var(--ink-600); }
/* icone e texto de cada item quebram juntos */
.cast-card__it { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }

/* selo de transmissao centralizado */
.live-tag--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .86rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

/* botao de play */
.play-btn {
  position: relative;
  width: clamp(66px, 8vw, 88px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #16120C;
  flex: none;
  transition: transform var(--t-mid) var(--e-back);
}
.play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.play-btn::before, .play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(243, 140, 35, .55);
  animation: play-ripple 2.6s var(--e-out) infinite;
}
.play-btn::after { animation-delay: 1.3s; }
.play-btn:hover { transform: scale(1.09); }
@keyframes play-ripple {
  0%   { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ==========================================================================
   16. FORMULARIOS
   ========================================================================== */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .5rem; }
.field--half { grid-column: span 1; }

.label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--fog-300);
  letter-spacing: .005em;
}
.label .req { color: var(--brand); }

.input, .textarea, .select {
  width: 100%;
  padding: .88rem 1.05rem;
  font-size: .96rem;
  color: var(--fog-50);
  background: var(--ink-850);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--fog-600); }
/* No iPhone, campo com fonte menor que 16px faz o Safari dar zoom na tela
   ao tocar. Em tela de toque a fonte sobe para 16px. */
@media (hover: none), (max-width: 780px) {
  .input, .textarea, .select { font-size: 16px; }
}
.input:hover, .textarea:hover, .select:hover { border-color: rgba(255,255,255,.24); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--ink-800);
  box-shadow: 0 0 0 3px rgba(243, 140, 35, .16);
}
.textarea { min-height: 138px; resize: vertical; line-height: 1.6; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382828D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.select option { background: var(--ink-850); color: var(--fog-50); }

.check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .87rem;
  color: var(--fog-400);
  line-height: 1.5;
  cursor: pointer;
}
.check input {
  appearance: none;
  flex: none;
  width: 19px; height: 19px;
  margin-top: .1rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--ink-850);
  cursor: pointer;
  transition: all var(--t-fast) var(--e-out);
  position: relative;
}
.check input:checked { background: var(--brand); border-color: var(--brand); }
.check input:checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #16120C;
  border-width: 0 2.2px 2.2px 0;
  transform: rotate(43deg);
}
.check a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: .82rem; color: var(--fog-500); }
.form-msg {
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  font-size: .9rem;
  border: 1px solid var(--line-brand);
  background: rgba(243, 140, 35, .1);
  color: var(--brand-soft);
}

/* --------------------------------------------------------------------------
   Pop-up de pergunta do Solute Cast (<dialog> nativo: prende o foco, fecha
   no Esc e devolve o foco ao botao sozinho)
   -------------------------------------------------------------------------- */
.ask {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--ink-850), var(--ink-1000));
  color: var(--fog-100);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.9);
  overflow: auto;
  overscroll-behavior: contain;
}
.ask::backdrop { background: rgba(5,5,6,.72); backdrop-filter: blur(6px); }
.ask[open] { animation: ask-in .38s var(--e-out); }
@keyframes ask-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }

.ask__box { position: relative; padding: clamp(1.5rem, 1.1rem + 2vw, 2.4rem); }
.ask__form { display: grid; gap: 1.05rem; }
.ask__form .eyebrow { margin: 0; }
.ask__title {
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
  line-height: 1.15;
  margin: -.2rem 0 0;
  padding-right: 2.6rem;
}
.ask__lead { color: var(--fog-400); font-size: .95rem; line-height: 1.55; margin: -.25rem 0 .35rem; }
.ask__close {
  position: absolute;
  top: .9rem; right: .9rem;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink-900);
  color: var(--fog-300);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.ask__close:hover { color: var(--fog-50); border-color: var(--line-strong); }
.ask__close svg { width: 18px; height: 18px; }
.ask__count { justify-self: end; font-size: .75rem; color: var(--fog-600); margin-top: -.2rem; }
.ask__count.is-near { color: var(--brand); }
.ask__send { width: 100%; justify-content: center; margin-top: .3rem; }
.ask__send[disabled] { opacity: .6; cursor: progress; }
.ask__msg a:not(.btn) { color: var(--brand-lt); font-weight: 600; text-decoration: underline; }
.ask__msg .btn { margin-top: .8rem; }
.ask .input[aria-invalid="true"], .ask .textarea[aria-invalid="true"] { border-color: #F0674A; }

/* campo-isca contra robos: fora da tela, mas presente para eles */
.ask__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ask__done { display: grid; justify-items: center; text-align: center; gap: 1rem; padding: 1.2rem 0 .4rem; }
.ask__done .ask__title { padding-right: 0; }
.ask__done-ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(243,140,35,.12);
  color: var(--brand);
}
.ask__done-ico svg { width: 30px; height: 30px; }

/* no celular vira uma folha que sobe de baixo, mais facil de alcancar */
@media (max-width: 640px) {
  .ask {
    width: 100%;
    max-width: none;
    max-height: 92dvh;
    margin: auto 0 0;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    border-bottom: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .ask[open] { animation: ask-up .4s var(--e-out); }
  @keyframes ask-up { from { transform: translateY(100%); } }
}
@media (prefers-reduced-motion: reduce) { .ask[open] { animation: none; } }

/* ==========================================================================
   17. ACORDEAO / FAQ
   ========================================================================== */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem .2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--fog-100);
  transition: color var(--t-fast);
}
.acc__btn:hover { color: var(--brand); }
.acc__ico {
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: all var(--t-mid) var(--e-out);
}
.acc__ico::before, .acc__ico::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-mid) var(--e-out), opacity var(--t-mid);
}
.acc__ico::before { width: 11px; height: 1.6px; }
.acc__ico::after  { width: 1.6px; height: 11px; }
.acc__item.is-open .acc__ico { background: var(--brand); border-color: var(--brand); color: #16120C; transform: rotate(180deg); }
.acc__item.is-open .acc__ico::after { transform: scaleY(0); opacity: 0; }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--e-out);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding: 0 3rem 1.5rem .2rem; color: var(--fog-400); font-size: .96rem; }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--ink-1000);
  padding-top: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.footer::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%; top: -50%;
  transform: translateX(-50%);
  width: min(1200px, 140%);
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, rgba(243,140,35,.11), transparent 62%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 1.2rem + 2.4vw, 3.4rem);
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 1.25rem; }
.footer__brand p { color: var(--fog-400); font-size: .93rem; max-width: 34ch; }

.footer__title {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fog-500);
  margin-bottom: 1.15rem;
}
.footer__links { display: grid; gap: .68rem; }
.footer__links a {
  font-size: .93rem;
  color: var(--fog-300);
  transition: color var(--t-fast), transform var(--t-fast) var(--e-out);
  display: inline-block;
}
.footer__links a:hover { color: var(--brand); transform: translateX(3px); }

.footer__contact { display: grid; gap: .9rem; }
.footer__contact a, .footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: .68rem;
  font-size: .92rem;
  color: var(--fog-300);
  line-height: 1.5;
  transition: color var(--t-fast);
}
.footer__contact a:hover { color: var(--brand); }
.footer__contact svg { width: 16px; height: 16px; color: var(--brand); flex: none; margin-top: .16rem; }

.socials { display: flex; gap: .55rem; margin-top: 1.6rem; }
.social {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--fog-300);
  transition: all var(--t-fast) var(--e-out);
}
.social svg { width: 17px; height: 17px; }
.social:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: rgba(243, 140, 35, .1);
  transform: translateY(-3px);
}

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--fog-500);
}
.footer__bar a:hover { color: var(--brand); }
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* marca d'agua gigante no rodape */
.footer__watermark {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(3rem, 13.5vw, 13rem);
  font-weight: 800;
  /* line-height cheio e sem margem negativa: assim a base das letras
     nao e cortada. O .footer ja tem overflow:hidden para o corte lateral. */
  line-height: 1;
  letter-spacing: -.02em;
  text-align: center;
  color: rgba(255, 255, 255, .055);
  user-select: none;
  pointer-events: none;
  margin-top: 1.4rem;
  padding-bottom: .1em;
  white-space: nowrap;
}

/* ==========================================================================
   19. WIDGETS FLUTUANTES
   ========================================================================== */
.wa-float {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem .7rem;
  border-radius: var(--r-pill);
  /* pilula escura para o icone colorido do WhatsApp aparecer */
  background: rgba(16, 16, 19, .9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(37, 211, 102, .38);
  color: var(--fog-50);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 14px 38px -12px rgba(37, 211, 102, .5);
  transform: translateY(120%) scale(.85);
  opacity: 0;
  transition: transform .55s var(--e-back), opacity .4s var(--e-out),
              box-shadow var(--t-mid), border-color var(--t-mid);
}
.wa-float.is-in { transform: none; opacity: 1; }
.wa-float:hover {
  border-color: rgba(37, 211, 102, .8);
  box-shadow: 0 18px 52px -12px rgba(37, 211, 102, .75);
}
.wa-float img, .wa-float svg { width: 30px; height: 30px; flex: none; }
.wa-float span { padding-right: .35rem; white-space: nowrap; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: .78rem; } }

.to-top {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 150;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(14, 14, 17, .8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--fog-300);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--t-mid) var(--e-out);
}
.to-top.is-in { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { color: var(--brand); border-color: var(--brand); }
.to-top svg { width: 17px; height: 17px; }

/* barra de anuncio (evento) */
.announce {
  position: relative;
  z-index: 201;
  background: linear-gradient(100deg, var(--brand-dk), var(--brand) 55%, var(--brand-lt));
  color: #16120C;
  font-size: .88rem;
  font-weight: 600;
}
.announce__inner {
  max-width: var(--maxw-wide);
  margin-inline: auto;
  padding: .62rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
  text-align: center;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce__close {
  position: absolute;
  right: .6rem; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color var(--t-fast);
}
.announce__close:hover { background: rgba(0, 0, 0, .12); }
.announce__close svg { width: 13px; height: 13px; }
body.has-announce { --header-offset: 40px; }

/* ==========================================================================
   20. PAGINAS INTERNAS
   ========================================================================== */

/* indice lateral */
.toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc__title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fog-500);
  margin-bottom: 1rem;
}
.toc__list { display: grid; gap: .1rem; border-left: 1px solid var(--line); }
.toc__list a {
  display: block;
  padding: .5rem 0 .5rem 1rem;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: .9rem;
  color: var(--fog-500);
  transition: all var(--t-fast);
}
.toc__list a:hover { color: var(--fog-100); }
.toc__list a.is-active { color: var(--brand); border-left-color: var(--brand); }

/* corpo de texto rico */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--fs-h3); margin-top: 2.8rem; }
.prose h3 { font-size: var(--fs-h4); margin-top: 2.2rem; }
.prose p, .prose li { color: var(--fog-300); }
.prose ul, .prose ol { display: grid; gap: .7rem; padding-left: 1.3rem; }
.prose ul li { list-style: none; position: relative; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: -1.15rem; top: .68em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.prose ol { list-style: decimal; }
.prose ol li::marker { color: var(--brand); font-weight: 700; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fog-50); font-weight: 600; }
.prose blockquote {
  padding-left: 1.35rem;
  border-left: 2px solid var(--brand);
  color: var(--fog-100);
  font-size: 1.08rem;
  line-height: 1.6;
}
/* atribuicao da citacao */
.prose blockquote small {
  display: block;
  margin-top: .7rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}

/* card de curso */
.course {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-900);
  overflow: hidden;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.course:hover { transform: translateY(-5px); border-color: var(--line-brand); box-shadow: var(--shadow-md); }
.course__top {
  position: relative;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(150deg, rgba(243,140,35,.14), transparent 62%);
  border-bottom: 1px solid var(--line);
}
.course__badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
}
.course__title { font-size: 1.15rem; line-height: 1.28; margin-bottom: .5rem; padding-right: 4.5rem; }
.course__body { padding: 1.35rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.course__text { color: var(--fog-400); font-size: .92rem; }
.course__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.15rem;
}
.course__meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--fog-400);
  padding: .3rem .65rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--ink-850);
}
.course__meta svg { width: 12px; height: 12px; color: var(--brand); }
.course__foot { margin-top: auto; padding-top: 1.4rem; }

/* grade de logos de clientes (pagina clientes) */
/* Grade de logos em flex, e nao em grid, de proposito: quando a quantidade
   nao fecha a ultima fila, o que sobra fica centralizado em vez de deixar um
   buraco escuro no canto direito. O numero de colunas vem de --cols. */
.logo-grid {
  /* --cols-base e a quantidade ideal por faixa de largura. O JavaScript pode
     ajustar --cols em ate duas para nao sobrar uma logo solta na ultima fila;
     sem JavaScript, vale a base. */
  --cols-base: 10;
  --cols: var(--cols-base);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (max-width: 1180px) { .logo-grid { --cols-base: 8; } }
@media (max-width: 900px)  { .logo-grid { --cols-base: 6; } }
@media (max-width: 640px)  { .logo-grid { --cols-base: 4; } }
@media (max-width: 420px)  { .logo-grid { --cols-base: 3; } }

.logo-grid__cell {
  position: relative;
  flex: 0 0 calc((100% - (var(--cols) - 1) * 1px) / var(--cols));
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-900);
  /* as linhas da grade vem do contorno de cada celula, nao do vao */
  box-shadow: 0 0 0 1px var(--line);
  transition: background-color var(--t-mid);
}
.logo-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  opacity: .48;
  transition: filter var(--t-mid) var(--e-out), opacity var(--t-mid), transform var(--t-mid) var(--e-out);
}
.logo-grid__cell:hover img { filter: none; opacity: 1; transform: scale(1.05); }

/* card de episodio / live */
.ep {
  display: flex;
  gap: 1.15rem;
  padding: 1.15rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-900);
  transition: border-color var(--t-mid), transform var(--t-mid) var(--e-out), background-color var(--t-mid);
}
.ep:hover { border-color: var(--line-brand); transform: translateX(4px); background: var(--ink-850); }
.ep__ico {
  flex: none;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(243,140,35,.1);
  border: 1px solid var(--line-brand);
}
.ep__ico img { width: 26px; height: 26px; object-fit: contain; }
.ep__title { font-size: 1.02rem; margin-bottom: .3rem; }
.ep__meta { font-size: .82rem; color: var(--fog-500); display: flex; gap: .35rem .8rem; flex-wrap: wrap; }
/* icone e texto andam juntos: sem isso o horario desgruda do relogio */
.ep__meta > span { display: inline-flex; align-items: center; gap: .32rem; white-space: nowrap; }
.ep__meta svg { width: 13px; height: 13px; flex: none; }
/* texto unico e longo e frase, nao rotulo: quebra linha normalmente */
.ep__meta > span:only-child { white-space: normal; }
.ep > div { min-width: 0; }

/* --- cartao da proxima live (folhinha de calendario) -------------------- */
.next-live {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-brand);
  background:
    radial-gradient(360px circle at 0% 0%, rgba(243, 140, 35, .12), transparent 62%),
    var(--ink-900);
  transition: border-color var(--t-mid), transform var(--t-mid) var(--e-out);
}
.next-live:hover { transform: translateX(4px); }

.next-live__cal {
  flex: none;
  width: 56px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background: var(--ink-850);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.next-live__cal b {
  display: block;
  padding: .2rem 0;
  background: var(--brand);
  color: #16120C;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.next-live__cal i {
  display: block;
  padding: .3rem 0 .38rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--fog-50);
  line-height: 1;
}

.next-live__body { display: grid; gap: .18rem; min-width: 0; }
.next-live__label {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--fog-50);
  line-height: 1.25;
}
.next-live__when { font-size: .84rem; color: var(--fog-500); line-height: 1.4; }

/* durante a transmissao */
.next-live.is-live { border-color: rgba(52, 211, 153, .45); }
.next-live.is-live .next-live__cal b { background: #34d399; color: #04241a; }
.next-live.is-live .next-live__label { color: #7defb9; }

/* mapa */
.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  background: var(--ink-850);
  filter: grayscale(1) invert(.92) contrast(.86);
  transition: filter var(--t-slow) var(--e-out);
}
.map-frame:hover { filter: grayscale(.3) invert(.9) contrast(.9); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-bottom: 1.6rem;
  margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  padding: .48rem 1rem;
  font-size: .86rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  color: var(--fog-400);
  transition: all var(--t-fast) var(--e-out);
  white-space: nowrap;
}
.chip:hover { color: var(--fog-50); border-color: rgba(255,255,255,.28); }
.chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #16120C;
  font-weight: 600;
}

.search {
  position: relative;
  flex: 0 1 300px;
  min-width: 220px;
}
.search svg {
  position: absolute;
  left: .95rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--fog-500);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: .72rem 1rem .72rem 2.6rem;
  font-size: .92rem;
  color: var(--fog-50);
  background: var(--ink-850);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search input::placeholder { color: var(--fog-600); }
.search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(243, 140, 35, .16);
}

/* ==========================================================================
   FEED (blog em formato de rede social)
   ========================================================================== */
.feed {
  display: grid;
  gap: clamp(1.4rem, 1rem + 1.6vw, 2.2rem);
  max-width: 1180px;
  margin-inline: auto;
}

.post-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-900);
  overflow: hidden;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.post-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }

/* --- cabecalho: autor, data, categoria --------------------------------- */
.post-item__head {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem clamp(1rem, .85rem + .6vw, 1.4rem);
}
.post-item__avatar {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--ink-900), var(--ink-900)) padding-box,
    linear-gradient(140deg, var(--brand), var(--brand-deep)) border-box;
}
.post-item__who { min-width: 0; flex: 1; }
.post-item__author {
  display: block;
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 600;
  color: var(--fog-50);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.post-item__sub {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: .12rem;
  font-size: .78rem;
  color: var(--fog-500);
}
.post-item__sub .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-600); flex: none; }
.post-item__cat { color: var(--brand); font-weight: 500; }

.post-item__type {
  flex: none;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--fog-500);
}
.post-item__type svg { width: 14px; height: 14px; }

/* --- midia -------------------------------------------------------------- */
.post-item__media {
  position: relative;
  display: block;
  background: var(--ink-850);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.post-item__media > img,
.post-item__media > video {
  width: 100%;
  display: block;
  max-height: 640px;
  object-fit: cover;
}
.post-item__media--embed { aspect-ratio: 16 / 9; }
.post-item__media--embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* botao de play sobre a capa de video */
.post-item__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 6, .3);
  transition: background-color var(--t-mid);
}
.post-item__play span {
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #16120C;
  box-shadow: 0 10px 34px -8px rgba(243, 140, 35, .8);
  transition: transform var(--t-mid) var(--e-back);
}
.post-item__play svg { width: 24px; height: 24px; margin-left: 3px; }
.post-item__media:hover .post-item__play { background: rgba(5, 5, 6, .18); }
.post-item__media:hover .post-item__play span { transform: scale(1.1); }

/* --- carrossel ---------------------------------------------------------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.carousel__track img { width: 100%; display: block; max-height: 640px; object-fit: cover; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 10, 12, .75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  color: var(--fog-50);
  opacity: 0;
  transition: opacity var(--t-mid), background-color var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.carousel__btn svg { width: 16px; height: 16px; }
.carousel:hover .carousel__btn { opacity: 1; }
.carousel__btn:hover { background: var(--brand); color: #16120C; border-color: var(--brand); }
.carousel__btn:disabled { opacity: 0 !important; pointer-events: none; }
.carousel__btn--prev { left: .7rem; }
.carousel__btn--next { right: .7rem; }
@media (hover: none) { .carousel__btn { display: none; } }

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: .85rem;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  padding: .35rem .6rem;
  border-radius: var(--r-pill);
  background: rgba(5, 5, 6, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.carousel__dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  transition: background-color var(--t-fast), width var(--t-fast);
}
.carousel__dots i.is-on { background: var(--brand); width: 18px; border-radius: 99px; }

.carousel__count {
  position: absolute;
  top: .8rem; right: .8rem;
  z-index: 2;
  padding: .22rem .58rem;
  border-radius: var(--r-pill);
  background: rgba(5, 5, 6, .68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .74rem;
  font-weight: 600;
  color: var(--fog-100);
}

/* --- corpo do post ------------------------------------------------------ */
.post-item__body { padding: clamp(1.1rem, .95rem + .6vw, 1.5rem); }
.post-item__title {
  font-size: clamp(1.1rem, 1.03rem + .4vw, 1.32rem);
  line-height: 1.3;
  margin-bottom: .55rem;
}
.post-item__title a { transition: color var(--t-fast); }
.post-item__title a:hover { color: var(--brand-lt); }
.post-item__text {
  font-size: .95rem;
  color: var(--fog-400);
  line-height: 1.62;
}
.post-item__tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .9rem; }
.post-item__tags span { font-size: .8rem; color: var(--fog-500); }
.post-item__tags span::before { content: '#'; color: var(--brand); opacity: .7; }

.post-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.post-item__actions { display: flex; align-items: center; gap: .35rem; }
.post-item__act {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fog-500);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.post-item__act svg { width: 16px; height: 16px; }
.post-item__act:hover { color: var(--brand); background: rgba(243, 140, 35, .1); }

/* --- a partir do desktop o card deita: midia | conteudo ------------------ */
@media (min-width: 900px) {
  .post-item {
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
  }
  /* A midia ocupa as duas linhas da coluna esquerda. O conteudo interno e
     posicionado de forma absoluta para que a ALTURA DO CARTAO venha do texto,
     e nao da proporcao da foto (senao cada card fica de um tamanho). */
  .post-item__media {
    position: relative;
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 330px;
    border-block: 0;
    border-right: 1px solid var(--line);
  }
  .post-item__media > img,
  .post-item__media > video,
  .post-item__media > iframe,
  .post-item__media > .carousel__track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
  .post-item__media--embed { aspect-ratio: auto; }

  .post-item__head { grid-column: 2; grid-row: 1; padding-bottom: .2rem; }
  .post-item__body {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    padding-top: .8rem;
  }
  .post-item__title { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.7rem); }
  .post-item__text { font-size: 1rem; }
  /* rodape sempre colado na base do cartao */
  .post-item__foot { margin-top: auto; }

  /* carrossel: a trilha e quem estica; as imagens preenchem a altura dela */
  .post-item__media .carousel__track img { height: 100%; max-height: none; }

  /* sem midia, o conteudo ocupa a largura inteira */
  .post-item:not(:has(.post-item__media)) { grid-template-columns: minmax(0, 1fr); }
  .post-item:not(:has(.post-item__media)) .post-item__head,
  .post-item:not(:has(.post-item__media)) .post-item__body { grid-column: 1; }
}

/* --- card de post (grade, usado nos relacionados) ----------------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.2rem, .9rem + 1.2vw, 2rem);
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-900);
  overflow: hidden;
  transition: transform var(--t-mid) var(--e-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.post-card:hover { transform: translateY(-5px); border-color: var(--line-brand); box-shadow: var(--shadow-md); }

.post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-850);
}
.post-card__media img {
  /* absoluto: no card em destaque o media vira item flex sem altura definida,
     e height:100% colapsaria a imagem */
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.9);
  transition: transform 1s var(--e-out), filter var(--t-mid);
}
.post-card:hover .post-card__media img { transform: scale(1.06); filter: none; }

.post-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 6, .35);
}
.post-card__play svg {
  width: 46px; height: 46px;
  padding: 13px;
  border-radius: 50%;
  background: var(--brand);
  color: #16120C;
  box-shadow: 0 8px 26px -8px rgba(243, 140, 35, .8);
  transition: transform var(--t-mid) var(--e-back);
}
.post-card:hover .post-card__play svg { transform: scale(1.12); }

.post-card__body { padding: clamp(1.15rem, 1rem + .6vw, 1.6rem); display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--fog-500);
  margin-bottom: .9rem;
}
.post-card__meta .tag { padding: .24rem .6rem; font-size: .72rem; }
.post-card__title {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.24rem);
  line-height: 1.28;
  margin-bottom: .6rem;
}
.post-card__title a { transition: color var(--t-fast); }
.post-card:hover .post-card__title a { color: var(--brand-lt); }
.post-card__text {
  font-size: .92rem;
  color: var(--fog-400);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__go {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: .87rem;
  font-weight: 600;
  color: var(--brand);
}
.post-card__go svg { width: 14px; height: 14px; transition: transform var(--t-fast) var(--e-out); }
.post-card:hover .post-card__go svg { transform: translateX(4px); }

/* destaque */
.post-card--big { border-color: var(--line-brand); }
@media (min-width: 860px) {
  .post-card--big { flex-direction: row; align-items: stretch; }
  .post-card--big .post-card__media { flex: 0 0 52%; aspect-ratio: auto; }
  .post-card--big .post-card__body { padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.8rem); justify-content: center; }
  .post-card--big .post-card__title { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem); }
  .post-card--big .post-card__text { -webkit-line-clamp: 4; line-clamp: 4; font-size: .98rem; }
}

/* estados */
.blog-loading, .blog-empty {
  grid-column: 1 / -1;
  padding: clamp(2.5rem, 2rem + 3vw, 5rem) 1.5rem;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  color: var(--fog-400);
}
.blog-empty__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fog-50);
  margin-bottom: .5rem;
}

/* --- post individual ---------------------------------------------------- */
.post { max-width: 780px; margin-inline: auto; }
.post__head { text-align: center; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.2rem); }
.post__head .crumbs { justify-content: center; }
.post__title {
  font-size: clamp(1.9rem, 1.35rem + 2.4vw, 3.2rem);
  margin: 1.1rem 0 0;
  letter-spacing: -.038em;
}
.post__excerpt { margin-top: 1.2rem; }
.post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  color: var(--fog-500);
}
.post__meta > :first-child { color: var(--fog-200, var(--fog-100)); font-weight: 600; }

.post__cover {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  border: 1px solid var(--line);
}
.post__cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.post__embed {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  background: #000;
  aspect-ratio: 16 / 9;
}
.post__embed iframe, .post__embed video { width: 100%; height: 100%; border: 0; display: block; }

.post__body { max-width: none; font-size: 1.06rem; }
.post__body img { border-radius: var(--r-md); margin-block: 1.6rem; }
.post__body figure { margin-block: 1.8rem; }
.post__body figcaption { font-size: .84rem; color: var(--fog-500); margin-top: .6rem; text-align: center; }
.post__body table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-block: 1.6rem; }
.post__body th, .post__body td { padding: .7rem .85rem; border: 1px solid var(--line); text-align: left; }
.post__body th { background: var(--ink-850); color: var(--fog-50); font-weight: 600; }
.post__body pre {
  background: var(--ink-1000);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  overflow-x: auto;
  font-size: .88rem;
}

.post__source { margin-top: 2rem; }
.post__tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.post__share {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: .88rem;
}

/* 404 */
.err-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.06em;
  background: linear-gradient(160deg, var(--fog-50) 8%, var(--brand) 62%, var(--brand-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   21. RESPONSIVO
   ========================================================================== */
/* Com oito itens no menu, o espaco entre a logo e o botao fica apertado
   antes de chegar no breakpoint do hamburguer. Aqui o menu vai encolhendo
   em vez de empurrar o botao para fora da tela. */
@media (max-width: 1280px) {
  .nav__list { gap: 0; }
  .nav__link { padding-inline: .6rem; font-size: .9rem; }
}
@media (max-width: 1140px) {
  .header__inner { gap: .8rem; }
  .nav__link { padding-inline: .45rem; font-size: .85rem; }
  .nav__caret { width: 8px; height: 8px; }
  .header__actions .btn--primary { padding: .6rem 1rem; font-size: .84rem; }
  .header__actions .btn--primary svg { display: none; }
}

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: span 2; }
  .steps--h { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps--h .step::after { display: none; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process::before { display: none; }
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  /* sem o .nav para empurrar, as acoes precisam ir para a direita sozinhas */
  .header__actions { margin-left: auto; }
  .burger { display: grid; }
  .header__actions .btn--primary { display: none; }
  .duo { grid-template-columns: minmax(0, 1fr); }
  .duo--reverse > :first-child { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.4rem; }
  .section-head--split { grid-template-columns: minmax(0, 1fr); gap: 1.2rem; align-items: start; }
  .figure-frame::before { inset: 12px -12px -12px 12px; }
}

@media (max-width: 720px) {
  /* rotulos longos nao cabem em uma linha no celular: deixamos quebrar
     em vez de estourar a largura da tela */
  .btn {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    padding-inline: 1.25rem;
  }
  .btn--lg { padding-inline: 1.5rem; font-size: .98rem; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 3.5rem); }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scroll-cue { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: minmax(0, 1fr); }
  .process::before { display: none; }
  .pain-grid { grid-template-columns: minmax(0, 1fr); }
  .team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
  .person { padding-inline: .9rem; }
  .person__tag { font-size: .62rem; padding-inline: .55rem; }
  .person__text { display: none; }
  .showcase { padding-left: 0; max-width: 460px; margin-inline: auto; }
  .showcase__video { aspect-ratio: 16 / 11; }
  .showcase__photo { width: 130px; left: -10px; bottom: 24px; }
  .portrait-cap { max-width: 360px; }
  .values { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .footer__brand { grid-column: span 1; }
  .footer__brand img { margin-inline: auto; }
  .footer__brand p { margin-inline: auto; }
  .socials { justify-content: center; }
  /* em uma coluna, icone ao lado do texto deixava cada linha comecando num
     ponto diferente. Empilhados e centralizados, tudo fica no mesmo eixo */
  .footer__contact { gap: 1.25rem; justify-items: center; }
  .footer__contact a, .footer__contact p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .35rem;
  }
  .footer__contact svg { margin-top: 0; }
  .footer__links { justify-items: center; }
  /* o fim do rodape fica acima do botao flutuante e da barra do iPhone */
  .footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .footer__links a:hover { transform: none; }
  .footer__bar { justify-content: center; text-align: center; }
  /* uma coluna: centraliza a bolinha e o texto de cada passo */
  .steps--h { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .steps--h .step { align-items: center; text-align: center; gap: .9rem; }
  .steps--h .step__text { margin-inline: auto; }
  .badge-float { position: static; margin-top: 1rem; }
  .acc__panel p { padding-right: 1rem; }
  /* o selo do curso sai do canto e vai para cima do titulo */
  .course__badge { position: static; display: inline-flex; margin-bottom: .8rem; }
  .course__title { padding-right: 0; }
  .to-top { display: none; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: minmax(0, 1fr); }
  .hero__cta .btn, .cta-band__actions .btn { width: 100%; }
}

/* utilitarios de visibilidade por tamanho de tela */
@media (max-width: 720px) { .hide-sm { display: none !important; } }
@media (min-width: 721px) { .only-sm { display: none !important; } }

/* impressao */
@media print {
  .header, .footer, .wa-float, .to-top,
  .preloader, .progress-bar, .scroll-cue, .announce { display: none !important; }
  body { background: #fff; color: #111; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   ACESSIBILIDADE — movimento reduzido
   ========================================================================== */
@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;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .split-word, .split-char { opacity: 1 !important; transform: none !important; }
  .veil::after { display: none; }
  .veil > img, .veil > video { transform: none !important; }
  .marquee__track { animation: none !important; }
  .mark::after { transform: scaleX(1) !important; }
  /* o video fica visivel e pausado no poster; quem pausa e o js/main.js */
}


/* ==========================================================================
   CELULAR: CONTEUDO CENTRALIZADO
   Os blocos de duas colunas (texto ao lado de imagem) viram uma coluna so no
   celular. Ali o texto alinhado a esquerda parecia torto, entao tudo passa a
   ser centralizado: etiqueta, titulo, texto, selos, listas e botoes.
   Cartoes e formularios dentro desses blocos continuam alinhados a esquerda.
   ========================================================================== */
@media (max-width: 720px) {
  .duo { text-align: center; }
  .duo .eyebrow { display: flex; justify-content: center; }
  .duo .eyebrow:not(.eyebrow--plain)::after {
    content: '';
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), transparent);
    border-radius: 2px;
    flex: none;
  }
  .duo .lead, .duo .measure { margin-inline: auto; }
  .duo .row, .duo .chips { justify-content: center; }
  .duo .live-tag { display: flex; justify-content: center; }
  .duo .emblem { margin-inline: auto !important; }

  /* lista de checagem: icone sobre o texto, tudo no mesmo eixo */
  .duo .checks { justify-items: center; }
  .duo .checks li { flex-direction: column; align-items: center; text-align: center; gap: .4rem; }
  .duo .checks svg { margin-top: 0; }

  /* o que e cartao ou formulario volta a ler da esquerda */
  .duo .ep, .duo .form, .duo .next-live, .duo .card, .duo .acc, .duo .course { text-align: left; }

  /* moldura decorativa deslocada: na tela estreita ela sobrava para fora da
     foto e parecia desalinhada */
  .figure-frame::before { display: none; }

  /* selo "15+ anos": no celular ele deixa de flutuar sobre a foto e vira
     uma faixa. O texto estava preso a 13 caracteres e ficava espremido
     num canto da faixa */
  .badge-float { justify-content: center; text-align: left; }
  .badge-float span { max-width: 24ch; }

  /* ponto do "ao vivo" alinhado ao texto, e nao acima dele */
  .duo .live-tag { align-items: center; gap: .5rem; }

  /* botoes da faixa final: largura cheia, para o texto caber numa linha so
     em vez de quebrar espremido ao lado da seta */
  .cta-band .row { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin-inline: auto; }
  .cta-band .row .btn { width: 100%; justify-content: center; }

  /* foto de fundo dos heros internos: rostos saiam atras do titulo. A foto
     sobe, e a cortina escurece mais atras do texto */
  .hero-sub--center .hero-sub__bg img { object-position: center top; opacity: .42; }
  .hero-sub--center .hero-sub__bg video { opacity: .5; }
}
