:root {
  /* Nomes de variável mantidos por compatibilidade — a paleta em si
     é vermelho-laranja (sampleada do print real), não roxo. */
  --purple: #e8402f;
  --purple-hover: #ff5a3d;
  --dark-purple: #2b1410;
  --dark-purple-hover: #3d1e17;
  --ink: #171717;
  --border: #d4d4d4;
  --off-white: #f6f7f9;

  --font-nav: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-tag: "Cabin", "Segoe UI", system-ui, sans-serif;
  --font-headline: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
} 

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; }

/* Visible keyboard focus everywhere — never remove without a replacement */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* iOS: 100vh usa a altura sem a barra do Safari, o que sobra
                          como scroll vazio depois do rodapé quando ela reaparece */
  background: #000000;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

/* ===== Background video (opaque, no overlay) ===== */
.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000000;
  z-index: 0;
}
/* Vídeos decorativos de fundo: sem controles, sem botão de play nativo
   (Safari/iOS mostra um botão de play central em <video> sem `controls`
   até o JS chamar .play(), já que .showcase__video/.cta-faq__video
   carregam sob demanda em vez de autoplay nativo — ver main.js) */
.bg-video, .showcase__video, .cta-faq__video { pointer-events: none; }
/* Blindagem extra: no iOS/Safari um toque pode pausar um <video> mesmo
   com pointer-events:none nele (bug conhecido do WebKit em vídeos
   inline). Um elemento comum por cima, sem handler nenhum, absorve o
   toque antes que ele chegue no vídeo. */
.video-shield { position: absolute; inset: 0; z-index: 0; }
.bg-video::-webkit-media-controls,
.bg-video::-webkit-media-controls-panel,
.bg-video::-webkit-media-controls-play-button,
.bg-video::-webkit-media-controls-start-playback-button,
.bg-video::-webkit-media-controls-overlay-play-button,
.bg-video::-webkit-media-controls-enclosure,
.bg-video::-webkit-media-controls-overlay-enclosure,
.bg-video::-webkit-media-controls-timeline,
.bg-video::-webkit-media-controls-current-time-display,
.showcase__video::-webkit-media-controls,
.showcase__video::-webkit-media-controls-panel,
.showcase__video::-webkit-media-controls-play-button,
.showcase__video::-webkit-media-controls-start-playback-button,
.showcase__video::-webkit-media-controls-overlay-play-button,
.showcase__video::-webkit-media-controls-enclosure,
.showcase__video::-webkit-media-controls-overlay-enclosure,
.showcase__video::-webkit-media-controls-timeline,
.showcase__video::-webkit-media-controls-current-time-display,
.cta-faq__video::-webkit-media-controls,
.cta-faq__video::-webkit-media-controls-panel,
.cta-faq__video::-webkit-media-controls-play-button,
.cta-faq__video::-webkit-media-controls-start-playback-button,
.cta-faq__video::-webkit-media-controls-overlay-play-button,
.cta-faq__video::-webkit-media-controls-enclosure,
.cta-faq__video::-webkit-media-controls-overlay-enclosure,
.cta-faq__video::-webkit-media-controls-timeline,
.cta-faq__video::-webkit-media-controls-current-time-display {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  -webkit-appearance: none;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* A gravação original é roxa — vira vermelho-laranja só com CSS,
     sem precisar de um novo asset de vídeo. */
  filter: hue-rotate(110deg) saturate(1.15) brightness(0.9);
}
.bg-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #030100;
  /* Esconde o vídeo, e uma luz que segue o mouse (--mx/--my, via JS) abre um
     furo nela, revelando o vídeo por baixo só perto do cursor. */
  -webkit-mask-image: radial-gradient(340px circle at var(--mx, 50%) var(--my, 28%), transparent 0%, rgba(0, 0, 0, 0.55) 38%, black 78%);
  mask-image: radial-gradient(340px circle at var(--mx, 50%) var(--my, 28%), transparent 0%, rgba(0, 0, 0, 0.55) 38%, black 78%);
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.navbar.is-scrolled {
  background: rgba(10, 8, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
@media (min-width: 1024px) {
  .navbar { padding: 16px 120px; }
}

.logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), #ff8a3d);
  display: grid;
  place-items: center;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 800;
  color: #0a0a0f;
}
.logo-img { display: block; height: 26px; width: auto; }
.logo-word {
  font-family: 'Poppins', var(--font-nav);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}
.logo-word b { font-weight: inherit; }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-search {
  display: none;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-nav);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}
@media (min-width: 1280px) {
  .nav-search { display: inline-flex; }
}
.nav-search-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.2s ease;
}
.nav-link:hover { opacity: 0.8; }
.nav-link--chevron svg { color: #fff; }

/* ===== Mega-menu (desktop) =====
   Um único painel que troca de tamanho/posição entre os itens (JS escreve
   --w/--h/--x/--cx); o conteúdo de cada item faz cross-fade dentro dele. */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-trigger,
.nav-list .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border-radius: 5px;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"],
.nav-list .nav-link:hover { background: rgba(255, 255, 255, 0.08); opacity: 1; }
.nav-chevron { transition: transform 0.25s ease; }
.nav-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  width: var(--w, 0);
  height: var(--h, 0);
  transform: translate3d(var(--x, 0), 0, 0);
  border-radius: 5px;
  background: rgba(12, 12, 17, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.25s ease, opacity 0.2s ease, visibility 0.2s;
}
.mega.is-open {
  top: calc(100% + 6px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Primeira abertura: posiciona sem animar o tamanho, só o fade */
.mega.no-anim {
  transition: top 0.25s ease, opacity 0.2s ease, visibility 0.2s;
}
/* Ponte invisível: o mouse atravessa o vão entre o botão e o painel sem fechar */
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.mega-caret {
  position: absolute;
  top: -6px;
  left: var(--cx, 50%);
  width: 10px;
  height: 10px;
  background: #0c0c11;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) rotate(45deg);
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mega.no-anim .mega-caret { transition: none; }
.mega-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 5px;
}
.mega-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 32px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s;
}
.mega-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega-heading {
  margin: 0 8px 10px;
  font-family: var(--font-nav);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8a93;
}
.mega-heading--gap { margin-top: 22px; }
.mega-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
}
.mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 28px;
}
.mega-cols--int { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); }
.mega-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  border-radius: 5px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(232, 64, 47, 0.28), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-aside--media { justify-content: flex-start; padding: 0 0 22px; overflow: hidden; }
.mega-aside--media > *:not(.mega-aside__img) { margin-left: 22px; margin-right: 22px; }
.mega-aside__img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 5px 5px 0 0;
}
.mega-aside--media .mega-cta { margin-top: auto; padding-top: 8px; }
.mega-aside__title {
  font-family: var(--font-nav);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.mega-aside__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: #8a8a93;
}
.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-nav);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.mega-cta::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.mega-cta:hover::after { transform: translateX(3px) rotate(45deg); }
@media (max-width: 1199px) {
  .mega-body { grid-template-columns: minmax(0, 1fr); }
  .mega-aside { display: none; }
}
.mega-list { list-style: none; }
.mega-list--2col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 8px; }
.mega-link--text { align-items: center; gap: 10px; padding: 6px 8px; }
.mega-brand {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: contain;
}
.mega-ico--brand {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
}
.mega-link--text .mega-txt b { font-weight: 500; }
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 5px;
  transition: background 0.2s ease;
}
.mega-link:hover,
.mega-link:focus-visible { background: rgba(255, 255, 255, 0.07); }
.mega-ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(232, 64, 47, 0.9), rgba(255, 138, 61, 0.9));
}
.mega-ico--fa {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
}
.mega-ico--fa::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: #fff;
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}
.mega-txt { display: flex; flex-direction: column; gap: 2px; }
.mega-txt b {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.mega-txt small {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.35;
  color: #8a8a93;
}
@media (max-width: 1023px) {
  .mega { display: none; }
}

.nav-actions { display: none; align-items: center; gap: 12px; }
.nav-tools { display: flex; align-items: center; gap: 2px; margin-right: 6px; }
.nav-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  opacity: 0.85;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.nav-icon:hover { background: rgba(255, 255, 255, 0.08); opacity: 1; }

/* Idioma */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lang__btn:hover,
.lang__btn[aria-expanded="true"] { background: rgba(255, 255, 255, 0.08); }
.lang__btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }
.lang__flag { display: block; width: 20px; height: auto; border-radius: 2px; }
.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 170px;
  padding: 6px;
  list-style: none;
  border-radius: 5px;
  background: rgba(12, 12, 17, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.lang__menu.is-open { opacity: 1; visibility: visible; transform: none; }
.lang__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border-radius: 5px;
  font-family: var(--font-nav);
  font-size: 14px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lang__opt:hover { background: rgba(255, 255, 255, 0.07); }
.lang__opt img { display: block; width: 20px; height: auto; border-radius: 2px; }
.lang__opt[aria-selected="true"]::after {
  content: "";
  width: 5px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid #ff8a3d;
  border-bottom: 2px solid #ff8a3d;
  transform: rotate(45deg);
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .navbar { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 1179px) {
  .nav-icon--store { display: none; }
}
/* mobile: lojas + idiomas em uma linha, acima dos botões */
.mm-tools { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 4px; }
.mm-tools__sep { width: 1px; height: 22px; margin: 0 6px; background: rgba(255, 255, 255, 0.15); }
.lang__opt--flag { width: auto; padding: 8px; opacity: 0.55; }
.lang__opt--flag[aria-pressed="true"] { opacity: 1; background: rgba(255, 255, 255, 0.08); }
@media (min-width: 1024px) {
  .nav-actions { display: flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: #f2f2f2; }
.btn--primary {
  background: var(--purple);
  color: #fafafa;
  box-shadow: 0 6px 18px rgba(232, 64, 47, 0.35);
}
.btn--primary:hover { background: var(--purple-hover); }
.btn--block { width: 100%; }

.burger {
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .burger { display: none; }
}
.burger .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger .bar:nth-child(1) { top: 0; }
.burger .bar:nth-child(2) { top: 9px; }
.burger .bar:nth-child(3) { top: 18px; }
.burger.open .bar:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open .bar:nth-child(2) { opacity: 0; }
.burger.open .bar:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 64px;
  padding: 0 20px 80px;
  max-width: 900px;
}
@media (min-width: 1024px) {
  .hero { margin-top: 128px; }
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  max-width: min(560px, 92%);
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(110, 70, 55, 0.4);
  border: 1px solid rgba(232, 130, 95, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-tag);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px;
  text-align: left;
}
.tagline-badge {
  background: var(--purple);
  border-radius: 6px;
  font-family: var(--font-tag);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 9px;
  color: #fff;
}

.headline {
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 46px);
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin-bottom: 22px;
  text-wrap: balance;
}
.headline em {
  font-style: italic;
  padding: 0 0.08em;
}
@media (max-width: 480px) {
  .headline { font-size: 1.7rem; }
  .headline br { display: none; }
}

.subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 662px;
  margin-bottom: 32px;
}

.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }

.btn--cta-primary,
.btn--cta-secondary {
  border-radius: 10px;
  font-family: var(--font-tag);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 26px;
}
.btn--cta-primary { background: var(--purple); color: #fff; }
.btn--cta-primary:hover { background: #ff5a3d; }
.btn--cta-secondary { background: var(--dark-purple); color: var(--off-white); }
.btn--cta-secondary:hover { background: var(--dark-purple-hover); }

/* ===== Signup row (email + Google) ===== */
.signup-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.signup-field {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 52px;
  padding: 4px 4px 4px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.signup-field:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(232, 64, 47, 0.35);
}
.signup-field input {
  border: 0;
  background: transparent;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  width: 180px;
  max-width: 40vw;
}
.signup-field input::placeholder { color: rgba(255, 255, 255, 0.45); }
.signup-field .btn--cta-primary {
  height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  flex-shrink: 0;
}

.btn--google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-tag);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.btn--google:hover { background: #f2f2f2; }

/* ===== Hero mode tabs ===== */
.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-tab {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  padding: 9px 12px;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
@media (min-width: 480px) {
  .hero-tab { padding: 9px 16px; }
}
.hero-tab:hover { color: #fff; }
.hero-tab.active { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ===== Dashboard mockup ===== */
.dash {
  position: relative;
  z-index: 10;
  padding: 0 20px 90px;
}
.dash-panel-frame {
  position: relative;
  width: min(94vw, 1480px);
  margin: 0 auto;
}
.dash-panel {
  --gold: #c9973f;
  --red: #e2214f;
  --red2: #ff7a3d;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 640px;
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
@media (min-width: 720px) {
  .dash-panel { height: 700px; }
}

/* Selo "demonstração fiel" — reforça que a tela abaixo é o
   produto real, não um mockup genérico. Mesma borda-gradiente
   laranja dos botões (logo-mark, "Seu Lead"). Antes ficava 100%
   visível pra sempre; agora aparece com força na entrada e vai
   esmaecendo até quase sumir, igual ao resto dos acentos laranja
   da página. */
.dash-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--purple), #ff8a3d);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: dashPanelFade 3.5s ease-out 0.6s forwards;
}
@keyframes dashPanelFade {
  0% { opacity: 1; }
  100% { opacity: 0.14; }
}
@media (prefers-reduced-motion: reduce) {
  .dash-panel::after { animation: none; opacity: 0.14; }
}

.dash-fidelity-badge {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 20px;
  transform: translateY(calc(-100% + 2px));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px 7px 14px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, var(--purple), #ff8a3d);
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 560px) {
  .dash-fidelity-badge { left: 16px; font-size: 11px; padding: 6px 13px 6px 12px; }
}

.dash-frame {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dash-frame[hidden] { display: none; }

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.dash-logo-box {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.dash-brand-name {
  display: none;
  font-family: 'Poppins', var(--font-nav);
  font-weight: 700;
  font-size: 10.5px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
}
@media (min-width: 560px) {
  .dash-brand-name { display: block; }
}

.dash-top-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.dash-search {
  display: none;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 640px) {
  .dash-search { display: inline-flex; }
}
.dash-search--wide { flex: 1; max-width: 340px; margin: 0 auto; }
.dash-search--small { width: 140px; }
.dash-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.dash-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  flex-shrink: 0;
}
.dash-user { display: flex; align-items: center; gap: 8px; flex-shrink: 0; color: rgba(255, 255, 255, 0.8); }
.dash-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.dash-user-name {
  display: none;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 12.5px;
}
@media (min-width: 480px) {
  .dash-user-name { display: block; }
}

.dash-flexrow { display: flex; align-items: stretch; flex: 1; min-height: 0; }

.dash-sidebar {
  display: none;
  flex-direction: column;
  width: 176px;
  flex-shrink: 0;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 720px) {
  .dash-sidebar { display: flex; }
}

.dash-profile { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 22px; }
.dash-profile-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.dash-profile-name {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}
.dash-progress-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
}
.dash-progress-track {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.dash-progress-fill {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 9px 10px;
  border-left: 2px solid transparent;
}
.dash-nav-item svg { flex-shrink: 0; opacity: 0.8; }
.dash-nav-item.active {
  color: #fff;
  font-weight: 600;
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(201, 151, 63, 0.12), transparent);
}

.dash-sidebar-foot {
  margin-top: auto;
  padding-top: 18px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 900px) {
  .dash-sidebar-foot { display: flex; }
}
.dash-sidebar-foot a {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.3);
}

.dash-main { flex: 1; min-width: 0; min-height: 0; padding: 20px 22px 26px; overflow-y: auto; }
.dash-main--academy { padding: 16px; overflow: hidden; }
.dash-main-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  margin-bottom: 18px;
}
.dash-main-head h4 {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.dash-callout {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  max-width: 260px;
}

.dash-view[hidden] { display: none; }

/* ---- Captação: banner + continue row + module carousel ---- */
.dash-banner {
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 1616 / 418;
  max-height: 200px;
  object-fit: cover;
}
.dash-callout--banner {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: 220px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.dash-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dash-row-head h5 {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.dash-arrows { display: flex; gap: 6px; }
.dash-arrows button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.module-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.module-row::-webkit-scrollbar { display: none; }
.module-card-wrap {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: 260px;
  cursor: pointer;
}
@media (min-width: 720px) {
  .module-card-wrap { height: 315px; }
}
.module-card {
  height: 100%;
  width: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}
/* só o primeiro módulo (grátis) mantém a cor — o resto fica em
   escala de cinza pra reforçar que está bloqueado até o upsell */
.module-card-wrap--locked .module-card { filter: grayscale(1) brightness(0.7); }
.module-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  color: #fff;
}
.module-badge--free { background: linear-gradient(135deg, #e8402f, #ff8a3d); }
.module-lock {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.dash-funnel-note {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 10px 0 14px;
}
.dash-row-head--label { margin-top: 22px; }
.dash-row-head--label h5 {
  font-family: var(--font-tag);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* "Continue assistindo" — cards de curso com thumb + tag de módulo
   sobreposta + legenda abaixo, réplica do carrossel real do Figma. */
.course-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.course-row::-webkit-scrollbar { display: none; }

.course-card {
  flex: 0 0 auto;
  width: 130px;
  scroll-snap-align: start;
}
.course-card__thumb {
  position: relative;
  height: 78px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
  gap: 5px;
}
.course-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}
.course-card--1 .course-card__thumb { background: linear-gradient(135deg, #3a1f14, #7a2e1c); }
.course-card--2 .course-card__thumb { background: linear-gradient(135deg, #1c2a3a, #2e5170); }
.course-card--3 .course-card__thumb { background: linear-gradient(135deg, #2a1c3a, #5b2e70); }
.course-card--4 .course-card__thumb { background: linear-gradient(135deg, #1c3a2a, #2e7050); }
.course-card--5 .course-card__thumb { background: linear-gradient(135deg, #3a1c2a, #7a1c45); }
.course-card--6 .course-card__thumb { background: linear-gradient(135deg, #2a2a1c, #706a2e); }

.course-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 10.5px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.course-card__tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-tag);
  font-weight: 700;
  font-size: 7px;
  letter-spacing: 0.03em;
}
.course-card__sub {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.module-dots { display: flex; justify-content: center; gap: 5px; margin-top: 16px; }
.module-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.module-dots span.active { background: rgba(255, 255, 255, 0.8); }

/* ---- Retenção: video + checklist ---- */
.retencao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .retencao-grid { grid-template-columns: 1.3fr 1fr; }
}
.video-player {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(155deg, #2b2344, #14101f);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.video-progress {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}
.video-progress-bar {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), #3e7bff);
}
.checklist { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.check-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.check-dot.done {
  background: #4cd48a;
  border-color: #4cd48a;
}
.checklist li:has(.check-dot.done) { color: rgba(255, 255, 255, 0.85); }

/* ---- Engajamento: community thread ---- */
.thread-list { display: flex; flex-direction: column; gap: 16px; }
.thread-msg { display: flex; align-items: flex-start; gap: 10px; }
.thread-avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1, #7b39fc), var(--c2, #3e7bff));
}
.thread-body { min-width: 0; }
.thread-name {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.thread-name span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11.5px;
  margin-left: 6px;
}
.thread-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-top: 2px;
}
.thread-text a { color: var(--purple); font-weight: 500; }
.thread-image {
  display: block;
  margin-top: 8px;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(155deg, #1a1030, #3e2b6e 60%, #7b39fc);
}

/* ---- Funil automático: pipeline board ---- */
.pipe-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.pipe-crumb span { color: rgba(255, 255, 255, 0.25); }
.pipe-crumb b { font-weight: 600; color: rgba(255, 255, 255, 0.65); }

.pipe-board {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  align-items: flex-start;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pipe-board::-webkit-scrollbar { display: none; }

.pipe-column {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid var(--dot, rgba(255, 255, 255, 0.2));
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipe-column--ghost { opacity: 0.6; }

.pipe-column-head {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pipe-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot, #fff);
  flex-shrink: 0;
}
.pipe-column-title {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 12.5px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipe-column-count {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
}
.pipe-column-head--muted .pipe-column-title,
.pipe-column-head--muted .pipe-column-count { color: rgba(255, 255, 255, 0.4); }

.pipe-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.pipe-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pipe-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 10px;
  flex-shrink: 0;
}
.pipe-info { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.pipe-name {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 11.5px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipe-email {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipe-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding-top: 8px;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pipe-actions button {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}
.pipe-actions button:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.pipe-add {
  width: 100%;
  padding: 9px;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 11.5px;
  cursor: pointer;
}
.pipe-add:hover { border-color: rgba(255, 255, 255, 0.3); color: #fff; }

.pipe-empty {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 24px 0;
}

/* ---- "Hot" behavioral columns — eye-catching, auto-triggered stages ---- */
.pipe-column--hot {
  border-top-width: 2px;
  box-shadow: 0 12px 30px -12px var(--glow, transparent);
}
.pipe-column--blue {
  --dot: #3aa9ff;
  --glow: rgba(58, 169, 255, 0.35);
  background: linear-gradient(165deg, rgba(58, 169, 255, 0.16), rgba(58, 169, 255, 0.02) 60%);
  border-color: rgba(58, 169, 255, 0.3);
}
.pipe-column--gold {
  --dot: #ffb23a;
  --glow: rgba(255, 122, 61, 0.35);
  background: linear-gradient(165deg, rgba(255, 122, 61, 0.18), rgba(232, 64, 47, 0.08) 65%);
  border-color: rgba(255, 155, 61, 0.35);
}

.pipe-card--hot {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.pipe-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 9.5px;
  white-space: nowrap;
}
.pipe-column--blue .pipe-badge { background: rgba(58, 169, 255, 0.16); color: #7cc4ff; }
.pipe-column--gold .pipe-badge { background: linear-gradient(90deg, rgba(255, 122, 61, 0.22), rgba(232, 64, 47, 0.22)); color: #ffc98a; }

.dash-table-scroll { overflow-x: auto; }
.dash-table { width: 100%; min-width: 480px; border-collapse: collapse; }
.dash-table th {
  text-align: left;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 12px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
.dash-table td {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 13px 12px 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table td:first-child, .dash-table th:first-child { padding-left: 2px; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 11.5px;
}
.pill--amber { background: rgba(245, 176, 65, 0.16); color: #f5b041; }
.pill--green { background: rgba(72, 199, 142, 0.16); color: #4cd48a; }

/* ===== Astron Academy frame (Retenção) ===== */
.dash-logo-box--academy { border-radius: 6px; }

.dash-brand-name--academy {
  display: block !important;
  font-size: 13px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.dash-icon-btn--badge { position: relative; }
.dash-icon-btn--badge::after {
  content: attr(data-badge);
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 9px;
  line-height: 14px;
  text-align: center;
}

.dash-sidebar--academy { width: 62px; align-items: center; padding: 20px 8px; }
.dash-sidebar--academy .dash-profile-avatar--top { margin-bottom: 22px; }
.dash-nav--icons { align-items: center; gap: 6px; }
.dash-nav--icons .dash-nav-item {
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-left: none;
  border-radius: 8px;
}
.dash-nav--icons .dash-nav-item.active {
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
}

.academy-layout { display: flex; gap: 16px; height: 100%; min-height: 0; }
.academy-video-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.academy-video {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.academy-video img { width: 100%; height: 100%; object-fit: cover; display: block; }

.academy-hint {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(280px, 80%);
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 11.5px;
  line-height: 1.3;
  text-align: left;
  white-space: normal;
  pointer-events: none;
  animation: academyHintPulse 1.8s ease-in-out infinite;
}
.academy-hint-arrow {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--red2);
  animation: academyHintArrow 1.4s ease-in-out infinite;
}
@keyframes academyHintPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.035); }
}
@keyframes academyHintArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .academy-hint, .academy-hint-arrow { animation: none; }
}

.academy-lesson-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  flex-shrink: 0;
}
.academy-lesson-title {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.academy-lesson-actions { display: flex; gap: 8px; }
.academy-chip {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.academy-chip:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.academy-lesson-list {
  display: none;
  width: 280px;
  flex-shrink: 0;
  overflow-y: auto;
  padding-right: 2px;
}
@media (min-width: 640px) {
  .academy-lesson-list { display: block; }
}
.academy-list-title {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
}
.academy-lesson-list .dash-progress-label { margin-top: 0; }
.academy-lesson-list .dash-progress-track { margin-bottom: 16px; }

.academy-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
}
.academy-module-count {
  font-weight: 500;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
}

.academy-lessons { display: flex; flex-direction: column; gap: 2px; }
.academy-lesson {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-left: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.academy-lesson:hover { background: rgba(255, 255, 255, 0.05); }
.academy-lesson.active {
  border-left-color: var(--red);
  background: linear-gradient(90deg, rgba(226, 33, 79, 0.14), transparent);
}
.academy-lesson-check {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.academy-lesson-lock {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  display: inline-flex;
}
.academy-lesson-name {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Login / signup modal ---- */
.academy-modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: academyModalIn 0.3s ease both;
}
.academy-modal-overlay[hidden] { display: none; }
@keyframes academyModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.academy-modal {
  position: relative;
  width: min(340px, 100%);
  max-height: 100%;
  overflow-y: auto;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 22px 22px 20px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.academy-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  cursor: pointer;
}
.academy-modal h4 {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
}
.academy-modal-rule {
  display: block;
  width: 100%;
  height: 2px;
  margin: 14px 0 18px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.academy-input {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.academy-modal-btn {
  display: block;
  width: 100%;
  height: 42px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 13px;
}
.academy-modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
}
.academy-modal-sep {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0;
}
.academy-modal-cta-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.academy-modal-cta-sub {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

/* ===== Mobile fullscreen menu =====
   Abre por baixo do header (o hambúrguer continua clicável e vira X).
   Itens com sub-menu deslizam para um nível próprio com botão Voltar. */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: #000;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  animation: menuIn 0.3s ease both;
}
.mobile-menu[hidden] { display: none; }
@keyframes menuIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mm-viewport { position: relative; flex: 1; overflow: hidden; }
.mm-level {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 8px 24px 24px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}
.mm-level.is-active { transform: none; visibility: visible; }
.mm-root { transform: none; visibility: visible; }
.mm-root.is-behind { transform: translateX(-30%); visibility: hidden; }
.mm-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-nav);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
button.mm-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
}
.mm-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  color: #8a8a93;
  cursor: pointer;
}
.mm-back::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.mm-title {
  margin: 8px 0 12px;
  font-family: var(--font-nav);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.mm-level .mega-heading { margin: 22px 0 4px; }
.mm-level .mega-cta { margin: 22px 0 8px; font-size: 15px; }
.mm-level .mega-link { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); border-radius: 0; }
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .burger .bar { animation: none !important; transition: none !important; }
}

/* ===== Era da Captura Invisível — mecanismo em 3 passos =====
   Fica logo depois do painel de produto: o "porquê" já foi mostrado
   pelas tabs, aqui é o "como" (anúncio → Área de Membros), antes de
   qualquer prova social. */
.invisible { position: relative; z-index: 10; padding: 96px 24px; }
@media (min-width: 1024px) {
  .invisible { padding-left: 120px; padding-right: 120px; }
}

.invisible__inner { max-width: 1240px; margin: 0 auto; }

.invisible__intro { margin-bottom: 48px; }
@media (min-width: 1024px) { .invisible__intro { margin-bottom: 64px; } }

.invisible__kicker { font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.55); margin-bottom: 6px; }

.invisible__title { font-family: 'Inter', sans-serif; font-weight: 600; color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.2; }

.invisible__subtitle { max-width: min(365px, 100%); margin-top: 14px; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.5; color: rgba(255, 255, 255, 0.7); }
@media (max-width: 1099px) { .invisible__subtitle { margin-left: auto; margin-right: auto; } }

/* ---- Fluxo: steps à esquerda (linha pontilhada conectando),
   card de anúncio pequeno, seta, mockup GRANDE — o mockup é o
   protagonista visual da seção, não um acessório encolhido. ---- */
.invisible__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1180px) {
  .invisible__flow { flex-direction: row; align-items: center; gap: 22px; }
}

/* Linha que "sai" da coluna de passos e aponta pro anúncio — o
   elo que faltava entre os 3 passos e o diagrama, como no print. */
.invisible__bridge { display: none; }
@media (min-width: 1180px) {
  .invisible__bridge {
    display: block;
    flex: 0 0 34px;
    align-self: center;
    height: 0;
    border-top: 1.5px dashed rgba(255, 255, 255, 0.28);
  }
}

.invisible__steps {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 38px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .invisible__steps { width: 250px; gap: 52px; padding: 4px 0; }
}
/* Linha pontilhada atravessando os 3 passos — o fio que faltava
   pra ligar "o que acontece" visualmente, como no print. */
.invisible__steps::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 12px;
  bottom: 12px;
  width: 0;
  border-left: 1.5px dashed rgba(255, 255, 255, 0.22);
  z-index: 0;
}

.invisible__step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.invisible__num { flex-shrink: 0; width: 26px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 19px; color: #ff5a3d; background: #0a0706; }

.invisible__step p { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); text-align: left; }

.invisible__scene { position: relative; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; flex: 1; min-width: 0; }
@media (min-width: 768px) {
  .invisible__scene { --frame-w: clamp(280px, calc(100cqw - 230px), 680px); }
}
@media (min-width: 1024px) { .invisible__scene { justify-content: flex-start; } }

/* Cartão do anúncio — label + device com gradiente + "Seu Lead",
   mesma composição de duas camadas do print original */
/* Proporção real do Figma (Group 202 = 174×227 vs mockup 636 de
   largura, ~27%): o anúncio é um coadjuvante pequeno ao lado do
   painel, não quase do mesmo tamanho. */
.invisible__ad {
  position: relative;
  flex-shrink: 0;
  width: 140px;
}
.invisible__ad-label { font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 500; color: rgba(255, 255, 255, 0.65); margin-bottom: 6px; }
.invisible__ad-device {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -16px rgba(232, 64, 47, 0.5);
}
.invisible__ad-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.invisible__ad-link { display: block; margin-top: 8px; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500; color: rgba(255, 255, 255, 0.6); text-decoration: underline; text-underline-offset: 2px; }
.invisible__ad-pill { position: absolute; right: -10px; bottom: -12px; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, #e8402f, #ff8a3d); color: #fff; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 10.5px; box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.5); }

.invisible__arrow { flex-shrink: 0; width: 34px; height: 14px; color: rgba(255, 255, 255, 0.35); }
.invisible__arrow svg { width: 100%; height: 100%; }
@media (max-width: 1179px) { .invisible__scene { flex-direction: column; } .invisible__arrow { transform: rotate(90deg); } }

/* Área de Membros em miniatura — clone real do dash-panel (mesmas
   classes/CSS), só encolhido por transform. Garante fidelidade em
   vez de reinventar um mockup aproximado. */
.invisible__mockup-frame { position: relative; flex-shrink: 0; width: clamp(200px, 100%, 420px); aspect-ratio: 1200 / 675; border-radius: 10px; overflow: hidden; border: 1px solid rgba(232, 130, 95, 0.28); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6); }

.invisible__mockup-badge { position: absolute; z-index: 2; left: 12px; right: 12px; bottom: 10px; padding: 8px 14px; border-radius: 999px; background: linear-gradient(100deg, #e2214f, #ff7a3d); color: #fff; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11.5px; text-align: center; box-shadow: 0 10px 24px -8px rgba(226, 33, 79, 0.55); }

/* ===== Liquid glass + noise (utility, generic — reused across the
   proof grid: buttons, gateway tiles, secondary card surfaces) ===== */
.liquid-glass {
  background: rgba(255, 255, 255, 0.03);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.noise-overlay { position: relative; }
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  border-radius: inherit;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ===== Barra de transição — "É o Nosso Jeito Único de Fazer" =====
   Faixa full-bleed entre Era da Captura Invisível e Não fragmenta
   o Lead, gradiente escuro→laranja→vermelho→escuro do Figma. */
.transition-bar {
  position: relative;
  z-index: 10;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: linear-gradient(90deg, #0d0d0d 0%, #c34f24 39%, #ff2b2b 64%, #0d0d0d 100%);
  overflow: hidden;
}
.transition-bar__text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(15px, 2.2vw, 24px); letter-spacing: -0.01em; color: #fff; text-align: center; white-space: nowrap; }

/* ===== Não fragmenta o Lead — árvore de fragmentação =====
   Diagrama org-chart puro CSS (sem imagem — só formas): um
   anúncio se espalha em 3 canais, que se espalham em 5 destinos,
   terminando num "muito tráfego disperso". Conectores pontilhados
   via pseudo-elementos, técnica clássica de árvore genealógica. */
.fragment { position: relative; padding: 96px clamp(12px, 5vw, 24px) 96px; overflow: hidden; }
@media (min-width: 1024px) {
  .fragment { padding-left: 120px; padding-right: 120px; }
}
.fragment__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 6% 15%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 18% 60%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1.5px 1.5px at 30% 85%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 46% 25%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 62% 70%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1.5px 1.5px at 75% 10%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1px 1px at 88% 45%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 95% 80%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.fragment__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
@media (max-width: 1099px) {
  .fragment__inner:not(.fragment__inner--stack) { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .fragment__inner:not(.fragment__inner--stack) .fragment__split { margin-left: auto; margin-right: auto; }
}

/* variante empilhada: diagrama full-width embaixo, usada pelo fluxo .leak.
   Fica alinhada à esquerda no desktop — centraliza junto com o funil
   de cards abaixo de 1099px (tablet e mobile). */
.fragment__inner--stack { display: block; }
.fragment__inner--stack .fragment__copy { max-width: 640px; }
@media (max-width: 1099px) {
  .fragment__inner--stack { text-align: center; }
  .fragment__inner--stack .fragment__copy { margin: 0 auto; }
  .fragment__inner--stack .fragment__split { margin-left: auto; margin-right: auto; }
}

/* ===== Leak — o "caminho quebrado": mostra o lead sumindo a cada etapa,
   em vez de só listar as ferramentas por onde ele passa ===== */
.leak { display: flex; align-items: stretch; justify-content: center; gap: 0; max-width: 1180px; margin: 44px auto 0; }
.leak__stage {
  flex: 1 1 0;
  min-width: 0;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.leak__stage--end { background: rgba(232, 64, 47, 0.08); border-color: rgba(232, 64, 47, 0.35); }
.leak__count { font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: #fff; }
.leak__count small { font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-left: 3px; }
.leak__stage--end .leak__count { color: #ff8a3d; }
.leak__label { margin-top: 8px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 12.5px; line-height: 1.4; color: rgba(255, 255, 255, 0.55); }
.leak__chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.leak__chip { font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 10.5px; padding: 4px 9px; border-radius: 999px; background: rgba(232, 64, 47, 0.12); border: 1px solid rgba(232, 64, 47, 0.35); color: #fff; white-space: nowrap; }

.leak__gap { flex: 0 0 52px; position: relative; align-self: center; }
.leak__gap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1.5px dashed rgba(232, 64, 47, 0.3);
}
.leak__gap-badge {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  width: max-content;
  background: #0b0b0b;
  border: 1px solid rgba(232, 64, 47, 0.55);
  color: #ff6a4d;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 1099px) {
  .leak { flex-direction: column; align-items: stretch; gap: 0; max-width: 420px; }
  .leak__stage { flex: none; min-height: 0; }
  .leak__gap { flex: none; height: 46px; align-self: stretch; }
  .leak__gap::before { left: 50%; right: auto; top: 0; bottom: 0; border-top: none; border-left: 1.5px dashed rgba(232, 64, 47, 0.3); }
}

.fragment__kicker { font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 15px; color: rgba(255, 255, 255, 0.55); margin-bottom: 6px; }
.fragment__title { font-family: 'Inter', sans-serif; font-weight: 600; color: #fff; font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 18px; }

/* ---- ponte pro Hub, no lugar da antiga seção .pivot ---- */
.fragment__bridge {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}
.fragment__bridge span {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2em;
  background: linear-gradient(100deg, #e8402f, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0.35em;
}

/* ---- a árvore ---- */
/* haste vertical descendo até o nó */
/* barra horizontal ligando irmãos, na altura do topo de cada li —
   estende meio "gap" além da própria caixa pra encontrar o vizinho,
   já que o espaçamento agora vem do column-gap, não de padding. */

/* ===== Transição — "seu lead não é só um número" =====
   Respiro curto entre o mecanismo (Era da Captura Invisível) e a
   prova em números — mesma frase de efeito do print, itálico
   serifado só no trecho de impacto (reaproveita --font-headline,
   já usado no menu mobile). */
.pivot { position: relative; padding: 96px 24px; overflow: hidden; text-align: center; }
@media (min-width: 1024px) {
  .pivot { padding-left: 120px; padding-right: 120px; }
}
.pivot__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 20%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 22% 70%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 38% 35%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 55% 80%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 68% 15%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 82% 55%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 92% 25%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 14% 88%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 100% 100%;
  pointer-events: none;
}
.pivot__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.pivot__kicker { font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.02em; color: #ff5a3d; margin-bottom: 22px; }

.pivot__headline { font-family: 'Inter', sans-serif; font-weight: 600; color: #fff; font-size: clamp(1.7rem, 4.2vw, 2.75rem); line-height: 1.3; letter-spacing: -0.01em; }
.pivot__headline em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; background: linear-gradient(100deg, #e8402f, #ff8a3d); -webkit-background-clip: text; background-clip: text; color: transparent; padding: 0 0.05em; }
.pivot__mark {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  margin: 0 0.04em;
  border-radius: 22%;
  object-fit: contain;
  vertical-align: -0.12em;
}

.pivot__sub { margin-top: 22px; font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.45); }

@media (max-width: 560px) {
  .pivot { padding: 72px 20px; }
}

/* ===== Ponte "Seu CAC pode reduzir até 60%" =====
   Frase isolada entre a cena orbital e a prova em números — mesmo
   papel de "mas como?": cria a pergunta que o bento seguinte
   responde. Fundo com listras verticais sutis + estrelas, igual
   ao frame do Figma. */
.cac { position: relative; padding: 96px 24px; overflow: hidden; text-align: center; }
@media (min-width: 1024px) {
  .cac { padding-left: 120px; padding-right: 120px; }
}
.cac__stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(232, 64, 47, 0.05) 0,
    rgba(232, 64, 47, 0.05) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}
.cac__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 25%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 20% 70%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1.5px 1.5px at 34% 15%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 48% 60%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 63% 30%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1.5px 1.5px at 78% 75%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1px 1px at 92% 20%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 88% 88%, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}
.cac__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cac__headline { font-family: 'Inter', sans-serif; font-weight: 400; font-size: clamp(1.6rem, 3.6vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.25; color: rgba(255, 255, 255, 0.9); }
.cac__headline strong { font-weight: 600; color: #fff; white-space: nowrap; }
.cac__sub { margin-top: -10px; font-family: 'Inter', sans-serif; font-weight: 400; font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.25; color: rgba(255, 255, 255, 0.4); }

@media (max-width: 560px) {
  .cac { padding: 72px 20px; }
}

/* ===== Flutes — fundo canelado, reaproveitado entre Paylead e o
   slider de preço pra ler como um único pano de fundo contínuo.
   Cada faixa de ~53px clareia e escurece no meio (curva suave),
   simulando a luz pegando um sulco arredondado. */
.flutes { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-position: center; background-repeat: repeat; background-size: auto 100%; opacity: 0.65; }

/* ===== Paylead — "só paga por usuário ativo" + gráfico de hover ===== */
.paylead {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .paylead { padding-left: 120px; padding-right: 120px; }
}
.paylead__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(760px 480px at 100% 30%, rgba(232, 64, 47, 0.22), transparent 70%);
}
.paylead__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.09;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
.paylead__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.paylead__headline { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; }
.paylead__sub { margin-top: 16px; max-width: 38ch; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.paylead__google { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding: 12px 22px; border-radius: 999px; background: #fff; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: #1f1f1f; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6); transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
.paylead__google:hover { transform: translateY(-2px); }
.paylead__google svg { flex-shrink: 0; }

/* --- chart --- */
.paylead__months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-left: 74px;
  margin-bottom: 16px;
}
.paylead__months span { justify-self: center; padding: 4px 10px; border-radius: 6px; background: rgba(232, 64, 47, 0.16); border: 1px solid rgba(232, 64, 47, 0.45); font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 11px; color: #fff; white-space: nowrap; }

.paylead__plot {
  position: relative;
  height: 260px;
  padding-left: 74px;
  cursor: crosshair;
}
.paylead__yaxis-label { position: absolute; left: 0; transform: translateY(-50%); font-family: 'Inter', sans-serif; font-weight: 300; font-size: 11px; color: rgba(255, 255, 255, 0.4); white-space: nowrap; }
.paylead__svg { position: absolute; inset: 0 0 0 74px; width: calc(100% - 74px); height: 100%; }
.paylead__grid-v, .paylead__grid-h {
  stroke: rgba(232, 64, 47, 0.28);
  stroke-width: 1;
  stroke-dasharray: 2 5;
}
.paylead__line {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 7 6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.paylead__line--leads { stroke: #5EC9FF; }
.paylead__line--invest { stroke: #FF6300; }
.paylead__cursor-line { stroke: rgba(255, 255, 255, 0.35); stroke-width: 1; stroke-dasharray: 3 3; }
.paylead__dot { stroke: #0a0a0a; stroke-width: 2; }
.paylead__dot--leads { fill: #5EC9FF; }
.paylead__dot--invest { fill: #FF6300; }

.paylead__legend {
  position: absolute;
  left: 74px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}
.paylead__legend-item { padding: 6px 14px; border-radius: 7px; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 11px; color: #fff; white-space: nowrap; box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.6); }
.paylead__legend-item--leads { background: #2E8FD6; }
.paylead__legend-item--invest { background: linear-gradient(90deg, #FF6300, #FFB347); }

.paylead__tooltip {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -100%);
  margin-top: -12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #0b0b0b;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(#0b0b0b, #0b0b0b), linear-gradient(135deg, #ff6e6e, #ff8000);
  box-shadow:
    0 14px 26px -10px rgba(0, 0, 0, 0.7),
    0 0 30px 6px rgba(255, 128, 0, 0.22);
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
}
.paylead__tooltip-value { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; color: #fff; }
.paylead__tooltip-value--leads { color: #5EC9FF; }
.paylead__tooltip-divider {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: rgba(255, 255, 255, 0.12);
}
.paylead__tooltip-label { display: block; margin-top: 1px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.02em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

@media (max-width: 1099px) {
  .paylead__inner { grid-template-columns: 1fr; gap: 40px; }
  .paylead__plot { margin-bottom: 52px; }
  .paylead__legend {
    left: 0;
    right: 0;
    top: 100%;
    bottom: auto;
    margin-top: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .paylead__legend-item { font-size: 10.5px; padding: 6px 12px; }
}
@media (max-width: 640px) {
  .paylead { padding: 64px 20px; }
  .paylead__chart { margin-top: 4px; }
  .paylead__months { grid-template-columns: repeat(3, 1fr); row-gap: 6px; margin-left: 46px; margin-bottom: 58px; }
  .paylead__months span { font-size: 10px; padding: 3px 7px; }
  .paylead__plot { height: 210px; padding-left: 46px; }
  .paylead__svg { inset: 0 0 0 46px; width: calc(100% - 46px); }
  .paylead__yaxis-label { font-size: 9.5px; }
  .paylead__tooltip { transform: translate(-50%, -100%) scale(0.94); }
}

/* ===== Pricing slider — "paga apenas por usuário ativo" =====
   PREÇOS do Figma. Card com slider nativo (acessível, arrasta
   com mouse/touch/teclado) estilizado por cima com trilha,
   preenchimento em gradiente e os 5 pontos de referência. */
.pricing-slider {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .pricing-slider { padding-left: 120px; padding-right: 120px; }
}
.pricing-slider__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(760px 480px at 90% 60%, rgba(232, 64, 47, 0.24), transparent 70%);
}
.pricing-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* escurece o lado do texto (esquerda no PC) sobre o fundo listrado, pra
     facilitar a leitura sem esconder o card de preço do outro lado */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0) 68%);
}
@media (max-width: 1099px) {
  .pricing-slider__scrim {
    /* no celular o texto fica em cima, então o degradê vira vertical */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.42) 32%, rgba(0, 0, 0, 0) 62%);
  }
}
.pricing-slider__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.pricing-slider__headline { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; }
.pricing-slider__sub { margin-top: 14px; max-width: 38ch; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.pricing-slider__google { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 12px 22px; border-radius: 999px; background: #fff; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: #1f1f1f; text-decoration: none; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6); transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
.pricing-slider__google:hover { transform: translateY(-2px); }
.pricing-slider__google svg { flex-shrink: 0; }

/* --- card --- */
.pricing-slider__card { position: relative; width: 100%; padding: 32px; border-radius: 16px; background: rgba(20, 12, 10, 0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid transparent; background-clip: padding-box, border-box; background-image: linear-gradient(rgba(20, 12, 10, 0.55), rgba(20, 12, 10, 0.55)), linear-gradient(160deg, rgba(255, 138, 61, 0.5), rgba(232, 64, 47, 0.15) 40%, rgba(255, 255, 255, 0.08)); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.75); }
.pricing-slider__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-slider__card-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 20px; color: #fff; }
.pricing-slider__badge { flex-shrink: 0; padding: 6px 14px; border-radius: 999px; background: linear-gradient(90deg, #FF6300, #FFB347); font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 11px; color: #fff; white-space: nowrap; opacity: 1; transition: opacity 0.25s ease; }

.pricing-slider__price { margin-top: 20px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 38px; letter-spacing: -0.02em; color: #fff; transition: color 0.25s ease; }
.pricing-slider__price.is-free { color: #2ecc71; }
.pricing-slider__price small { margin-left: 4px; font-size: 15px; font-weight: 300; color: rgba(255, 255, 255, 0.6); }
.pricing-slider__leads-line { margin-top: 12px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; color: rgba(255, 255, 255, 0.65); }
.pricing-slider__leads-line strong { font-weight: 700; color: #ff5a3d; }

/* --- slider --- */
.pricing-slider__slider-wrap { position: relative; margin-top: 28px; height: 32px; }
.pricing-slider__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: visible;
}
.pricing-slider__fill { position: absolute; inset: 0; width: 0%; border-radius: 999px; background: linear-gradient(90deg, #2b1410, #e8402f 60%, #ff5a3d); transition: width 0.05s linear; }
.pricing-slider__dots {
  position: absolute;
  inset: 0;
}
/* bolinhas marcam onde o plano realmente troca (Grátis → Starter em 10
   leads, → Professional em 200, → Scale em 500), na escala do slider */
.pricing-slider__dots span {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.pricing-slider__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: grab;
}
.pricing-slider__input:active { cursor: grabbing; }
.pricing-slider__input::-webkit-slider-runnable-track { -webkit-appearance: none; background: transparent; height: 100%; }
.pricing-slider__input::-moz-range-track { background: transparent; height: 100%; border: none; }
.pricing-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 34px;
  height: 24px;
  margin-top: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.6), inset 0 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: grab;
}
.pricing-slider__input::-moz-range-thumb {
  width: 34px;
  height: 24px;
  border: none;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.6), inset 0 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: grab;
}

.pricing-slider__cta { display: block; margin-top: 28px; padding: 13px 24px; border-radius: 999px; border: 1px solid #ff5a3d; text-align: center; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; text-decoration: none; transition: background 0.2s ease; }
.pricing-slider__cta:hover { background: rgba(255, 90, 61, 0.12); }
.pricing-slider__fineprint { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-family: 'Inter', sans-serif; font-weight: 300; font-size: 11px; line-height: 1.5; color: rgba(255, 255, 255, 0.35); }

@media (max-width: 1099px) {
  .pricing-slider__inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-slider__card { max-width: 100%; }
}
@media (max-width: 640px) {
  .pricing-slider { padding: 72px 20px; }
  .pricing-slider__card { padding: 24px; }
}

/* ===== Prova em números — bento de credibilidade =====
   Cada card carrega um fato real já estabelecido (história, CAC,
   base de usuários, gateways, contato) — nada de depoimento ou
   logo inventado. */
.proofgrid {
  position: relative;
  z-index: 10;
  padding: 72px 24px;
}
@media (min-width: 1024px) {
  .proofgrid { padding-left: 120px; padding-right: 120px; }
}

.proofgrid__inner { max-width: 1240px; margin: 0 auto; }

.proofgrid__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 1100px) {
  .proofgrid__head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 32px; }
}
.proofgrid__head-copy h2 { font-family: 'Inter', sans-serif; font-weight: 600; color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 12px; }
.proofgrid__head-copy p { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); max-width: 46ch; }
.proofgrid__head-actions { flex-shrink: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.proofgrid__cta { border-radius: 10px; padding: 14px 26px; font-family: var(--font-tag); font-weight: 500; font-size: 16px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; background: var(--purple); transition: background 0.2s ease; }
.proofgrid__cta:hover { background: #ff5a3d; }
.proofgrid__talk { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px; font-family: var(--font-tag); font-weight: 500; font-size: 16px; color: #fff; text-decoration: none; white-space: nowrap; transition: background 0.2s ease, border-color 0.2s ease; }
.proofgrid__talk:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.32); }
.proofgrid__talk svg { width: 15px; height: 15px; }
.proofgrid__talk:hover { color: #fff; }

.proofgrid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .proofgrid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .proofgrid__grid { grid-template-columns: 1.1fr 1fr; }
}

.proofgrid__col { display: grid; grid-template-rows: auto 1fr; gap: 12px; }

.proofgrid__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.proofgrid__card--dark { background: #100b18; }
.proofgrid__card--surface { background: #2b1410; }
/* cards --icon (história e 1M+) — mesma linguagem de fundo chapado + brilho
   dos cards de "Ferramentas", sem vídeo de fundo */
.proofgrid__card--icon { background: linear-gradient(155deg, #2a1210 0%, #180a08 60%); }
.proofgrid__story-bg,
.proofgrid__stat::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 15% 0%, rgba(255, 138, 61, 0.22), transparent 60%);
}
.proofgrid__stat { background: linear-gradient(155deg, #e8402f 0%, #7a1f12 100%); }
.proofgrid__stat::before { background: radial-gradient(120% 90% at 85% 0%, rgba(255, 255, 255, 0.16), transparent 60%); }

.proofgrid__label { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.proofgrid__label--start { justify-content: flex-start; }
.proofgrid__sparkle { width: 12px; height: 12px; color: rgba(255, 255, 255, 0.65); flex-shrink: 0; }
.proofgrid__sparkle--sm { width: 10px; height: 10px; }

/* --- História (col 1) --- */
.proofgrid__story {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
}
.proofgrid__timeline { position: relative; z-index: 2; margin-top: auto; display: flex; flex-direction: column; }
.proofgrid__timeline-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.proofgrid__timeline-row:first-child { border-top: none; padding-top: 0; }
.proofgrid__timeline-row:last-child { padding-bottom: 0; }
.proofgrid__t-year { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,.88); white-space: nowrap; }
.proofgrid__t-role { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,.7); white-space: nowrap; }
.proofgrid__t-detail { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,.42); text-align: right; }
.proofgrid__t-ico { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; }
.proofgrid__t-ico svg { width: 12px; height: 12px; }
.proofgrid__t-ico--rocket { background: rgba(255, 90, 61, 0.16); color: #ff8a3d; }
.proofgrid__t-ico--trophy { background: rgba(255, 199, 84, 0.16); color: #ffcf54; }
.proofgrid__t-ico--trend { background: rgba(76, 212, 138, 0.16); color: #4cd48a; }
.proofgrid__t-ico--support { background: rgba(93, 173, 255, 0.16); color: #5dadff; }

/* --- CAC (col 2 top) --- */
.proofgrid__cac { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.proofgrid__cac-figure { position: relative; z-index: 2; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 19px; line-height: 1.35; color: #fff; }
.proofgrid__cac-figure strong { color: #ff5a3d; font-weight: 600; }
.proofgrid__cac-sub { position: relative; z-index: 2; font-family: 'Inter', sans-serif; font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,.55); }

/* --- 1M+ (col 2 bottom) --- */
.proofgrid__stat {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.proofgrid__stat-figure { position: relative; z-index: 2; font-family: 'Inter', sans-serif; font-weight: 300; letter-spacing: -0.02em; font-size: clamp(2.6rem, 6vw, 4.2rem); color: #fff; filter: drop-shadow(0 2px 14px rgba(0,0,0,.5)); }
.proofgrid__stat-caption { position: relative; z-index: 2; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,.85); }
.proofgrid__stat-ico { position: absolute; top: 50%; left: 50%; z-index: 1; width: 130px; height: 130px; transform: translate(-50%, -50%); color: #fff; opacity: 0.14; pointer-events: none; }
.proofgrid__stat-ico svg { width: 100%; height: 100%; }

/* ===== Showcase (hero card + client marquee) ===== */
.showcase { position: relative; z-index: 10; padding: 96px 24px; }
@media (min-width: 1024px) {
  .showcase { padding-left: 120px; padding-right: 120px; }
}

.showcase__card {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #100b18;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .showcase__card { height: 600px; }
}

.showcase__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.showcase__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s ease;
}
.showcase__card:hover .showcase__video { transform: scale(1.1); }
.showcase__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 11, 24, 0) 55%, rgba(16, 11, 24, 0.55) 100%);
  pointer-events: none;
}

.showcase__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 24px;
  max-width: 620px;
}
@media (min-width: 1024px) {
  .showcase__content { padding: 64px 56px; }
}
.showcase__content::before {
  content: '';
  position: absolute;
  top: -32px;
  left: -32px;
  right: 12%;
  bottom: 28%;
  z-index: -1;
  background: radial-gradient(ellipse at 28% 28%, rgba(255, 255, 255, 0.4), transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.showcase__kicker { font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 13px; color: #e8402f; margin-bottom: 12px; }

.showcase__devices { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: rgba(23, 23, 23, 0.45); }
.showcase__devices svg { width: 18px; height: 18px; }

.showcase__headline { font-family: 'Inter', sans-serif; font-weight: 400; color: #171717; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; line-height: 1.28; margin-bottom: 22px; }
.showcase__headline strong { font-weight: 700; }

.showcase__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.showcase__store { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 10px; border: 1.5px solid transparent; background: #111; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 12px; color: #fff; transition: background 0.2s ease, border-color 0.2s ease; }
.showcase__store:hover { background: #000; }
.showcase__store--apple { border-color: #d0d0d5; }
.showcase__store--apple:hover { border-color: #fff; }
.showcase__store--play { border-color: #00c853; }
.showcase__store--play:hover { border-color: #3ddc84; }

.showcase__subtext { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(23, 23, 23, 0.7); max-width: 340px; margin-bottom: 20px; }

.showcase__link { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 10px; background: #fff; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 12px; color: #171717; text-decoration: none; transition: background 0.2s ease; }
.showcase__link:hover { background: #f2f2f2; }

/* Marquee — same translateX(0)→(-50%) mechanic as .proofgrid__marquee, paused on hover */
.showcase__marquee-mask {
  margin-top: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
@media (min-width: 1024px) {
  .showcase__marquee-mask { margin-top: 32px; }
}
.showcase__marquee {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: showcase-marquee 30s linear infinite;
}
.showcase__marquee-mask:hover .showcase__marquee { animation-play-state: paused; }
@keyframes showcase-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .showcase__marquee { animation: none; }
}

.showcase__logo-card {
  position: relative;
  flex-shrink: 0;
  height: 96px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0a0706;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.showcase__logo-blob { position: absolute; inset: 0; margin: auto; width: 72%; height: 72%; border-radius: 50%; background: linear-gradient(135deg, #e8402f, #ff8a3d); filter: blur(22px); opacity: 0; pointer-events: none; }

.showcase__logo-img {
  position: relative;
  z-index: 1;
  max-width: 68%;
  max-height: 42%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .showcase__card { height: auto; min-height: 520px; }
  .showcase__content { padding: 32px 24px; }
  .showcase__logo-card { height: 76px; width: 130px; }
}

/* ===== "Mas e o meu pós venda?" — ponte de impacto =====
   Frase isolada, mesma técnica de itálico serifado com gradiente
   do .pivot__headline, com um traço pontilhado saindo por baixo
   pra puxar o olho pra seção seguinte. */
.postsale { position: relative; padding: 96px 24px 16px; overflow: hidden; text-align: center; }
@media (min-width: 1024px) {
  .postsale { padding-left: 120px; padding-right: 120px; }
}
.postsale__glow {
  position: absolute;
  left: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(232, 64, 47, 0.4), rgba(232, 64, 47, 0.12) 55%, transparent 75%);
  filter: blur(30px);
  pointer-events: none;
}
.postsale__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 30%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 28% 75%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 44% 18%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1px 1px at 60% 55%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 76% 25%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1.5px 1.5px at 90% 65%, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
}
.postsale__headline { position: relative; z-index: 1; font-family: 'Inter', sans-serif; font-weight: 500; color: #fff; font-size: clamp(2.1rem, 5.6vw, 3.9rem); letter-spacing: -0.01em; line-height: 1.2; }
.postsale__headline em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; background: linear-gradient(100deg, #e8402f, #ff8a3d); -webkit-background-clip: text; background-clip: text; color: transparent; padding: 0 0.05em; }
.postsale__line {
  position: relative;
  z-index: 1;
  display: block;
  width: 0;
  height: 56px;
  margin: 28px auto 0;
  border-left: 1.5px dashed rgba(254, 93, 48, 0.32);
}
@media (max-width: 560px) {
  .postsale { padding: 72px 20px 12px; }
  .postsale__line { height: 44px; }
}

/* ===== Upsell — "Aumente o seu LTV" =====
   Group 234 do Figma. O fundo NÃO é imagem — extraí o SVG do
   Rectangle 3988 isoladamente e descobri que é só um linear-
   gradient + um filtro de ruído (feTurbulence), então recriei os
   dois em CSS puro em vez de carregar um raster pesado. Os 3
   cards de módulo (foto + selo "Produto perfeito" + título +
   "Desbloquear" já embutidos) vieram do export limpo em SVG
   renderizado via Chrome headless — o export PNG nativo do Figma
   pra esse grupo também tinha o mesmo bug de ruído/blend que o
   Group 211 (Era da Captura Invisível). Textos, botão e balões
   de chat são HTML real por cima. */
.upsell { position: relative; padding: 16px 24px 96px; }
@media (min-width: 1024px) {
  .upsell { padding-left: 120px; padding-right: 120px; }
}
.upsell__panel {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  margin-top: -40px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(112deg, #cf2626 1.4%, #cf3f26 47%, #080808 100%);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.upsell__noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

.upsell__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 28px; padding: 40px clamp(20px, 4vw, 48px); }
@media (min-width: 1100px) {
  .upsell__body { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 40px; align-items: center; }
}

.upsell__copy { max-width: 420px; }
@media (max-width: 1099px) {
  .upsell__body { text-align: center; }
  .upsell__copy { margin: 0 auto; }
  .upsell__split { margin-left: auto; margin-right: auto; font-size: 14px; max-width: 44ch; }
  /* respiro pro selo de fogo, que sai pra fora do topo dos cards */
  .upsell__gallery { margin-top: 18px; }
}
.upsell__headline { font-family: 'Inter', sans-serif; font-weight: 700; color: #fff; font-size: clamp(1.4rem, 2.4vw, 2.1rem); line-height: 1.2; letter-spacing: -0.01em; }
.upsell__google { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 10px 18px; border-radius: 999px; background: #fff; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px; color: #1f1f1f; white-space: nowrap; box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.6); }
.upsell__google svg { flex-shrink: 0; width: 15px; height: 15px; }

.upsell__cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
/* Os cards são mockups completos de "conteúdo bloqueado" (banner +
   foto + botão Desbloquear), não fotos soltas — a proporção precisa
   bater com a imagem original (408x900) pra não cortar o banner/botão. */
.upsell__card { position: relative; }
.upsell__card-frame { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.7); aspect-ratio: 21 / 50; }
.upsell__card-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* selo flutuante no topo do card, sugerindo "conteúdo em alta" */
.upsell__card-fire { position: absolute; top: -14px; right: 10px; z-index: 3; font-size: 26px; line-height: 1; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45)); }

/* Balões flutuam perto do card a que se referem — sugerindo que a
   plataforma identificou aquele aluno específico como pronto pra
   comprar aquele módulo, não um aviso genérico solto embaixo. */
.upsell__gallery { position: relative; }
.upsell__notices { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; pointer-events: none; z-index: 2; }
.upsell__notice {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 190px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  line-height: 1.35;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.75);
  pointer-events: auto;
}
.upsell__notice::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #0b0b0b;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.upsell__notice strong { font-weight: 700; color: #fff; }
.upsell__notice-avatar { flex-shrink: 0; width: 22px; aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; }
.upsell__notice span { min-width: 0; }

.upsell__notice--1 { top: -20px; left: 2%; }
.upsell__notice--1::after { bottom: -5px; left: 22px; transform: rotate(45deg); }
.upsell__notice--2 { bottom: -20px; left: 4%; }
.upsell__notice--2::after { top: -5px; left: 22px; transform: rotate(225deg); }
.upsell__notice--3 {
  bottom: -16px;
  right: 0;
  border-color: transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#0b0b0b, #0b0b0b), linear-gradient(135deg, #ff6e6e, #ff8000);
}
.upsell__notice--3::after { top: -5px; right: 22px; left: auto; transform: rotate(225deg); background: #0b0b0b; border-color: transparent; }

.upsell__foot { grid-column: 1 / -1; }
.upsell__link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px; color: rgba(255, 255, 255, 0.75); text-decoration: none; white-space: nowrap; }
.upsell__link:hover { color: #fff; }
.upsell__link svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .upsell { padding: 12px 16px 56px; }
  .upsell__body { padding: 28px 18px; gap: 20px; text-align: center; }
  .upsell__copy { max-width: none; margin: 0 auto; }
  .upsell__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .upsell__card-fire { top: -13px; right: 4px; font-size: 18px; }
  /* Sem espaço pra flutuar perto de cada card numa coluna de 3 tão
     estreita — os balões voltam a ficar empilhados abaixo, em fluxo normal */
  .upsell__notices { position: static; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; pointer-events: auto; }
  .upsell__notice { position: static; width: auto; max-width: none; text-align: left; }
  .upsell__notice::after { display: none; }
  .upsell__foot { display: flex; justify-content: center; }
}

/* ===== Ferramentas — vitrine estilo editorial =====
   Destino do link "Veja todas as Ferramentas" do Upsell. Mesmo
   tema escuro + estrelas + tokens (fonte, padding, borda) do
   resto da página — só a estrutura (featured + grid, hover com
   zoom/overlay/cantos em L) veio da referência. */
.tools {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tools { padding-left: 120px; padding-right: 120px; }
}
.tools__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 9% 22%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 24% 68%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 40% 14%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1px 1px at 57% 58%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 73% 30%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1.5px 1.5px at 88% 72%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 95% 18%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}
.tools__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.tools__header { margin-bottom: 48px; }
.tools__header-top { display: flex; flex-direction: column; }
.tools__badge { display: inline-block; width: fit-content; padding: 6px 14px; border-radius: 8px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1); font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 18px; }
.tools__heading { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; }
.tools__header-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}
.tools__subtitle { max-width: 480px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); }
.tools__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---- card de mídia compartilhado (featured + grid) =====
   Cor + ícone real da Astron (não vídeo genérico): sampleei o
   background-color exato de cada blob do astronmembers.com.br
   direto no DOM. Os ícones ali são Font Awesome PRO (licença
   comercial) — não copiei o SVG deles, desenhei um equivalente
   simples e livre pra cada conceito. ---- */
.tools__media {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools__icon {
  width: 56px;
  height: 56px;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.tools__icon--lg { width: 88px; height: 88px; }
.tools__media:hover .tools__icon { transform: scale(1.08); }

/* Print real da vitrine (astronmembers.com.br/academy) — mais larga
   que o card, balança devagar pra esquerda e direita em loop pra
   sugerir o carrossel horizontal real sem precisar de JS/scroll. */
.tools__showcase {
  position: relative;
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  animation: tools-pan 16s ease-in-out infinite;
}
@keyframes tools-pan {
  0%, 100% { transform: scale(1.18) translateX(-6%); }
  50% { transform: scale(1.18) translateX(6%); }
}
@media (prefers-reduced-motion: reduce) {
  .tools__showcase { animation: none; }
}
.tools__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.tools__media:hover .tools__overlay { opacity: 1; }
.tools__plus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.tools__media:hover .tools__plus { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.tools__corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.tools__corner--tl { top: 15px; left: 15px; border-top: 1.5px solid; border-left: 1.5px solid; }
.tools__corner--tr { top: 15px; right: 15px; border-top: 1.5px solid; border-right: 1.5px solid; }
.tools__corner--bl { bottom: 15px; left: 15px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.tools__corner--br { bottom: 15px; right: 15px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.tools__media:hover .tools__corner { opacity: 1; }

.tools__category { display: inline-block; flex-shrink: 0; padding: 4px 12px; border-radius: 999px; color: #fff; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 11px; white-space: nowrap; }

.tools__pill { width: fit-content; padding: 6px 14px; border-radius: 20px; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 12px; color: #fff; }
.tools__pill--dark { background: linear-gradient(135deg, #e8402f, #ff8a3d); }
/* pill em cima da imagem, no lugar do bloco de texto que o card featured
   tinha antes de virar um card igual aos outros do carrossel */
.tools__pill--onmedia { position: absolute; z-index: 1; top: 12px; left: 12px; }

/* ---- carrossel: um wrapper que NÃO rola (segura o degradê fixo nas
   bordas) por fora do trilho que rola de verdade — mesma técnica do
   carrossel de planos, ver .plans__carousel ---- */
.tools__carousel { position: relative; overflow: hidden; margin-top: 25px; }
.tools__carousel::after,
.tools__carousel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.tools__carousel::after { right: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0), #000); opacity: 1; }
.tools__carousel::before { left: 0; background: linear-gradient(to left, rgba(0, 0, 0, 0), #000); opacity: 0; }
.tools__carousel.at-end::after { opacity: 0; }
.tools__carousel.at-start::before { opacity: 0; }
.tools__carousel:not(.at-start)::before { opacity: 1; }

.tools__row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tools__row::-webkit-scrollbar { display: none; width: 0; height: 0; }
.tools__card { flex: 0 0 300px; scroll-snap-align: start; }
.tools__card .tools__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tools__card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tools__card-title { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13.5px; line-height: 1.4; color: #fff; }

@media (max-width: 1099px) {
  .tools__header-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 640px) {
  .tools__header-top { align-items: center; text-align: center; }
  .tools__header-bottom { align-items: center; text-align: center; }
}
@media (max-width: 768px) {
  .tools { padding: 72px 20px; }
  .tools__row { gap: 14px; }
  .tools__card { flex-basis: min(78%, 280px); }
  /* coluna estreita: o nome da ferramenta (badge colorido) sobe pra cima do
     texto, em vez de ficar do lado, competindo com a descrição que quebra
     em várias linhas */
  .tools__card-footer { flex-direction: column; align-items: flex-start; gap: 6px; }
  .tools__category { order: -1; }
}
@media (max-width: 480px) {
  .tools__row { gap: 10px; }
  .tools__card { flex-basis: 84%; }
  .tools__card-title { font-size: 13px; }
  .tools__category { font-size: 11px !important; padding: 3px 8px !important; }
}

/* --- barra com os ícones das ferramentas, depois do card em destaque --- */
.tools__allbar { margin-top: 20px; padding: 16px clamp(14px, 3vw, 28px); border-radius: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.tools__allbar-list {
  list-style: none; margin: 0; padding: 0 6px 0 0; display: flex; flex-wrap: nowrap; align-items: center; gap: 8px;
  flex: 1 1 auto; min-width: 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
  /* os ícones vão sumindo perto da borda, sugerindo que tem mais pra rolar */
  -webkit-mask-image: linear-gradient(to right, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, #000 88%, transparent 100%);
}
.tools__allbar-list::-webkit-scrollbar { display: none; }
.tools__allbar-list a { flex-shrink: 0; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.65); transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.tools__allbar-list a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.08); }
.tools__allbar-list svg { width: 17px; height: 17px; }
.tools__allbar-cta { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.16); font-family: 'Cabin', sans-serif; font-weight: 500; font-size: 13px; color: #fff; text-decoration: none; white-space: nowrap; transition: border-color 0.2s ease, background 0.2s ease; }
.tools__allbar-cta:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.3); }
@media (max-width: 480px) {
  .tools__allbar { padding: 12px; gap: 10px; }
  .tools__allbar-list a { width: 40px; height: 40px; }
  .tools__allbar-cta { padding: 9px 14px; font-size: 12px; }
}

/* ===== Gateways — grid de integrações com scroll horizontal ===== */
.gateways {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gateways { padding-left: 120px; padding-right: 120px; }
}
.gateways__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(600px 380px at 12% 0%, rgba(232, 64, 47, 0.28), transparent 70%),
    radial-gradient(520px 360px at 88% 15%, rgba(255, 138, 61, 0.2), transparent 70%),
    radial-gradient(560px 420px at 50% 100%, rgba(139, 92, 246, 0.14), transparent 70%);
}
.gateways__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }
.gateways__header { max-width: 560px; margin-bottom: 40px; }
.gateways__heading { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; text-wrap: balance; }
.gateways__subtitle { margin-top: 12px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); }

.gateways__scroll { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent); mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent); }
.gateways__scroll::-webkit-scrollbar { display: none; }

.gateways__grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-columns: 300px;
  gap: 10px;
  width: max-content;
}

.gateways__card { display: flex; align-items: stretch; gap: 14px; height: 88px; border-radius: 10px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); overflow: hidden; transition: border-color 0.2s ease, background 0.2s ease; scroll-snap-align: start; }
.gateways__card:hover { border-color: #ff5a3d; background: rgba(255, 255, 255, 0.05); }

.gateways__icon {
  flex-shrink: 0;
  align-self: stretch;
  width: 88px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.gateways__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}

.gateways__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding-right: 16px;
}
.gateways__meta strong { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #fff; }
.gateways__meta small { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 11px; color: rgba(255, 255, 255, 0.5); }

.gateways__arrows { display: flex; gap: 10px; margin-top: 24px; }
.gateways__arrow-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.gateways__arrow-btn:hover { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.gateways__arrow-btn:active { transform: scale(0.92); }
.gateways__arrow-btn svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .gateways { padding: 72px 20px; }
  .gateways__grid { grid-auto-columns: 260px; }
  .gateways__icon { width: 72px; }
  .gateways__icon img { width: 40px; height: 40px; }
  .gateways__card { height: 76px; }
}

/* ===== Planos (Compare em qual o Tier você se encaixa) ===== */
.plans {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .plans { padding-left: 120px; padding-right: 120px; }
}

.plans__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 6% 20%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1px 1px at 18% 65%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 32% 12%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1px 1px at 46% 55%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 61% 28%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1.5px 1.5px at 76% 70%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 90% 18%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1px 1px at 12% 88%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 85% 85%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.plans__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }

.plans__title { font-family: 'Inter', sans-serif; font-weight: 600; color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; margin-bottom: 32px; }
@media (max-width: 640px) {
  .plans__title { text-align: center; }
}

.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  .plans__grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .plans__grid--four { grid-template-columns: repeat(4, 1fr); }
}

.plans__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 28px;
  border-radius: 16px;
  background: #120b0a;
  overflow: hidden;
}
@media (min-width: 1100px) {
  .plans__card--featured { padding-top: 44px; transform: scale(1.04); box-shadow: 0 30px 70px -20px rgba(232, 64, 47, 0.45); z-index: 1; border-top: 2px solid rgba(218, 26, 71, 0.65); }
}

.plans__card--featured { background: linear-gradient(165deg, #1a0805 0%, #7a1f12 42%, #e8402f 72%, #ff9a4d 100%); }

/* barra de destaque afinada e esmaecida nas pontas, em vez de um bloco
   sólido cortando o topo do card */
.plans__badge { position: absolute; top: 0; left: 0; right: 0; padding: 7px 8px; text-align: center; background: linear-gradient(90deg, rgba(20, 8, 5, 0) 0%, rgba(232, 64, 47, 0.85) 30%, rgba(232, 64, 47, 0.85) 70%, rgba(20, 8, 5, 0) 100%); font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px; color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }

.plans__name { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 15px; color: #fff; text-align: center; margin-bottom: 12px; }

.plans__price { display: flex; justify-content: center; margin-bottom: 2px; }
.plans__price-value { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 28px; color: #fff; letter-spacing: -0.01em; white-space: nowrap; }
.plans__price-unit { text-align: center; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 11px; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; min-height: 14px; }

.plans__desc { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.65); text-align: center; margin-bottom: 20px; min-height: 59px; }

.plans__cta { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border-radius: 10px; background: #fff; color: #171717; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; white-space: nowrap; margin-bottom: 10px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s ease; }
@media (max-width: 420px) {
  .plans__cta { font-size: 12px; padding-left: 8px; padding-right: 8px; }
}
.plans__notice { margin: 0 0 22px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 11px; line-height: 1.4; color: rgba(255, 255, 255, 0.6); text-align: center; }
.plans__notice strong { color: rgba(255, 255, 255, 0.65); font-weight: 500; }
.plans__cta:hover { background: #f2f2f2; }
.plans__cta--dark { background: #171717; color: #fff; }
.plans__cta--dark:hover { background: #262626; }

.plans__section-label { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; color: #fff; margin-bottom: 14px; }
.plans__card--featured .plans__section-label { border-top-color: rgba(255, 255, 255, 0.18); }

.plans__features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; }
.plans__features li { display: flex; align-items: center; gap: 9px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.4; color: rgba(255, 255, 255, 0.8); }
.plans__features li::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: var(--purple);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.plans__card--featured .plans__features li::before { background-color: #fff; }
.plans__features li.is-off { color: rgba(255, 255, 255, 0.3); text-decoration: line-through; }
.plans__features li.is-off::before {
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.plans__enterprise-cta { display: inline-flex; align-items: center; justify-content: center; padding: 13px 26px; border-radius: 10px; background: #fff; color: #171717; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; white-space: nowrap; transition: background 0.2s ease; }

@media (max-width: 1099px) {
  /* cards em carrossel horizontal (celular e tablet, até o grid de 4 colunas
     do PC), com uma sugestão visual (degradê) de que dá pra arrastar pros
     lados, em vez de empilhar ou espremer os 4 planos numa grade */
  .plans__grid--four {
    position: relative;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    gap: 14px;
    margin: 0 -24px 20px;
    padding: 4px 24px 10px;
    -webkit-overflow-scrolling: touch;
    /* esconde a barra de rolagem em qualquer navegador — sem ela, o
       degradê não precisa "adivinhar" até onde ela vai */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .plans__grid--four::-webkit-scrollbar { display: none; width: 0; height: 0; }
  .plans__grid--four .plans__card { flex: 0 0 min(78%, 280px); scroll-snap-align: start; }
  /* o degradê vive num wrapper que NÃO rola — só o grid de cards por dentro
     dele rola. Assim ele fica sempre preso na borda da tela (indicando que
     dá pra arrastar), em vez de rolar junto e "grudar" no último card.
     JS (main.js) liga/desliga .at-start/.at-end conforme o scroll, pra ele
     sumir quando não há mais nada pra rolar naquele lado. */
  .plans__carousel { position: relative; overflow: hidden; }
  .plans__carousel::after,
  .plans__carousel::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .plans__carousel::after {
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #000);
    opacity: 1;
  }
  .plans__carousel::before {
    left: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0), #000);
    opacity: 0;
  }
  .plans__carousel.at-end::after { opacity: 0; }
  .plans__carousel.at-start::before { opacity: 0; }
  .plans__carousel:not(.at-start)::before { opacity: 1; }
}
@media (max-width: 640px) {
  .plans { padding: 72px 20px; }
  .plans__card--featured { transform: none; }
  .plans__grid--four { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 420px) {
  .plans__grid--four .plans__card { flex-basis: 84%; }
}

/* ===== CTA + FAQ ===== */
.cta-faq {
  position: relative;
  padding: 96px 24px;
}
@media (min-width: 1024px) {
  .cta-faq { padding-left: 120px; padding-right: 120px; }
}
.cta-faq__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* --- CTA card --- */
.cta-faq__cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 56px;
  border-radius: 20px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.cta-faq__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Mesma gravação (roxa) e o mesmo truque do .bg-video / .proofgrid__video —
     vira vermelho-laranja só com CSS, sem precisar de um novo asset. */
  filter: hue-rotate(110deg) saturate(1.15);
}
.cta-faq__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 64, 47, 0.6) 0%, rgba(255, 138, 61, 0.28) 45%, rgba(43, 20, 16, 0.78) 100%);
}
.cta-faq__cta-title { position: relative; z-index: 1; font-family: "Inter", sans-serif; font-weight: 600; font-size: clamp(1.8rem, 3.2vw, 2.75rem); letter-spacing: -0.02em; line-height: 1.15; color: #fff; text-wrap: balance; }
.cta-faq__cta-sub { position: relative; z-index: 1; margin-top: 16px; max-width: 40ch; font-family: "Inter", sans-serif; font-weight: 300; font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.85); }
.cta-faq__cta-btn { position: relative; z-index: 1; display: inline-flex; align-items: center; margin-top: 28px; padding: 14px 28px; border-radius: 10px; background: #171717; color: #fff; font-family: "Cabin", sans-serif; font-weight: 600; font-size: 15px; text-decoration: none; box-shadow: 0 14px 26px -8px rgba(0, 0, 0, 0.6); transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease; }
.cta-faq__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(0, 0, 0, 0.65);
}

/* --- FAQ column --- */
.cta-faq__faq-title { font-family: "Inter", sans-serif; font-weight: 600; font-size: clamp(1.4rem, 2.2vw, 1.8rem); letter-spacing: -0.01em; color: #fff; }
.cta-faq__faq-sub { margin-top: 8px; font-family: "Inter", sans-serif; font-weight: 300; font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); }
.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.18); }
.faq-item.is-open { background: rgba(255, 255, 255, 0.05); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; cursor: pointer; text-align: left; font-family: "Inter", sans-serif; font-weight: 500; font-size: 14.5px; color: #fff; background: none; border: none; }
.faq-item__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); color: #e8402f; }
.faq-item__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-item__a-wrap { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; }
.faq-item__a { padding: 0 18px 16px; font-family: "Inter", sans-serif; font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); }
@media (prefers-reduced-motion: reduce) {
  .faq-item__a-wrap, .faq-item__chevron { transition: none; }
}

@media (max-width: 900px) {
  .cta-faq__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .cta-faq { padding: 72px 20px; }
  .cta-faq__cta { padding: 40px; }
}
@media (max-width: 480px) {
  .cta-faq__cta { padding: 32px 24px; }
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  padding: 80px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 1024px) {
  .site-footer { padding-left: 120px; padding-right: 120px; }
}
.site-footer__inner { max-width: 1240px; margin: 0 auto; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__mail { margin-top: 14px; font-family: "Inter", sans-serif; font-weight: 400; font-size: 13.5px; color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: color 0.2s ease; }
.site-footer__mail:hover { color: #fff; }
.site-footer__tagline { margin-top: 14px; max-width: 32ch; font-family: "Inter", sans-serif; font-weight: 300; font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.5); }
.site-footer__col h4,
.site-footer__newsletter h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.site-footer__col a { font-family: "Inter", sans-serif; font-weight: 300; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s ease; }
.site-footer__col a:hover { color: #fff; }
.site-footer__newsletter p { font-family: "Inter", sans-serif; font-weight: 300; font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; }
.site-footer__form { display: flex; gap: 10px; }
.site-footer__form input { flex: 1; min-width: 0; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04); font-family: "Inter", sans-serif; font-size: 13.5px; color: #fff; }
.site-footer__form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.site-footer__form input:focus-visible { outline: 2px solid #e8402f; outline-offset: 2px; }
.site-footer__form .btn { flex-shrink: 0; padding: 12px 20px; font-size: 13.5px; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-family: "Inter", sans-serif; font-weight: 300; font-size: 12.5px; color: rgba(255, 255, 255, 0.4); }
.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s ease; }
.site-footer__social a:hover { color: #fff; }
.site-footer__social svg { width: 20px; height: 20px; }
.site-footer__social a[href*="blog"] { font-family: "Inter", sans-serif; font-weight: 400; font-size: 13px; }

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== Scroll reveal ===== *
   Same fadeUp/scaleIn vocabulary + expo-out easing as the entry
   choreography pattern — timed off IntersectionObserver instead
   of mount, since this page scrolls (that piece never applied).
   Elements are visible by default; ".reveal" (the hidden state)
   only gets added by JS after confirming it can also add
   ".is-visible" back — see main.js. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--scale { transform: scale(0.85); }
.reveal--scale.is-visible { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--scale { opacity: 1; transform: none; transition: none; }
}

/* ===== Hero — atualização vinda do componente "Hero + Mockup" (Astron Pages) =====
   Abas com barra de progresso e legenda, dicas animadas, aba Vendas com confirmação,
   campo de e-mail do modal e ajustes de rolagem/mobile. */
.bg::after { background: linear-gradient(to bottom, transparent 0%, transparent 45%, #000000 100%); content: ''; inset: 0; pointer-events: none; position: absolute; z-index: 1; }
.hero-tabs-label { color: rgba(255, 255, 255, 0.4); font-family: 'Manrope', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 10px; text-align: center; text-transform: uppercase; }
.hero-tab-bar { background: rgba(255, 255, 255, 0.14); border-radius: 2px; bottom: 3px; height: 2px; left: 8px; overflow: hidden; position: absolute; right: 8px; }
.hero-tab-bar-fill { background: rgba(255, 255, 255, 0.7); border-radius: 2px; display: block; height: 100%; width: 0%; }
.hero-tab[data-view="captacao"] .hero-tab-bar-fill { background: #ff8a3d; }
.hero-tab[data-view="retencao"] .hero-tab-bar-fill { background: #3aa9ff; }
.hero-tab[data-view="engajamento"] .hero-tab-bar-fill { background: #ffb23a; }
.hero-tab[data-view="vendas"] .hero-tab-bar-fill { background: #4cd48a; }
.hero-tab.active[data-view="captacao"] { background: rgba(255, 138, 61, 0.16); }
.hero-tab.active[data-view="retencao"] { background: rgba(58, 169, 255, 0.16); }
.hero-tab.active[data-view="engajamento"] { background: rgba(255, 178, 58, 0.16); }
.hero-tab.active[data-view="vendas"] { background: rgba(76, 212, 138, 0.16); }
.hero-tabs-caption { color: rgba(255, 255, 255, 0.6); font-family: 'Manrope', sans-serif; font-size: 12.5px; margin: 12px 0 0; min-height: 1.4em; text-align: center; }
.dash-flexrow { align-items: stretch; display: flex; flex-basis: 0%; flex-grow: 1; flex-shrink: 1; min-height: 0; }
.dash-main::-webkit-scrollbar { display: none; }
.dash-view[data-view="vendas"]:not([hidden]) { align-items: center; display: flex; flex-direction: column; gap: 16px; height: 100%; justify-content: center; text-align: center; }
.vendas-success-icon { align-items: center; background: rgba(76, 212, 138, 0.16); border-radius: 50%; border: 1px solid rgba(76, 212, 138, 0.4); color: #4cd48a; display: inline-flex; height: 64px; justify-content: center; width: 64px; }
.vendas-success-text { color: #fff; font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; }
.vendas-owned { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.vendas-owned li { position: relative; width: 40px; height: 40px; border-radius: 8px; overflow: hidden; flex: none; }
.vendas-owned li img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vendas-owned__check { position: absolute; right: -3px; bottom: -3px; width: 15px; height: 15px; border-radius: 50%; background: #4cd48a; color: #06210f; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #0a0a0a; }
.vendas-owned__more { display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); border: 1px dashed rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.6); font-family: 'Cabin', sans-serif; font-size: 12px; font-weight: 600; }

/* ---- Retenção e LTV: quanto ele entrou pagando x quanto já comprou ---- */
.vendas-ltv-stat { display: flex; align-items: center; gap: 8px; margin: 0; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.vendas-ltv-stat svg { flex-shrink: 0; color: rgba(255, 255, 255, 0.35); }
.vendas-ltv-stat strong { color: #fff; font-weight: 700; }
.vendas-ltv-stat strong.is-acc { color: #ff8a3d; }
.vendas-cards { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.vendas-cards li { position: relative; width: 52px; height: 52px; border-radius: 10px; overflow: hidden; flex: none; border: 1px solid rgba(255, 255, 255, 0.1); }
.vendas-cards li img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Captação: cadastro (aba 1) — só o campo de cadastro, sem distrações ---- */
.dash-view[data-view="retencao"]:not([hidden]) { display: flex; align-items: center; justify-content: center; height: 100%; }

.module-row-wrap { position: relative; }
.dash-hint { -webkit-backdrop-filter: blur(6px); animation: dashHintPulse 1.8s ease-in-out infinite; backdrop-filter: blur(6px); background: rgba(0, 0, 0, 0.65); border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; font-family: 'Manrope', sans-serif; font-size: 10.5px; font-weight: 600; line-height: 1.3; padding: 6px 11px; pointer-events: none; position: absolute; white-space: nowrap; z-index: 2; }
.dash-hint--modules { left: 10px; top: 10px; }
@keyframes dashHintPulse{0%,100%{transform:scale(1);}50%{transform:scale(1.04);}}
.pipe-board-wrap { position: relative; }
.dash-hint--pipe { left: 10px; top: -8px; }
.pipe-cards::-webkit-scrollbar { display: none; }
.pipe-card:hover { filter: brightness(1.15); }
.pipe-card--new { animation: pipeCardIn 0.4s ease both; background: rgba(255, 138, 61, 0.08); border-color: rgba(255, 138, 61, 0.5); }
.pipe-badge--new { background: rgba(255, 138, 61, 0.22); color: #ffb23a; }
@keyframes pipeCardIn{from{opacity:0;transform:translateY(-8px);}to{opacity:1;transform:translateY(0);}}
.academy-lesson-list::-webkit-scrollbar { display: none; }
.academy-modal::-webkit-scrollbar { display: none; }
.academy-modal-hint { animation: dashHintPulse 1.8s ease-in-out infinite; background: rgba(255, 138, 61, 0.16); border-radius: 999px; border: 1px solid rgba(255, 155, 61, 0.4); color: #ffb23a; display: inline-block; font-family: 'Manrope', sans-serif; font-size: 10.5px; font-weight: 600; margin: 0 0 10px; padding: 6px 13px; }
.academy-input-label { color: rgba(255, 255, 255, 0.5); display: block; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 600; margin: 0 0 6px; text-align: left; }
.academy-input:focus-within { border-color: #ff8a3d; box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.25); }
.academy-input-field { background: transparent; border: 0; color: #fff; flex: 1; font-family: 'Inter', sans-serif; font-size: 12.5px; min-width: 0; outline: none; }
.academy-input-field::placeholder { color: rgba(255, 255, 255, 0.4); }
@media (prefers-reduced-motion: reduce) {
  .dash-hint { animation: none; }
  .academy-modal-hint { animation: none; }
  .pipe-card--new { animation: none; }
}
@media (max-width: 719px) {
  .tagline { text-align: center !important; }
  .hero-tab { padding-bottom: 11px !important; padding-top: 11px !important; }
  .dash-arrows button { font-size: 14px !important; height: 36px !important; width: 36px !important; }
  .academy-modal-close { font-size: 13px !important; height: 30px !important; width: 30px !important; }
  .pipe-actions button { height: 34px !important; width: 34px !important; }
  .dash-hint--modules { line-height: 1.25 !important; max-width: 96px !important; white-space: normal !important; }
}
@media (max-width: 480px) {
  .tagline { font-size: 12.5px !important; margin-bottom: 16px !important; }
  .subtext { font-size: 14px !important; margin-bottom: 22px !important; }
}

/* ajustes de comportamento das regras que já existiam */
.hero-tab { position: relative; overflow: hidden; }
.dash-main, .pipe-cards, .academy-lesson-list, .academy-modal { -ms-overflow-style: none; scrollbar-width: none; }
.pipe-card { cursor: pointer; transition: filter 0.2s ease; }
.academy-input { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
@media (max-width: 480px) {
  .headline { font-size: 1.75rem !important; margin-bottom: 14px !important; }
  .headline br { display: none !important; }
}

/* ===== Seções atualizadas a partir dos componentes da Astron Pages (Invisível … Footer) ===== */
.site-footer__col h4 { font-family: "Inter", sans-serif; font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 18px; }
.site-footer__newsletter h4 { font-family: "Inter", sans-serif; font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 18px; }
.invisible__mockup-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.fragment__split { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); max-width: 42ch; }
.fragment__diagram { width: 100%; display: flex; justify-content: center; }
.fragment__diagram-image { display: block; width: 100%; height: auto; }
.pricing-slider__badge.is-hidden { opacity: 0; pointer-events: none; }
.seam { position: relative; height: 48px; background: #000; overflow: hidden; }
.seam__line { position: absolute; left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); background: linear-gradient(90deg, transparent 0%, #e85d6b 15%, #e8935a 45%, #c2493a 65%, #6b5a5a 85%, transparent 100%); filter: blur(6px); opacity: 0.85; }
.upsell__split { margin-top: 16px; font-family: 'Inter', sans-serif; font-weight: 300; font-size: clamp(11px, 1vw, 14px); line-height: 1.5; color: rgba(255, 255, 255, 0.75); max-width: 34ch; }
.upsell__chat-split { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.upsell__chat-split strong { display: flex; justify-content: space-between; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(8px, 0.85vw, 11px); color: #fff; }
.upsell__chat-split strong em { font-style: normal; font-weight: 400; color: rgba(255, 255, 255, 0.4); font-size: 0.85em; }
.upsell__chat-split > em { font-style: normal; font-family: 'Inter', sans-serif; font-size: clamp(7.5px, 0.8vw, 10px); color: rgba(255, 255, 255, 0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plans__billing-info { display: flex; gap: 20px; align-items: center; padding: 24px 28px; border-radius: 16px; background: rgba(255, 55, 110, 0.08); border: 1px solid rgba(255, 55, 110, 0.2); margin-bottom: 32px; }
.plans__billing-icon { flex-shrink: 0; font-size: 28px; color: #ff376e; opacity: 0.9; }
.plans__billing-text h3 { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 16px; color: #fff; margin-bottom: 6px; }
.plans__billing-text > p { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.65); max-width: 70ch; }
.plans__billing-highlights { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.plans__billing-highlight { display: flex; align-items: center; gap: 7px; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
.plans__billing-highlight i { color: #90c421; }
.plans__card--free { will-change: box-shadow; }
.plans__icon { text-align: center; font-size: 26px; color: #e8402f; margin-bottom: 8px; }
.plans__card--featured .plans__icon { color: #fff; }
.plans__features li i { flex-shrink: 0; width: 14px; text-align: center; font-size: 13px; }
.plans__features li strong { font-weight: 600; color: #fff; }
.plans__card--featured .plans__features li strong { color: #fff; }
.spec-badge { display: inline-block; padding: 1px 8px; border-radius: 999px; background: rgba(144, 196, 33, 0.16); color: #90c421; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 11px; }
.plans__card--featured .spec-badge { background: rgba(255, 255, 255, 0.2); color: #fff; }
.plans__enterprise-banner { display: flex; align-items: center; gap: 28px; padding: 32px 40px; border-radius: 18px; margin-bottom: 28px; background: linear-gradient(120deg, #100c02 0%, #4a3410 45%, #c9973f 100%); border: 1px solid rgba(201, 151, 63, 0.35); box-shadow: 0 30px 70px -30px rgba(201, 151, 63, 0.4); }
.plans__enterprise-icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: rgba(255, 255, 255, 0.12); font-size: 24px; color: #f3d9a4; }
.plans__enterprise-copy { flex: 1; min-width: 0; }
.plans__enterprise-copy h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #fff; letter-spacing: -0.01em; margin-bottom: 6px; }
.plans__enterprise-copy h3 strong { color: #f3d9a4; font-weight: 700; }
.plans__enterprise-copy p { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.75); max-width: 56ch; }
.plans__enterprise-action { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.plans__enterprise-price { font-family: 'Inter', sans-serif; font-size: 12.5px; color: rgba(255, 255, 255, 0.7); white-space: nowrap; }
.plans__enterprise-price small { color: rgba(255, 255, 255, 0.5); }
.plans__enterprise-cta:hover { background: #f3d9a4; }
.plans__more-link { display: block; text-align: center; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255, 255, 255, 0.5); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.plans__more-link:hover { color: #fff; }
@media (min-width: 768px) {
  .invisible__mockup-frame { width: clamp(280px, calc(100% - 230px), 680px); }
}
@media (max-width: 768px) {
  .invisible { padding-top: 72px !important; padding-bottom: 72px !important; }
  .fragment { padding-top: 72px !important; padding-bottom: 72px !important; }
  .proofgrid { padding-top: 72px !important; padding-bottom: 72px !important; }
  .showcase { padding-top: 72px !important; padding-bottom: 72px !important; }
}
@media (max-width: 900px) {
  .fragment__split { max-width: none; margin: 0 auto; }
  .plans__enterprise-banner { flex-direction: column; align-items: flex-start; text-align: left; padding: 28px; }
  .plans__enterprise-action { align-items: stretch; width: 100%; }
}
@media (max-width: 640px) {
  .plans__billing-info { flex-direction: column; align-items: flex-start; }
}

/* logo do rodapé: agora é a imagem oficial (a regra .logo-mark do header não é mais usada) */
.site-footer .logo-mark { display: block; width: 25px; height: 25px; border-radius: 5px; object-fit: contain; background: none; }
.site-footer .logo-word { font-size: 18px; font-weight: 700; font-family: 'Poppins', var(--font-nav); }

/* ===== Hub — "O Lead consome desde o primeiro clique" =====
   A Astron é a bola no centro: à esquerda o lead entra (captação, aula, engajamento),
   à direita ele compra e fica (venda, upsell, retenção). No desktop feixes de SVG ligam
   cada etapa ao hub e um pulso percorre o funil na ordem; no celular vira uma linha do
   tempo vertical com o hub no topo. Sem JS (ou com "reduzir movimento") tudo fica visível. */
.hub { position: relative; padding: 96px 24px; overflow: hidden; }
@media (min-width: 1024px) { .hub { padding-left: 120px; padding-right: 120px; } }
.hub__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 26% 65%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 42% 10%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1px 1px at 58% 80%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 74% 35%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1.5px 1.5px at 88% 60%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 95% 15%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}
.hub__intro { position: relative; z-index: 1; max-width: 720px; margin: 0 0 48px; }
.hub__kicker { font-family: var(--font-tag); font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.55); margin-bottom: 6px; }
.hub__title { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.2; }
.hub__subtitle { max-width: 58ch; margin: 16px 0 0; font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.62); }
@media (max-width: 1099px) {
  .hub__intro { margin: 0 auto 48px; text-align: center; }
  .hub__title { max-width: 20ch; margin-left: auto; margin-right: auto; }
  .hub__subtitle { margin: 16px auto 0; }
}

.hub__scene { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.hub__beams { display: none; position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 0; }
.hub-beam { fill: none; stroke: rgba(255, 255, 255, 0.18); stroke-width: 1.5; stroke-dasharray: 3 7; stroke-linecap: round; transition: stroke 0.35s ease; }
.hub-beam.is-lit { stroke: #ff5a3d; }
.hub-node { fill: rgba(255, 255, 255, 0.35); transition: fill 0.35s ease; }
.hub-node.is-lit { fill: #ff5a3d; }
.hub-pulse { fill: none; stroke: #ff5a3d; stroke-width: 2.5; stroke-linecap: round; opacity: 0; }

/* --- a bola --- */
.hub__core { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hub__stage { --hs: 220px; position: relative; width: var(--hs); height: var(--hs); display: grid; place-items: center; }
.hub__stage::before { content: ""; position: absolute; left: 50%; top: 50%; width: 260%; height: 260%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(232, 64, 47, 0.16) 0%, rgba(232, 64, 47, 0.05) 34%, transparent 62%); pointer-events: none; }
.hub__ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(255, 255, 255, 0.11); }
.hub__ring--1 { width: 64%; height: 64%; border-color: rgba(255, 90, 61, 0.28); }
.hub__ring--2 { width: 82%; height: 82%; }
.hub__ring--3 { width: 100%; height: 100%; border-color: rgba(255, 255, 255, 0.06); }
.hub__orbit { position: absolute; left: 50%; top: 50%; width: 82%; height: 82%; margin: -41% 0 0 -41%; animation: hubSpin 22s linear infinite; }
.hub__dot { position: absolute; left: 50%; top: 0; width: 13px; height: 13px; margin: -6px 0 0 -6px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #ffb27a, #e8402f); }
.hub__ball {
  position: relative;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8402f;
  box-shadow: 0 0 60px rgba(232, 64, 47, 0.32);
  animation: hubBreath 4.5s ease-in-out infinite;
}
.hub__logo { display: grid; place-items: center; width: 46%; aspect-ratio: 1; }
.hub__logo img { width: 72%; height: 72%; object-fit: contain; }
.hub__burst { position: absolute; left: 50%; top: 50%; width: 52%; aspect-ratio: 1; margin: -26% 0 0 -26%; border-radius: 50%; border: 1.5px solid rgba(255, 90, 61, 0.7); opacity: 0; pointer-events: none; }
.hub__stage.is-burst .hub__burst { animation: hubBurst 1.5s ease-out; }
.hub__label { margin-top: 6px; font-family: var(--font-nav); font-weight: 700; font-size: 15px; color: #fff; }
.hub__sale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 12.5px;
  color: #b8f5d0;
  background: rgba(76, 212, 138, 0.14);
  border: 1px solid rgba(76, 212, 138, 0.4);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hub__core.is-sold .hub__sale { opacity: 1; transform: none; }
@keyframes hubSpin { to { transform: rotate(360deg); } }
@keyframes hubBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes hubBurst { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(3.1); opacity: 0; } }

/* --- etapas --- */
.hub__steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hub-step {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.hub-step:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
.hub.is-live .hub-step:not(.is-active) { opacity: 0.8; }
.hub-step.is-active { border-color: #ff5a3d; background: rgba(255, 255, 255, 0.05); }
.hub-step__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hub-step__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hub-step.is-active .hub-step__num { background: var(--purple); border-color: transparent; }
.hub-step__tag { font-family: var(--font-nav); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #ff8a3d; }
.hub-step__title { margin-bottom: 12px; font-family: var(--font-nav); font-weight: 600; font-size: 16px; line-height: 1.3; color: #fff; }
.hub-step__text { margin-top: 12px; font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.62); }
.hub-step__mock { min-height: 64px; }

/* --- miniaturas das etapas --- */
.hs-row { display: flex; align-items: center; gap: 10px; }
.hs-arrow { flex-shrink: 0; color: #ff8a3d; }
.hs-thumb { position: relative; flex: 0 0 auto; width: 96px; height: 64px; border-radius: 8px; overflow: hidden; }
.hs-thumb img, .hs-video img, .hs-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hs-chip { display: inline-block; padding: 4px 9px; border-radius: 6px; font-family: var(--font-nav); font-weight: 700; font-size: 10px; color: #fff; background: var(--purple); }
.hs-thumb .hs-chip { position: absolute; left: 6px; bottom: 6px; }
.hs-chip--float { position: absolute; left: 8px; bottom: 8px; }
.hs-chip--solid { align-self: flex-start; }
.hs-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; font-family: var(--font-nav); font-weight: 700; font-size: 11.5px; color: #b8f5d0; background: rgba(76, 212, 138, 0.14); border: 1px solid rgba(76, 212, 138, 0.4); }
.hs-video { position: relative; height: 84px; border-radius: 8px; overflow: hidden; }
.hs-post { display: flex; align-items: flex-start; gap: 10px; padding: 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.hs-avatar { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.hs-post__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.hs-post__body b { font-family: var(--font-nav); font-weight: 600; font-size: 11.5px; color: #fff; }
.hs-post__body i { display: block; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.14); }
.hs-post__body i:last-child { width: 62%; }
.hs-heart { color: #ff5c71; }
.hs-buy { display: flex; align-items: center; gap: 12px; }
.hs-cover { flex: 0 0 auto; width: 52px; aspect-ratio: 2 / 3; border-radius: 8px; overflow: hidden; }
.hs-buy__side { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.hs-buy__side small { font-family: var(--font-body); font-size: 11px; color: rgba(255, 255, 255, 0.55); }
.hs-btn { display: inline-block; padding: 8px 16px; border-radius: 8px; font-family: var(--font-nav); font-weight: 700; font-size: 12px; color: #fff; background: var(--purple); }
.hs-ret { display: flex; flex-direction: column; gap: 8px; }
.hs-ret__row { display: flex; justify-content: space-between; font-family: var(--font-nav); font-size: 11.5px; color: rgba(255, 255, 255, 0.7); }
.hs-ret__row b { color: #fff; }
.hs-progress { display: block; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.hs-progress span { display: block; width: 80%; height: 100%; border-radius: 999px; background: var(--purple); }
.hs-cert { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 6px 12px 6px 8px; border-radius: 8px; font-family: var(--font-nav); font-weight: 600; font-size: 11.5px; color: #ffd9b8; background: rgba(255, 138, 61, 0.14); border: 1px solid rgba(255, 138, 61, 0.35); }

.hub__google { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; margin: 36px auto 0; padding: 12px 22px; border-radius: 999px; background: #fff; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 500; font-size: 14px; color: #1f1f1f; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6); }
.hub__google svg { flex-shrink: 0; width: 17px; height: 17px; }

/* --- celular: hub no topo + linha do tempo vertical --- */
@media (max-width: 959px) {
  .hub__stage { --hs: 232px; }
  .hub__core { margin-bottom: 4px; }
  .hub__steps { --rail: 0px; position: relative; padding-left: 50px; gap: 16px; }
  .hub__steps::before { content: ""; position: absolute; left: 17px; top: 18px; bottom: 18px; width: 2px; border-radius: 2px; background: rgba(255, 255, 255, 0.12); }
  .hub__steps::after { content: ""; position: absolute; left: 17px; top: 18px; width: 2px; height: var(--rail); border-radius: 2px; background: #ff5a3d; transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; }
  .hub-step__num { position: absolute; left: -50px; top: 13px; width: 34px; height: 34px; font-size: 13px; background: #15100f; z-index: 2; }
  .hub-step__head { padding-left: 0; }
  .hub-step__text { font-size: 13.5px; }
}
@media (max-width: 420px) {
  .hub { padding: 72px 16px; }
  .hub__title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
}

/* --- desktop: hub no centro, etapas nos dois lados, feixes de SVG --- */
@media (min-width: 960px) {
  .hub__scene { display: grid; grid-template-columns: minmax(0, 1fr) 316px minmax(0, 1fr); column-gap: clamp(48px, 6vw, 84px); align-items: center; }
  .hub__beams { display: block; }
  .hub__stage { --hs: 316px; }
  .hub__core { grid-column: 2; grid-row: 1; }
  .hub__steps { display: contents; }
  .hub-step[data-step="1"], .hub-step[data-step="2"], .hub-step[data-step="3"] { grid-column: 1; }
  .hub-step[data-step="4"], .hub-step[data-step="5"], .hub-step[data-step="6"] { grid-column: 3; }
  .hub-step[data-step="1"], .hub-step[data-step="4"] { grid-row: 2; }
  .hub-step[data-step="2"], .hub-step[data-step="5"] { grid-row: 3; }
  .hub-step[data-step="3"], .hub-step[data-step="6"] { grid-row: 4; }
  .hub__core { grid-row: 2 / span 3; }
}
@media (prefers-reduced-motion: reduce) {
  .hub__orbit, .hub__ball { animation: none; }
  .hub__stage.is-burst .hub__burst { animation: none; }
  .hub-step { transition: none; }
}

/* ===== Ferramentas — clicar no card abre o detalhe na mesma página ===== */
.tools__featured[data-tool], .tools__card[data-tool] { cursor: pointer; }
.tools__featured[data-tool]:focus-visible, .tools__card[data-tool]:focus-visible { outline: 2px solid var(--purple); outline-offset: 4px; border-radius: 14px; }
.tools__card[data-tool]:hover .tools__card-title { color: #fff; }
.tools__card[data-tool]:hover .tools__media { border-color: rgba(255, 255, 255, 0.24); }

body.tools-dialog-open { overflow: hidden; }
.tools-dialog {
  width: min(960px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0f;
  color: #fff;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.tools-dialog::backdrop { background: rgba(0, 0, 0, 0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.tools-dialog[open] { animation: toolsDialogIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }
.tools-dialog[open]::backdrop { animation: toolsBackdropIn 0.3s ease; }
.tools-dialog.is-closing { animation: toolsDialogOut 0.17s ease forwards; }
.tools-dialog.is-closing::backdrop { animation: toolsBackdropOut 0.17s ease forwards; }
@keyframes toolsDialogIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes toolsDialogOut { to { opacity: 0; transform: translateY(8px) scale(0.99); } }
@keyframes toolsBackdropIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes toolsBackdropOut { to { opacity: 0; } }

.tools-dialog__panel { position: relative; display: grid; grid-template-columns: 1fr; }
@media (min-width: 820px) { .tools-dialog__panel { grid-template-columns: 0.9fr 1.1fr; min-height: 460px; } }
.tools-dialog__media { position: relative; min-height: 220px; overflow: hidden; }
.tools-dialog__media .tools__media { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; cursor: default; }
.tools-dialog__media .tools__icon { width: 96px; height: 96px; }
.tools-dialog__media .tools__icon, .tools-dialog__media .tools__showcase { animation: none; }
.tools-dialog__media .tools__showcase { transform: none; object-position: 18% center; }
.tools-dialog__media .tools__plus, .tools-dialog__media .tools__overlay, .tools-dialog__media .tools__corner { display: none; }
.tools-dialog__body { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 44px 36px 36px; }
.tools-dialog__title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.75rem); letter-spacing: -0.01em; line-height: 1.25; color: #fff; }
.tools-dialog__content { display: flex; flex-direction: column; align-items: flex-start; }
.tools-dialog__desc { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); }
.tools-dialog__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 26px; }
.tools-dialog__list li { position: relative; padding-left: 24px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); }
.tools-dialog__list li::before { content: ""; position: absolute; left: 3px; top: 4px; width: 6px; height: 11px; border-right: 2px solid #ff5a3d; border-bottom: 2px solid #ff5a3d; transform: rotate(45deg); }
.tools-dialog__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
.tools-dialog__link { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.6); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.tools-dialog__link:hover { color: #fff; }
.tools-dialog__close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 36px; height: 36px; border-radius: 8px; background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.14); color: #fff; font-size: 13px; cursor: pointer; transition: background 0.2s ease; }
.tools-dialog__close:hover { background: rgba(255, 255, 255, 0.16); }
@media (prefers-reduced-motion: reduce) {
  .tools-dialog[open], .tools-dialog.is-closing, .tools-dialog[open]::backdrop, .tools-dialog.is-closing::backdrop { animation: none; }
}

/* Botões "com o Google" agora são links para o cadastro oficial */
a.btn--google, a.hub__google, a.upsell__google { text-decoration: none; width: fit-content; }
a.btn--google { width: auto; }

/* ---------------------------------------------------
   Páginas de recurso (/recursos/*) — um recurso por página, no mesmo
   estilo dos cards do hub: borda fina, fundo translúcido, brilho suave.
--------------------------------------------------- */
.rec-page { background: #000; }
.rec-wrap { max-width: 1240px; margin: 0 auto; }
.rec-hero { position: relative; padding: 40px 24px 64px; overflow: hidden; }
@media (min-width: 1024px) { .rec-hero, .rec-points, .rec-more, .rec-cta { padding-left: 120px; padding-right: 120px; } .rec-hero { padding-top: 64px; padding-bottom: 96px; } }
.rec-hero__glow { position: absolute; left: 50%; top: -220px; width: min(1100px, 140%); height: 620px; transform: translateX(-50%); background: radial-gradient(closest-side, color-mix(in srgb, var(--c, #e8402f) 26%, transparent), transparent); opacity: 0.55; pointer-events: none; }
.e404__code { font-family: var(--font-body); font-weight: 700; font-size: clamp(64px, 11vw, 120px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 8px; background: linear-gradient(135deg, var(--purple) 0%, #ff9a4d 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rec-hero__inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; display: grid; gap: 48px; align-items: center; }
@media (min-width: 1100px) { .rec-hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 64px; } .rec-hero__inner--center { grid-template-columns: 1fr; text-align: center; } .rec-hero__inner--center .rec-hero__lead { margin-inline: auto; } }
.rec-crumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-family: var(--font-tag); font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.rec-hero__inner--center .rec-crumb { justify-content: center; }
.rec-crumb a { transition: color 0.2s ease; }
.rec-crumb a:hover { color: #fff; }
.rec-crumb [aria-current] { color: rgba(255, 255, 255, 0.85); }
.rec-hero__title { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: clamp(2rem, 4.8vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.1; max-width: 18ch; }
.rec-hero__inner--center .rec-hero__title { max-width: none; }
.rec-hero__lead { margin-top: 20px; max-width: 58ch; font-family: var(--font-body); font-weight: 300; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.65; color: rgba(255, 255, 255, 0.66); }
.rec-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.rec-hero__actions .btn { width: auto; }
.rec-stores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.rec-store { padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.14); font-family: var(--font-body); font-size: 13px; color: rgba(255, 255, 255, 0.8); transition: border-color 0.2s ease, color 0.2s ease; }
.rec-store:hover { border-color: #ff5a3d; color: #fff; }

.rec-stage { position: relative; display: grid; place-items: center; width: 100%; max-width: 420px; aspect-ratio: 1 / 1; margin-inline: auto; border-radius: 24px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); overflow: hidden; }
.rec-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(255, 255, 255, 0.05) 22.4% 22.8%, transparent 23.2% 36%, rgba(255, 255, 255, 0.04) 36.4% 36.8%, transparent 37.2% 50%, rgba(255, 255, 255, 0.03) 50.4% 50.8%, transparent 51.2%); }
.rec-stage__tile { position: relative; width: 36%; aspect-ratio: 1 / 1; border-radius: 28%; background: var(--g); box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.8), 0 0 60px -14px color-mix(in srgb, var(--sh-c, #e8402f) 60%, transparent); }
.rec-stage__tile::after, .rec-chip__ico::after, .rec-card__ico::after { content: ""; position: absolute; inset: 26%; background: #fff; -webkit-mask: var(--ico) center / contain no-repeat; mask: var(--ico) center / contain no-repeat; }

.rec-points { padding: 24px 24px 72px; }
.rec-h2 { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; margin-bottom: 28px; }
.rec-points__list { list-style: none; display: grid; gap: 16px; }
@media (min-width: 800px) { .rec-points__list { grid-template-columns: repeat(3, 1fr); } }
.rec-point { display: flex; flex-direction: column; gap: 14px; padding: 22px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); transition: border-color 0.25s ease, background 0.25s ease; }
.rec-point:hover { border-color: rgba(255, 90, 61, 0.55); background: rgba(255, 255, 255, 0.05); }
.rec-point__num { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255, 90, 61, 0.55); font-family: var(--font-nav); font-weight: 700; font-size: 12px; color: #ff5a3d; }
.rec-point p { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); }

.rec-more { padding: 8px 24px 72px; }
.rec-chips { list-style: none; display: grid; gap: 10px; }
@media (min-width: 620px) { .rec-chips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .rec-chips { grid-template-columns: repeat(3, 1fr); } }
.rec-chip { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); transition: border-color 0.2s ease, background 0.2s ease; }
.rec-chip:hover { border-color: rgba(255, 90, 61, 0.5); background: rgba(255, 255, 255, 0.05); }
.rec-chip__ico { position: relative; flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--g); box-shadow: var(--sh); }
.rec-chip__ico::after { inset: 24%; }
.rec-chip__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rec-chip__txt b { font-family: var(--font-nav); font-weight: 600; font-size: 14px; color: #fff; }
.rec-chip__txt small { font-family: var(--font-body); font-size: 12px; color: rgba(255, 255, 255, 0.5); }
.rec-all { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: #ff5a3d; transition: gap 0.2s ease; }
.rec-all:hover { gap: 12px; }

.rec-cards { list-style: none; display: grid; gap: 14px; }
@media (min-width: 620px) { .rec-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .rec-cards { grid-template-columns: repeat(3, 1fr); } }
.rec-card { position: relative; display: flex; flex-direction: column; gap: 8px; height: 100%; padding: 24px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
.rec-card:hover { border-color: rgba(255, 90, 61, 0.55); background: rgba(255, 255, 255, 0.05); transform: translateY(-2px); }
.rec-card__ico { position: relative; width: 48px; height: 48px; margin-bottom: 8px; border-radius: 12px; background: var(--g); box-shadow: var(--sh); }
.rec-card__ico::after { inset: 24%; }
.rec-card b { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: #fff; }
.rec-card p { font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); }
.rec-card__more { margin-top: auto; padding-top: 8px; font-family: var(--font-body); font-weight: 600; font-size: 13px; color: #ff5a3d; }

.rec-cta { padding: 0 24px 96px; }
.rec-cta__inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 48px 24px; border-radius: 20px; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(232, 64, 47, 0.16), transparent 70%), rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); }
.rec-cta__title { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; max-width: 22ch; margin: 0 auto; }
.rec-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.rec-cta__actions .btn { width: auto; }
@media (max-width: 520px) { .rec-hero__actions .btn, .rec-cta__actions .btn { width: 100%; justify-content: center; } }
.rec-hero__actions .btn, .rec-cta__actions .btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; }

/* ---------------------------------------------------
   Páginas de recurso — versão rica: hero com mockup do recurso, números e
   logos, seção "o que é" com fluxo, cards com imagem, passos e faixa final.
   A cor de destaque vem de --acc (a mesma do ícone do recurso no menu).
--------------------------------------------------- */
.rec-hero__glow { background: radial-gradient(closest-side, color-mix(in srgb, var(--acc, #e8402f) 30%, transparent), transparent); }

/* -- mockups do hero -- */
.rv { position: relative; width: 100%; max-width: 540px; margin-inline: auto; padding: 22px 12px 32px; }
.rv-win { position: relative; border-radius: 18px; background: rgba(255, 255, 255, 0.035); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85); overflow: hidden; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.rv-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.rv-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.rv-bar span { margin-left: 8px; font-family: var(--font-body); font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.rv-body { display: grid; gap: 12px; padding: 16px; }
.rv-line { display: block; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); }
.rv-line.is-dim { background: rgba(255, 255, 255, 0.08); }
.rv-line.is-title { height: 10px; background: rgba(255, 255, 255, 0.24); }
.rv-line.rv-grow { flex: 1; }
.rv-ava { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.16); }
.rv-flag { width: 26px; height: 18px; border-radius: 3px; object-fit: cover; flex-shrink: 0; }
.rv-logo { width: 32px; height: 32px; flex-shrink: 0; padding: 5px; border-radius: 8px; object-fit: contain; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); }
.rv-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }
.rv-row b { font-family: var(--font-body); font-weight: 600; font-size: 13.5px; color: #fff; }
.rv-row > .rv-tog, .rv-row > .rv-radio { margin-left: auto; }
.rv-row--plan b { min-width: 64px; }
.rv-tag { padding: 3px 9px; border-radius: 6px; background: rgba(255, 255, 255, 0.07); font-family: var(--font-body); font-size: 11px; color: rgba(255, 255, 255, 0.7); white-space: nowrap; }
.rv-tag.is-ok { background: rgba(46, 204, 113, 0.14); color: #6ee7a1; }
.rv-tog { position: relative; flex-shrink: 0; width: 30px; height: 18px; border-radius: 9px; background: rgba(255, 255, 255, 0.16); }
.rv-tog::after { content: ""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: left 0.2s ease; }
.rv-tog.is-on { background: var(--acc, #e8402f); }
.rv-tog.is-on::after { left: 14px; }
.rv-radio { width: 16px; height: 16px; flex-shrink: 0; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.28); }
.rv-radio.is-on { border-color: var(--acc, #e8402f); background: radial-gradient(circle, var(--acc, #e8402f) 0 38%, transparent 42%); }
.rv-ic { display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; background: color-mix(in srgb, var(--acc, #e8402f) 22%, transparent); color: var(--acc, #e8402f); font-size: 13px; }
.rv-banner { aspect-ratio: 16 / 6.5; border-radius: 12px; overflow: hidden; }
.rv-banner img, .rv-covers img { display: block; width: 100%; height: 100%; object-fit: cover; }
.rv-covers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.rv-covers img { aspect-ratio: 2 / 3; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); }
.rv-covers--sm { grid-template-columns: repeat(3, 1fr); }
.rv-covers--sm img { aspect-ratio: 16 / 10; }
.rv-post { display: flex; gap: 12px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); }
.rv-post__c { flex: 1; display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.rv-post__c b { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: #fff; }
.rv-react { display: flex; gap: 12px; font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.rv-cert { position: relative; display: grid; justify-items: center; gap: 10px; padding: 28px 18px; border-radius: 12px; text-align: center; background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)); border: 1px solid rgba(255, 255, 255, 0.14); }
.rv-cert small { font-family: var(--font-tag); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.rv-cert em { font-family: var(--font-headline); font-size: 34px; font-style: italic; line-height: 1; color: #fff; }
.rv-cert .rv-line { margin-inline: auto; }
.rv-cert__seal { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--acc, #e8402f), #ffb347); color: #1a1208; font-size: 18px; }
.rv-field { display: grid; gap: 6px; }
.rv-field small { font-family: var(--font-body); font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.rv-field .rv-line { width: 100% !important; height: 36px; border-radius: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); }
.rv-btn { display: block; padding: 11px 18px; border-radius: 999px; text-align: center; background: var(--purple, #e8402f); font-family: var(--font-tag); font-weight: 600; font-size: 13px; color: #fff; }
.rv-float { position: absolute; }
.rv-float--a { right: -2%; bottom: 18%; }
.rv-lead { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; background: rgba(20, 12, 10, 0.92); border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.8); }
.rv-lead b { display: block; font-family: var(--font-body); font-size: 13px; color: #fff; }
.rv-lead small { font-family: var(--font-body); font-size: 11px; color: #6ee7a1; }
.rv-lead > i { color: #6ee7a1; }
.rv-file { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 13px; color: #fff; }
.rv-file i { color: var(--acc, #e8402f); font-size: 18px; }
.rv-prog { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.rv-prog span { display: block; width: 100%; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--acc, #e8402f), #ffb347); }
.rv-video { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #000; }
.rv-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.rv-wm { position: absolute; inset: -20%; display: flex; flex-wrap: wrap; align-content: space-around; justify-content: space-around; transform: rotate(-18deg); pointer-events: none; }
.rv-wm span { font-family: var(--font-body); font-size: 11px; color: rgba(255, 255, 255, 0.4); padding: 6px 12px; }
.rv-lock { position: absolute; inset: 0; margin: auto; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.rv-stack { display: flex; }
.rv-stack .rv-ava { margin-left: -8px; border: 2px solid #17110f; width: 28px; height: 28px; }
.rv-stack .rv-ava:first-child { margin-left: 0; }
.rv-doc { display: grid; gap: 8px; padding: 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); }
.rv-check { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 13px; color: rgba(255, 255, 255, 0.85); }
.rv-cbx { display: grid; place-items: center; width: 20px; height: 20px; flex-shrink: 0; border-radius: 6px; background: var(--acc, #e8402f); color: #fff; font-size: 11px; }
.rv-swatches { display: flex; align-items: center; gap: 8px; }
.rv-swatches small { margin-right: 6px; font-family: var(--font-body); font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.rv-sw { width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.22); }
.rv-brand { display: flex; align-items: center; gap: 10px; }
.rv-brand b { font-family: var(--font-body); font-size: 13px; color: #fff; }
.rv-logo-tile { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--acc, #e8402f), #ffb347); color: #1a1208; font-size: 14px; }
.rv-solo { display: flex; justify-content: center; }
.rv-phone { position: relative; width: min(250px, 70%); padding: 12px 10px 10px; border-radius: 34px; background: #0b0908; border: 2px solid rgba(255, 255, 255, 0.18); box-shadow: 0 30px 70px -26px rgba(0, 0, 0, 0.9); display: grid; gap: 10px; }
.rv-phone__notch { justify-self: center; width: 56px; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.14); }
.rv-phone__video { position: relative; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; }
.rv-phone__video img { width: 100%; height: 100%; object-fit: cover; }
.rv-phone__meta { display: grid; gap: 6px; padding: 0 4px; }
.rv-phone__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.rv-phone__cards img { display: block; width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 8px; }
.rv-phone__tabs { display: flex; justify-content: space-around; padding: 8px 0 2px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.5); font-size: 13px; }
.rv-phone__tabs i:first-child { color: var(--acc, #e8402f); }
.rv-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.18); }
.rv-chip { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(20, 12, 10, 0.88); border: 1px solid rgba(255, 255, 255, 0.14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: #fff; white-space: nowrap; box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.8); }
.rv-chip i { color: rgba(255, 255, 255, 0.75); }
.rv-chip.is-acc { border-color: color-mix(in srgb, var(--acc, #e8402f) 60%, transparent); }
.rv-chip.is-acc i { color: var(--acc, #e8402f); }
.rv-chip--a { top: 4px; right: 4%; }
.rv-chip--b { bottom: 6px; left: 4%; }
@media (prefers-reduced-motion: no-preference) {
  .rv-chip--a { animation: rvFloat 6s ease-in-out infinite; }
  .rv-chip--b { animation: rvFloat 7s ease-in-out -2s infinite; }
}
@keyframes rvFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* -- números e logos -- */
.rec-proof { padding: 0 24px 56px; }
@media (min-width: 1024px) { .rec-proof, .rec-about, .rec-how, .rec-band { padding-left: 120px; padding-right: 120px; } }
.rec-stats { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 24px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 800px) { .rec-stats { grid-template-columns: repeat(4, 1fr); } }
.rec-stats b { display: block; font-family: var(--font-body); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; color: #fff; }
.rec-stats span { display: block; margin-top: 4px; font-family: var(--font-body); font-weight: 300; font-size: 13px; line-height: 1.4; color: rgba(255, 255, 255, 0.55); }
.rec-proof__label { margin-top: 40px; text-align: center; font-family: var(--font-tag); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.rec-logos { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 40px; margin-top: 20px; }
.rec-logos img { display: block; height: 26px; width: auto; opacity: 0.7; }

/* -- "o que é": texto + fluxo -- */
.rec-about { padding: 24px 24px 80px; }
.rec-about__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1100px) { .rec-about__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 72px; } }
.rec-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 6px 14px 6px 6px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.03); font-family: var(--font-tag); font-weight: 500; font-size: 13px; color: rgba(255, 255, 255, 0.8); }
.rec-kicker__ico, .rec-band__ico, .rv-mark { position: relative; display: block; flex-shrink: 0; background: var(--g); }
.rec-kicker__ico { width: 26px; height: 26px; border-radius: 8px; }
.rec-kicker__ico::after, .rec-band__ico::after, .rv-mark::after { content: ""; position: absolute; inset: 24%; background: #fff; -webkit-mask: var(--ico) center / contain no-repeat; mask: var(--ico) center / contain no-repeat; }
.rec-h2--lg { font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 18ch; margin-bottom: 0; }
.rec-about__p { margin-top: 18px; max-width: 52ch; font-family: var(--font-body); font-weight: 300; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7; color: rgba(255, 255, 255, 0.66); }
.rec-about .rec-all { margin-top: 26px; }
.rv-flow { position: relative; display: grid; grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto; align-items: center; padding: 32px 20px; border-radius: 22px; background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--acc, #e8402f) 14%, transparent), transparent 62%), rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); overflow: hidden; }
@media (min-width: 520px) { .rv-flow { padding: 40px 32px; } }
.rv-flow__l, .rv-flow__r { display: grid; gap: 14px; }
.rv-n { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.rv-flow__l .rv-n:nth-child(2) { margin-left: 18px; }
.rv-beam { position: relative; height: 2px; background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--acc, #e8402f) 70%, transparent) 0 6px, transparent 6px 12px); opacity: 0.7; }
.rv-beam::after { content: ""; position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--acc, #e8402f); box-shadow: 0 0 12px var(--acc, #e8402f); }
@media (prefers-reduced-motion: no-preference) { .rv-beam::after { animation: rvBeam 2.6s linear infinite; } }
@keyframes rvBeam { from { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } to { left: calc(100% - 8px); opacity: 0; } }
.rv-mark { width: 84px; height: 84px; border-radius: 24px; box-shadow: 0 24px 56px -20px rgba(0, 0, 0, 0.85), 0 0 60px -18px var(--acc, #e8402f); }
@media (min-width: 520px) { .rv-mark { width: 104px; height: 104px; border-radius: 28px; } }
.rv-res { display: grid; grid-template-columns: auto 1fr; gap: 8px 10px; align-items: center; min-width: 96px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 520px) { .rv-res { min-width: 130px; } }
.rv-res__i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: color-mix(in srgb, var(--acc, #e8402f) 22%, transparent); color: var(--acc, #e8402f); font-size: 12px; grid-row: span 2; }

/* -- cards com imagem -- */
.rv-cards { list-style: none; display: grid; gap: 16px; }
@media (min-width: 720px) { .rv-cards { grid-template-columns: repeat(3, 1fr); } }
.rv-card { overflow: hidden; border-radius: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); transition: border-color 0.25s ease, transform 0.25s ease; }
.rv-card:hover { border-color: color-mix(in srgb, var(--acc, #e8402f) 60%, transparent); transform: translateY(-3px); }
.rv-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #0b0b0b; }
.rv-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.rv-card:hover .rv-card__media img { transform: scale(1.05); }
.rv-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%); pointer-events: none; }
.rv-card.is-logo .rv-card__media { background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--acc, #e8402f) 18%, transparent), transparent 70%), #0b0b0b; }
.rv-card.is-logo .rv-card__media img { position: absolute; inset: 0; width: 104px; height: 104px; margin: auto; padding: 20px; object-fit: contain; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 26px; box-shadow: 0 20px 44px -18px rgba(0, 0, 0, 0.8); z-index: 1; }
.rv-card.is-logo:hover .rv-card__media img { transform: scale(1.06); }
.rv-card__body { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px 22px; }
.rv-card__n { display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--acc, #e8402f) 65%, transparent); font-family: var(--font-nav); font-weight: 700; font-size: 12px; color: var(--acc, #e8402f); }
.rv-card__body p { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.86); }

/* -- como funciona -- */
.rec-how { padding: 0 24px 80px; }
.rv-steps { list-style: none; display: grid; gap: 14px; counter-reset: s; }
@media (min-width: 760px) { .rv-steps { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.rv-steps li { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 22px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); }
.rv-steps__n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: color-mix(in srgb, var(--acc, #e8402f) 20%, transparent); border: 1px solid color-mix(in srgb, var(--acc, #e8402f) 55%, transparent); font-family: var(--font-nav); font-weight: 700; font-size: 14px; color: #fff; }
.rv-steps p { font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1.4; color: #fff; }
@media (min-width: 760px) { .rv-steps li:not(:last-child)::after { content: ""; position: absolute; top: 39px; left: calc(100% + 4px); width: 28px; border-top: 1px dashed color-mix(in srgb, var(--acc, #e8402f) 70%, transparent); } }

/* -- faixa "explore outras ferramentas" -- */
.rec-band { padding: 0 24px 72px; }
.rec-band__inner { display: grid; gap: 28px; max-width: 1240px; margin: 0 auto; padding: 32px 24px; border-radius: 20px; background: linear-gradient(120deg, rgba(232, 64, 47, 0.28), rgba(255, 138, 61, 0.1) 55%, rgba(255, 255, 255, 0.03)); border: 1px solid rgba(255, 90, 61, 0.3); }
@media (min-width: 900px) { .rec-band__inner { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: center; padding: 40px 44px; gap: 48px; } }
.rec-band__title { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.01em; line-height: 1.2; color: #fff; max-width: 20ch; }
.rec-band__grid { list-style: none; display: grid; gap: 4px 12px; }
@media (min-width: 560px) { .rec-band__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .rec-band__grid { grid-template-columns: repeat(3, 1fr); } }
.rec-band__grid a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-family: var(--font-nav); font-weight: 600; font-size: 13.5px; color: rgba(255, 255, 255, 0.9); transition: background 0.2s ease; }
.rec-band__grid a:hover { background: rgba(255, 255, 255, 0.09); }
.rec-band__ico { width: 26px; height: 26px; border-radius: 8px; }
.rec-band__ico::after { inset: 22%; }
.rec-points { padding-bottom: 72px; }
.rec-hero__actions .btn { flex-shrink: 0; }
.rv-card__media--cl { display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--acc, #e8402f) 22%, transparent), transparent 70%), #0b0b0b; }
.rv-card__media--cl::after { display: none; }
.rv-cl { display: flex; align-items: center; }
.rv-card__media .rv-cl__a { width: 68px; height: 68px; margin-left: -16px; border-radius: 50%; object-fit: cover; border: 3px solid #0b0b0b; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.8); }
.rv-card__media .rv-cl__a:first-child { margin-left: 0; }
.rv-card__media .rv-cl__a:nth-child(2) { width: 88px; height: 88px; z-index: 1; }
.rv-card:hover .rv-card__media--cl img { transform: none; }
.rv-card__media .rv-cl__a { object-position: center; }
.rv-cl__badge { position: absolute; right: 22px; bottom: 20px; z-index: 2; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--acc, #e8402f); color: #fff; font-size: 14px; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.8); }
.rv--form { padding-bottom: 60px; }
.rv-float--a { right: 0; bottom: 4px; }
.rv-row--plan b { min-width: 72px; }

/* >>> POLIMENTO RECURSOS v4 — início (para desfazer, apague daqui até o marcador "fim")
   Hierarquia de seções inspirada em páginas de produto: sub-navegação, logos logo após o hero,
   capacidades → prova numérica → como funciona → ferramentas relacionadas.
   Sistema visual da home: superfícies chapadas, bordas de 1px, raios 8/12/16, cor sólida por recurso,
   ícones de traço 1,5. Sem vidro, sem brilho forte, sem gradiente em cards. */
.rec-page { --r1: 8px; --r2: 12px; --r3: 16px; --line: rgba(255, 255, 255, 0.09); --line2: rgba(255, 255, 255, 0.16); --surf: rgba(255, 255, 255, 0.03); --mut: rgba(255, 255, 255, 0.62); --dim: rgba(255, 255, 255, 0.5); }
.rec-page .i { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* sub-navegação fixa do recurso */
.rec-sub { position: sticky; top: 0; z-index: 15; padding-inline: 24px; background: rgba(0, 0, 0, 0.92); border-bottom: 1px solid var(--line); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
@media (min-width: 1024px) { .rec-sub { padding-inline: 120px; } }
.rec-sub__in { display: flex; align-items: center; gap: 20px; max-width: 1240px; height: 56px; margin-inline: auto; }
.rec-sub__name { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: #fff; white-space: nowrap; }
.rec-sub__nav { display: none; gap: 2px; }
@media (min-width: 760px) { .rec-sub__nav { display: flex; } }
.rec-sub__nav a { padding: 8px 12px; border-radius: var(--r1); font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: var(--mut); transition: color 0.2s ease, background 0.2s ease; }
.rec-sub__nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.rec-sub .rec-sub__cta { width: auto; min-height: 36px; margin-left: auto; padding: 0 16px; font-size: 13px; }
.rec-about, .rec-how, .rec-band { scroll-margin-top: 72px; }

/* hero */
.rec-hero__glow { opacity: 0.5; background: radial-gradient(closest-side, color-mix(in srgb, var(--acc) 20%, transparent), transparent); }
.rec-hero__title { font-weight: 600; letter-spacing: -0.035em; line-height: 1.06; text-wrap: balance; }
.rec-hero__mute { color: rgba(255, 255, 255, 0.5); }
.rec-crumb { color: var(--dim); }
.rec-hero__actions .btn { min-height: 50px; }

/* janela do mockup: superfície chapada, sem vidro */
.rv-win { border-radius: var(--r2); background: #0c0c0c; border: 1px solid var(--line); box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.85); -webkit-backdrop-filter: none; backdrop-filter: none; }
.rv-bar { gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.rv-bar > span:last-child { margin: 0; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }
.rv-bar__t { display: grid; place-items: center; width: 22px; height: 22px; flex: none; border-radius: 6px; background: var(--acc); color: #fff; font-size: 12px; }
.rv-body { gap: 10px; }
.rv-line { background: rgba(255, 255, 255, 0.12); }
.rv-line.is-dim { background: rgba(255, 255, 255, 0.07); }
.rv-row, .rv-post { border-radius: var(--r1); background: rgba(255, 255, 255, 0.035); border: 0; }
.rv-tag { border-radius: 6px; background: rgba(255, 255, 255, 0.07); }
.rv-tog.is-on { background: var(--acc); }
.rv-radio.is-on { border-color: var(--acc); background: radial-gradient(circle, var(--acc) 0 38%, transparent 42%); }
.rv-ic { border-radius: 8px; background: var(--acc); color: #fff; }
.rv-ic .i { font-size: 15px; }
.rv-react { align-items: center; }
.rv-react .i { font-size: 14px; }
.rv-react .i:nth-of-type(2) { margin-left: 8px; }
.rv-cert__seal { background: var(--acc); color: #fff; }
.rv-cert__seal .i { font-size: 22px; }
.rv-btn { border-radius: var(--r1); }
.rv-lead { border-radius: var(--r2); background: #0f0f0f; border: 1px solid var(--line2); box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.85); }
.rv-lead > .i { font-size: 18px; color: #6ee7a1; }
.rv-file .i { font-size: 20px; color: var(--acc); }
.rv-prog span { background: var(--acc); }
.rv-lock .i { font-size: 18px; }
.rv-cbx { background: var(--acc); }
.rv-cbx .i { font-size: 13px; }
.rv-logo-tile { background: var(--acc); color: #fff; }
.rv-logo-tile .i { font-size: 15px; }
.rv-phone { border-radius: 30px; }
.rv-phone__tabs .i { font-size: 18px; }
.rv-phone__tabs .i:first-child { color: var(--acc); }
.rv-chip { padding: 7px 12px; border-radius: var(--r1); background: #0f0f0f; border: 1px solid var(--line2); box-shadow: 0 12px 24px -14px rgba(0, 0, 0, 0.85); -webkit-backdrop-filter: none; backdrop-filter: none; font-size: 12px; animation: none !important; }
.rv-chip .i { font-size: 14px; color: var(--dim); }
.rv-chip.is-acc { border-color: color-mix(in srgb, var(--acc) 50%, transparent); }
.rv-chip.is-acc .i { color: var(--acc); }

/* logos logo após o hero, numa faixa só */
.rec-strip-sec { padding: 0 24px 72px; }
@media (min-width: 1024px) { .rec-strip-sec { padding-inline: 120px; } }
.rec-strip { display: flex; flex-direction: column; gap: 18px; padding: 22px 0; border-block: 1px solid var(--line); }
@media (min-width: 900px) { .rec-strip { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; } }
.rec-strip__label { max-width: 22ch; font-family: var(--font-tag); font-weight: 500; font-size: 12px; line-height: 1.45; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); }
.rec-strip .rec-logos { flex: 1; justify-content: flex-start; margin: 0; }
@media (min-width: 900px) { .rec-strip .rec-logos { justify-content: flex-end; } }
.rec-logos img { height: 26px; opacity: 0.75; }

/* títulos e prova numérica (agora depois das capacidades) */
.rec-h2 { font-weight: 500; letter-spacing: -0.02em; }
.rec-proof { padding: 0 24px 88px; }
@media (min-width: 1024px) { .rec-proof { padding-inline: 120px; } }
.rec-proof .rec-h2 { margin-bottom: 28px; }
.rec-stats { padding-top: 28px; border-top: 1px solid var(--line); }
.rec-stats b { font-weight: 500; letter-spacing: -0.035em; }
.rec-stats span { color: var(--dim); }

/* "o que é" */
.rec-kicker { border-radius: var(--r1); background: #141414; border: 1px solid var(--line); }
.rec-kicker__ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 6px; background: var(--c, var(--acc)); color: #fff; font-size: 14px; }
.rec-kicker__ico::after, .rec-band__ico::after, .rec-card__ico::after { display: none; }
.rec-sub__name .rec-kicker__ico { width: 24px; height: 24px; font-size: 13px; }
.rec-all { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; border-bottom: 1px solid rgba(255, 255, 255, 0.3); color: #fff; }
.rec-all .i { font-size: 16px; }
.rec-all:hover { border-color: var(--acc); }
.rv-flow { border-radius: var(--r3); background: var(--surf); border: 1px solid var(--line); }
.rv-n { border-radius: var(--r2); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); color: rgba(255, 255, 255, 0.75); }
.rv-n .i { font-size: 18px; }
.rv-beam { height: 1px; background: var(--line2); opacity: 1; }
.rv-beam::after { top: -3px; width: 7px; height: 7px; background: var(--acc); box-shadow: none; }
.rv-mark { display: grid; place-items: center; width: 92px; height: 92px; border-radius: 24px; background: var(--acc); color: #fff; box-shadow: none; }
.rv-mark::after { display: none; }
.rv-mark .i { font-size: 44px; stroke-width: 1.35; }
.rv-res { border-radius: var(--r2); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); }
.rv-res__i { border-radius: 8px; background: var(--acc); color: #fff; }
.rv-res__i .i { font-size: 15px; }

/* capacidades: cards com imagem + ícone */
.rv-card { border-radius: var(--r2); background: var(--surf); border: 1px solid var(--line); transition: border-color 0.2s ease; }
.rv-card:hover { border-color: var(--line2); transform: none; }
.rv-card__media::after { display: none; }
.rv-card__media--cl, .rv-card.is-logo .rv-card__media { background: #0b0b0b; }
.rv-card__body { align-items: center; gap: 14px; padding: 16px 18px; }
.rv-card__ic { display: grid; place-items: center; width: 32px; height: 32px; flex: none; border-radius: 9px; background: var(--acc); color: #fff; font-size: 16px; }
.rv-card__body p { font-weight: 500; font-size: 15px; }
.rv-cl__badge { background: var(--acc); }
.rv-cl__badge .i { font-size: 15px; }

/* como funciona: ícone + número, sem conectores */
.rv-steps li { gap: 22px; padding: 20px; border-radius: var(--r2); background: var(--surf); border: 1px solid var(--line); }
.rv-steps li:not(:last-child)::after { display: none; }
.rv-steps__top { display: flex; align-items: center; justify-content: space-between; }
.rv-steps__ic { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--acc); color: #fff; font-size: 18px; }
.rec-page .rv-steps__n { display: block; width: auto; height: auto; border: 0; background: none; border-radius: 0; font-family: var(--font-tag); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; color: var(--dim); }

/* ferramentas relacionadas */
.rec-band__inner { border-radius: var(--r3); background: var(--surf); border: 1px solid var(--line); }
.rec-band__title { font-weight: 500; letter-spacing: -0.02em; }
.rec-band__grid a { gap: 12px; padding: 10px; border-radius: var(--r1); }
.rec-band__ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--c); color: #fff; font-size: 16px; }
.rec-band__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rec-band__txt b { font-family: var(--font-nav); font-weight: 600; font-size: 13.5px; color: #fff; }
.rec-band__txt small { font-family: var(--font-body); font-size: 12px; line-height: 1.35; color: var(--dim); }
.rec-band__go { margin-left: auto; font-size: 16px; color: var(--dim); transition: transform 0.2s ease, color 0.2s ease; }
.rec-band__grid a:hover .rec-band__go { color: #fff; transform: translate(2px, -2px); }

/* CTA final */
.rec-cta__inner { border-radius: var(--r3); background: radial-gradient(ellipse at 50% 0%, rgba(232, 64, 47, 0.1), transparent 65%), var(--surf); border: 1px solid var(--line); }
.rec-cta__title { font-weight: 500; letter-spacing: -0.02em; }

/* índice */
.rec-card { border-radius: var(--r2); background: var(--surf); border: 1px solid var(--line); transition: border-color 0.2s ease; }
.rec-card:hover { border-color: var(--line2); transform: none; }
.rec-card__ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 8px; border-radius: 12px; background: var(--c); color: #fff; font-size: 22px; box-shadow: none; position: relative; }
.rec-card__more { display: inline-flex; align-items: center; gap: 6px; color: var(--acc); }
.rec-card__more .i { font-size: 14px; }
/* margens laterais iguais em todas as seções (24px no celular, 120px no desktop, como a home) */
.rec-page .rec-about, .rec-page .rec-points, .rec-page .rec-how, .rec-page .rec-band, .rec-page .rec-cta { padding-inline: 24px; }
@media (min-width: 1024px) { .rec-page .rec-about, .rec-page .rec-points, .rec-page .rec-how, .rec-page .rec-band, .rec-page .rec-cta { padding-inline: 120px; } }
.rec-page .rec-band__inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
@media (min-width: 900px) { .rec-page .rec-band__inner { padding: 40px 44px; } }
.rec-band__title { max-width: 34ch; }
.rec-band__grid { gap: 4px 20px; }
.rec-sub__name { min-width: 0; }
.rec-sub__t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* celulares pequenos (320px): nada pode empurrar a largura da página */
.rv-flow, .rv-win, .rv-body { min-width: 0; }
@media (max-width: 1099px) {
  .rec-page .rec-about__grid, .rec-page .rec-hero__inner { grid-template-columns: minmax(0, 1fr); }
  /* nas páginas de recurso, texto e imagem viravam empilhados aqui, mas só a
     imagem ficava centralizada — o texto ficava grudado na esquerda */
  .rec-hero__copy, .rec-about__copy { text-align: center; }
  .rec-hero__title { max-width: none; }
  .rec-about__p, .rec-h2--lg { margin-left: auto; margin-right: auto; }
  .rec-crumb, .rec-hero__actions { justify-content: center; }
  .rec-all { margin-left: auto; margin-right: auto; width: fit-content; }
  .rec-band__title { margin-left: auto; margin-right: auto; text-align: center; }
}
@media (max-width: 400px) {
  .rv-flow { padding: 24px 14px; }
  .rv-mark { width: 68px; height: 68px; border-radius: 18px; }
  .rv-mark .i { font-size: 32px; }
  .rv-n { width: 36px; height: 36px; }
  .rv-res { min-width: 0; padding: 8px; }
  .rv-row--plan b { min-width: 0; }
  .rv-row > .rv-tag:not(.is-ok) { display: none; }
}
/* o "html, body { height: 100% }" do site limitaria a área da barra fixa; aqui o corpo cresce com o conteúdo */
body.rec-page, body.home-page { height: auto; }
/* números sem título: sem a linha extra e mais próximos da faixa de logos */
.rec-proof .rec-stats { padding-top: 0; border-top: 0; }
.rec-strip-sec { padding-bottom: 56px; }
/* <<< POLIMENTO RECURSOS v4 — fim */

/* >>> IMAGENS DOS CARDS v5 — início (para desfazer, apague daqui até o marcador "fim")
   Cada card mostra uma foto real do produto/design ou uma ilustração da própria frase. */
.rv-certimg img { display: block; width: 100%; border-radius: 6px; }
.rv-card__media .il { position: absolute; inset: 0; display: grid; place-items: center; padding: 16px; }
.rv-card__media .il--photo, .rv-card__media .il--flush { padding: 0; }
.rv-card__media .il--contain { padding: 12px; }
.rv-card__media .il__img { display: block; width: 100%; height: 100%; object-fit: cover; transform: none; }
.rv-card__media .il--contain .il__img { object-fit: contain; }
.rv-card:hover .rv-card__media .il img { transform: none; }
.rv-card__media .il--zoom .il__img, .rv-card:hover .rv-card__media .il--zoom .il__img { transform: scale(var(--z)); }
.rv-card__media .il--zoom { overflow: hidden; }
.il-chip { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: var(--r1); background: #0f0f0f; border: 1px solid var(--line2); font-family: var(--font-body); font-weight: 600; font-size: 11.5px; color: #fff; }
.il-chip .i { font-size: 14px; color: var(--acc); }

.il-card { display: grid; gap: 8px; width: 100%; max-width: 320px; padding: 12px; border-radius: var(--r2); background: #101010; border: 1px solid var(--line); }
.il-head { display: flex; align-items: center; gap: 8px; }
.il-head b { font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: rgba(255, 255, 255, 0.88); }
.il-t { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 7px; background: var(--acc); color: #fff; font-size: 14px; }
.il-t.sm { width: 22px; height: 22px; border-radius: 6px; font-size: 12px; }
.il-t.lg { width: 56px; height: 56px; border-radius: 16px; font-size: 26px; }
.il-row { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: var(--r1); background: rgba(255, 255, 255, 0.04); font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: #fff; }
.il-row.is-on { background: color-mix(in srgb, var(--acc) 22%, transparent); }
.il-mid { display: flex; align-items: center; flex: 1; min-width: 0; }
.il-mid b { font-weight: 600; }
.il-bar { display: block; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.16); }
.il-bar.is-dim { background: rgba(255, 255, 255, 0.09); }
.rv-card__media .il-ava { width: 28px; height: 28px; flex: none; border-radius: 50%; object-fit: cover; }
.rv-card__media .il-poster { width: 26px; height: 36px; flex: none; border-radius: 5px; object-fit: cover; }
.rv-card__media .il-flag { width: 24px; height: 17px; flex: none; border-radius: 3px; object-fit: cover; }
.il-grip { display: grid; color: var(--dim); font-size: 16px; }
.il-ok { display: grid; place-items: center; width: 20px; height: 20px; flex: none; border-radius: 50%; background: color-mix(in srgb, var(--acc) 30%, transparent); color: var(--acc); font-size: 12px; }
.il-no { display: grid; place-items: center; width: 20px; height: 20px; flex: none; border-radius: 50%; color: var(--dim); font-size: 12px; }
.il-no--x { background: rgba(255, 107, 107, 0.14); color: #ff8a8a; }
.il-pill { padding: 3px 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); font-size: 11px; color: var(--mut); white-space: nowrap; }
.il-pill.is-ok { background: rgba(46, 204, 113, 0.14); color: #6ee7a1; }
.il-code { margin-left: auto; font-family: var(--font-tag); font-weight: 600; font-size: 11px; color: var(--dim); }
.il-code + .il-ok { margin-left: 4px; }
.il-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: var(--r1); background: var(--purple); font-family: var(--font-tag); font-weight: 600; font-size: 12.5px; color: #fff; }
.il-btn .i { font-size: 15px; }

.il-stack { display: grid; gap: 10px; width: min(100%, 240px); }
.il-store { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--r2); background: #101010; border: 1px solid var(--line2); color: #fff; }
.il-store .i { font-size: 24px; }
.il-store small { display: block; font-family: var(--font-body); font-size: 10.5px; color: var(--dim); }
.il-store b { font-family: var(--font-body); font-weight: 600; font-size: 15px; }

.il-net { position: relative; width: 100%; max-width: 340px; aspect-ratio: 4 / 3; }
.il-net > .il-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.il-net line { stroke: var(--line2); stroke-width: 1; stroke-dasharray: 3 4; vector-effect: non-scaling-stroke; }
.il-node { position: absolute; display: grid; justify-items: center; gap: 4px; transform: translate(-50%, -50%); }
.il-node small { font-family: var(--font-body); font-size: 10.5px; color: var(--mut); white-space: nowrap; }
.rv-card__media .il-node .il-ava { width: 40px; height: 40px; border: 2px solid #0b0b0b; box-shadow: 0 0 0 1px var(--line2); }
.rv-card__media .il-logo { width: 40px; height: 40px; padding: 8px; border-radius: 12px; object-fit: contain; background: #171717; border: 1px solid var(--line2); }
.il-node .il-t { width: 40px; height: 40px; border-radius: 12px; font-size: 18px; }
.il-node .il-t.lg { width: 56px; height: 56px; border-radius: 16px; font-size: 26px; }

.il-chat { display: grid; gap: 8px; width: 100%; max-width: 300px; }
.il-msg { display: flex; align-items: center; gap: 8px; width: fit-content; max-width: 88%; padding: 8px 12px; border-radius: 12px 12px 12px 4px; background: #141414; border: 1px solid var(--line); font-family: var(--font-body); font-size: 12.5px; color: #fff; }
.il-msg--r { margin-left: auto; border-radius: 12px 12px 4px 12px; background: color-mix(in srgb, var(--acc) 22%, #0b0b0b); }

.il-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; max-width: 330px; }
.il-plan { display: grid; justify-items: start; gap: 8px; padding: 12px 10px; border-radius: var(--r2); background: #101010; border: 1px solid var(--line); }
.il-plan b { font-family: var(--font-body); font-weight: 600; font-size: 12px; color: #fff; }
.il-plan .il-bar { width: 100% !important; }
.il-plan.is-hot { border-color: color-mix(in srgb, var(--acc) 70%, transparent); background: color-mix(in srgb, var(--acc) 12%, #101010); }
.il-segs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 3px; border-radius: var(--r1); background: rgba(255, 255, 255, 0.05); }
.il-seg { padding: 6px 4px; border-radius: 6px; text-align: center; font-family: var(--font-body); font-weight: 500; font-size: 11.5px; color: var(--mut); }
.il-seg.is-on { background: var(--acc); color: #fff; }
.il-mrow { display: grid; grid-template-columns: 1.3fr repeat(var(--n), 1fr); align-items: center; gap: 6px; padding: 5px 6px; border-radius: var(--r1); font-family: var(--font-body); font-size: 12px; color: #fff; }
.il-mrow > span { display: grid; place-items: center; }
.il-mrow b { font-weight: 600; }
.il-mrow:not(.il-mhead) { background: rgba(255, 255, 255, 0.04); }

.il-f { display: grid; gap: 4px; }
.il-f small { font-family: var(--font-body); font-size: 11px; color: var(--dim); }
.il-f > span { padding: 8px 10px; border-radius: 7px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); font-family: var(--font-body); font-size: 12.5px; color: rgba(255, 255, 255, 0.45); }
.il-join { position: relative; width: 100%; height: 100%; }
.rv-card__media .il-join .il__img { filter: brightness(0.6); }
.il-join__btn { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); white-space: nowrap; }
.il-drop { display: grid; justify-items: center; gap: 12px; width: 100%; max-width: 280px; padding: 22px 14px; border-radius: var(--r2); border: 1.5px dashed var(--line2); background: rgba(255, 255, 255, 0.02); }
.il-drop .il-drop__i { font-size: 30px; color: var(--acc); }
.il-file { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--r1); background: #141414; border: 1px solid var(--line); font-family: var(--font-body); font-size: 12.5px; color: #fff; }
.il-file .i { font-size: 16px; color: var(--acc); }

.il-codeblock pre { margin: 0; padding: 10px 12px; border-radius: var(--r1); background: #0a0a0a; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.75); overflow: hidden; }
.il-codeblock .k { color: var(--acc); }
.il-codeblock .s { color: #ffb347; }
.il-chart { display: flex; align-items: flex-end; gap: 6px; height: 92px; padding: 8px 8px 0; border-radius: var(--r1); background: rgba(255, 255, 255, 0.03); }
.il-chart span { flex: 1; border-radius: 4px 4px 0 0; background: color-mix(in srgb, var(--acc) 55%, #101010); }
.il-chart span:last-child { background: var(--acc); }
.il-legend { display: flex; align-items: center; gap: 8px; color: var(--acc); font-size: 16px; }
.il-legend .il-bar { flex: 1; width: auto !important; max-width: 60%; }
.il-vid { position: relative; width: 100%; height: 100%; }
.il-vid .il__img { filter: brightness(0.75); }
.il-lockbig { position: absolute; inset: 0; display: grid; place-items: center; width: 52px; height: 52px; margin: auto; border-radius: 50%; background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.22); font-size: 22px; color: #fff; }
.il-wm { position: absolute; inset: -20%; display: flex; flex-wrap: wrap; align-content: space-around; justify-content: space-around; transform: rotate(-16deg); pointer-events: none; }
.il-wm span { padding: 6px 12px; font-family: var(--font-body); font-size: 11.5px; color: rgba(255, 255, 255, 0.42); }
.il-vid .il-chip { top: auto; right: auto; left: 12px; bottom: 12px; }
.il-doc { position: relative; display: grid; gap: 8px; padding: 12px; border-radius: var(--r1); background: rgba(255, 255, 255, 0.04); }
.il-caret { position: absolute; right: 10px; bottom: 8px; color: var(--acc); font-size: 16px; }
.il-scene { position: relative; display: grid; place-items: center; width: 100%; height: 100%; }
.il-bg { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 12px; filter: blur(2px) brightness(0.5); }
.rv-card__media .il-bgposter { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.il-modal { position: relative; display: grid; gap: 8px; width: min(78%, 250px); padding: 14px; border-radius: var(--r2); background: #101010; border: 1px solid var(--line2); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.9); }
.il-modal b { font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: #fff; }
.il-chk { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 11.5px; color: rgba(255, 255, 255, 0.85); }
.il-num { display: grid; place-items: center; width: 22px; height: 22px; flex: none; border-radius: 6px; background: rgba(255, 255, 255, 0.08); font-family: var(--font-tag); font-weight: 600; font-size: 11px; color: var(--mut); }
.il-pair { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-body); font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }
.il-sws { display: flex; gap: 6px; }
.il-sw { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.22); }
.il-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.rv-card__media .il-strip__i { width: 100%; aspect-ratio: 16 / 9; border-radius: 5px; object-fit: cover; }
.il-add { display: grid; place-items: center; height: 30px; border-radius: var(--r1); border: 1.5px dashed var(--line2); color: var(--dim); font-size: 16px; }
/* cards de capacidade: 2 colunas em telas médias e 3 só em telas largas, para a imagem caber sem cortes */
@media (min-width: 720px) { .rec-page .rv-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .rec-page .rv-cards { grid-template-columns: repeat(3, 1fr); } }
.il-card { gap: 6px; padding: 10px; }
.il-row { padding: 6px 9px; }
.il-mid { overflow: hidden; }
/* celulares muito pequenos (até 360px): ilustrações mais enxutas para caberem sem corte */
@media (max-width: 360px) { .rv-card__media .il { padding: 10px; } .il-head { display: none; } .il-row { padding: 5px 8px; } .il-card { padding: 8px; } }
/* <<< IMAGENS DOS CARDS v5 — fim */

/* >>> FRAGMENT EM CÓDIGO — início (substitui a imagem fragment.webp) */
.fragment__diagram { container-type: inline-size; }
.fg-stage { position: relative; width: 100%; aspect-ratio: 1316 / 872; }
.fg-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.fg-lines path { fill: none; stroke: #ff6a3d; stroke-width: 1.1; stroke-dasharray: 5 5; opacity: .4; vector-effect: non-scaling-stroke; }
.fg-user { position: absolute; left: 50.5%; top: 18.3%; width: 3.7%; transform: translate(-50%, -50%); }
.fg-box, .fg-bar { position: absolute; display: flex; align-items: center; justify-content: center; text-align: center; font-family: 'Inter', sans-serif; }
.fg-box {
  width: 8.9%; height: 13.4%; padding: 0 .4%; box-sizing: border-box; border-radius: .35cqw;
  background: linear-gradient(180deg, #1d1411, #0e0807); border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9); font-size: clamp(6px, .95cqw, 13px); font-weight: 400; line-height: 1.25;
}
.fg-bar {
  left: 35.55%; top: 77.4%; width: 30%; height: 4.9%; border-radius: .5cqw;
  background: linear-gradient(90deg, #c8441f, #f0302c); color: #170805;
  font-size: clamp(6px, 1.2cqw, 16px); font-weight: 600;
}
/* <<< FRAGMENT EM CÓDIGO — fim */

/* >>> CARDS DE FERRAMENTAS — fundos em grafismo + logos das integrações — início */
.tools__media[class*="tools__media--g"] { isolation: isolate; }
.tools__media[class*="tools__media--g"]::before,
.tools__media[class*="tools__media--g"]::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; }
/* luz + escurecimento nas bordas: dá profundidade à cor lisa */
.tools__media[class*="tools__media--g"]::after {
  background: radial-gradient(120% 90% at 50% 40%, rgba(255,255,255,.16), rgba(255,255,255,0) 55%), linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.28));
}
.tools__media[class*="tools__media--g"] > .tools__icon,
.tools__media[class*="tools__media--g"] > .tools__logos { position: relative; z-index: 1; }
.tools__media[class*="tools__media--g"] > .tools__overlay,
.tools__media[class*="tools__media--g"] > .tools__plus,
.tools__media[class*="tools__media--g"] > .tools__corner { z-index: 2; }
/* g1 · Comunidades — anéis concêntricos */
.tools__media--g1::before { background: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0) 0 22px, rgba(255,255,255,.16) 22px 23px); -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 75%); mask-image: radial-gradient(circle at 50% 50%, #000 0, transparent 75%); }
/* g2 · Tags e Pixels — malha de pontos */
.tools__media--g2::before { background: radial-gradient(rgba(255,255,255,.4) 1.2px, transparent 1.6px) 0 0 / 18px 18px; -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 75%); mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 75%); }
/* g3 · Aplicativo — diagonais */
.tools__media--g3::before { background: repeating-linear-gradient(115deg, rgba(255,255,255,0) 0 16px, rgba(255,255,255,.13) 16px 17px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%, #000 65%, transparent); mask-image: linear-gradient(90deg, transparent, #000 35%, #000 65%, transparent); }
/* g4 · Certificados — malha fina + guilhochê */
.tools__media--g4::before { background: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 26px 26px, linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 26px 26px, repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0) 0 12px, rgba(255,255,255,.1) 12px 13px); -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 15%, transparent 80%); mask-image: radial-gradient(ellipse at 50% 50%, #000 15%, transparent 80%); }
/* g5 · Planos — arcos em leque */
.tools__media--g5::before { background: repeating-radial-gradient(circle at 50% 135%, rgba(255,255,255,0) 0 26px, rgba(255,255,255,.17) 26px 27px); }
/* g6 · Integrações — grade em losango */
.tools__media--g6::before { background: repeating-linear-gradient(45deg, rgba(255,255,255,.13) 0 1px, transparent 1px 22px), repeating-linear-gradient(-45deg, rgba(255,255,255,.13) 0 1px, transparent 1px 22px); -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 78%); mask-image: radial-gradient(ellipse at 50% 50%, #000 10%, transparent 78%); }
/* logos das integrações em pastilhas brancas */
.tools__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; max-width: 78%; }
.tools__logos--6 { max-width: 210px; gap: 10px; }
.tools__logos--6 span { width: 46px; height: 46px; border-radius: 12px; }
.tools__logos--6 span:nth-child(even) { margin-top: 0; }
.tools__logos span { width: 56px; height: 56px; border-radius: 14px; background: rgba(12,10,12,.82); border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.28); transition: transform .5s cubic-bezier(.33,1,.68,1); }
.tools__logos img { width: 68%; height: 68%; object-fit: contain; display: block; }
.tools__media:hover .tools__logos span { transform: translateY(-3px); }
.tools__logos span:nth-child(even) { margin-top: 10px; }
@media (max-width: 640px) { .tools__logos span { width: 46px; height: 46px; border-radius: 12px; } .tools__logos { gap: 9px; } }
/* <<< CARDS DE FERRAMENTAS — fim */

/* >>> ONBOARD DO MOCKUP (balões guiados) — início */
.dash-hint, .dash-callout, .academy-hint { display: none !important; }
.ob { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.ob-bubble {
  --ax: 50%; --ay: 50%;
  position: absolute; left: 0; top: 0; width: min(264px, calc(100% - 16px)); box-sizing: border-box;
  padding: 14px 16px 12px; border-radius: 14px; text-align: left; cursor: pointer;
  background: #17110f; border: 1px solid rgba(255,138,61,.55);
  box-shadow: 0 18px 44px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.4), 0 0 32px rgba(255,90,61,.18);
  opacity: 0; visibility: hidden; transform: translateY(6px) scale(.97); transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), visibility 0s .35s;
}
.ob-bubble.is-on { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; pointer-events: auto; }
.ob-step { display: inline-flex; align-items: baseline; gap: 3px; font: 600 10.5px/1 'Inter', sans-serif; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 9px; }
.ob-step b { display: inline-grid; place-items: center; min-width: 20px; height: 20px; border-radius: 999px; background: linear-gradient(135deg, #ff5a3d, #ff8a3d); color: #fff; font-size: 11px; margin-right: 4px; }
.ob-title { margin: 0 0 5px; font: 600 15px/1.3 'Inter', sans-serif; color: #fff; }
.ob-desc { margin: 0 0 10px; font: 400 12.5px/1.45 'Inter', sans-serif; color: rgba(255,255,255,.62); }
.ob-next { display: inline-flex; align-items: center; gap: 5px; font: 600 12px/1 'Inter', sans-serif; color: #ff8a3d; }
.ob-next i { font-style: normal; transition: transform .25s ease; }
.ob-bubble:hover .ob-next i { transform: translateX(3px); }
/* seta: losango que aponta para o alvo */
.ob-arrow { position: absolute; width: 12px; height: 12px; background: #17110f; border: 1px solid rgba(255,138,61,.55); transform: rotate(45deg); }
.ob-bubble[data-side="right"] .ob-arrow { left: -7px; top: var(--ay); margin-top: -6px; border-right: 0; border-top: 0; }
.ob-bubble[data-side="left"] .ob-arrow { right: -7px; top: var(--ay); margin-top: -6px; border-left: 0; border-bottom: 0; }
.ob-bubble[data-side="bottom"] .ob-arrow { top: -7px; left: var(--ax); margin-left: -6px; border-bottom: 0; border-right: 0; }
.ob-bubble[data-side="top"] .ob-arrow { bottom: -7px; left: var(--ax); margin-left: -6px; border-top: 0; border-left: 0; }
.module-card-wrap.ob-target { outline-offset: -2px; border-radius: 8px; }
/* chama a atenção pro elemento que o balão aponta com 2 pulsos suaves
   e depois vai sumindo — em vez de piscar forte pra sempre */
.ob-target { outline: 2px solid rgba(255,138,61,.55); outline-offset: 3px; animation: obRing 2.6s ease-out forwards; }
@keyframes obRing {
  0% { outline-color: rgba(255,138,61,.55); }
  18% { outline-color: rgba(255,138,61,.1); }
  36% { outline-color: rgba(255,138,61,.4); }
  65% { outline-color: rgba(255,138,61,.08); }
  100% { outline-color: rgba(255,138,61,0); }
}
@media (max-width: 640px) { .ob-bubble { padding: 11px 13px 10px; width: min(230px, calc(100% - 16px)); } .ob-title { font-size: 13.5px; } .ob-desc { font-size: 11.5px; } }
@media (prefers-reduced-motion: reduce) { .ob-target { animation: none; } .ob-bubble { transition: none; } }
/* <<< ONBOARD DO MOCKUP — fim */

/* >>> PÁGINA DE PLANOS — início (planos.html; para desfazer, apague até o marcador "fim") */
.pl-hero .rec-hero__lead { max-width: 60ch; }
.pl-how { list-style: none; margin: 28px auto 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.pl-how li { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px; border: 1px solid var(--line); background: #101010; font: 500 13.5px/1 var(--font-body); color: rgba(255,255,255,.85); }
.pl-ico { display: inline-grid; place-items: center; width: 32px; height: 32px; flex: none; border-radius: 9px; background: rgba(232,64,47,.14); border: 1px solid rgba(232,64,47,.35); color: #ff7a5c; }
.pl-ico .i { width: 17px; height: 17px; }

.pl-plans { padding: 0 24px 72px; }
.pl-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pl-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pl-card:last-child { grid-column: 1 / -1; } }
@media (min-width: 900px) { .pl-cards { grid-template-columns: repeat(6, minmax(0, 1fr)); } .pl-card { grid-column: span 2; } .pl-card:nth-child(n+4) { grid-column: span 3; } }
@media (min-width: 1280px) { .pl-cards { grid-template-columns: repeat(5, minmax(0, 1fr)); } .pl-card, .pl-card:nth-child(n+4) { grid-column: auto; } }
.pl-card { position: relative; display: flex; flex-direction: column; padding: 24px 20px 20px; border-radius: var(--r3); background: #0f0f10; border: 1px solid var(--line); overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.pl-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--c); }
.pl-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 120px; background: linear-gradient(180deg, color-mix(in srgb, var(--c) 14%, transparent), transparent); pointer-events: none; }
.pl-card:hover { border-color: color-mix(in srgb, var(--c) 55%, transparent); transform: translateY(-2px); }
.pl-card__name { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; font: 600 14px/1 var(--font-body); color: #fff; letter-spacing: .01em; }
.pl-card__name::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px var(--c); }
.pl-card__price { position: relative; z-index: 1; margin: 18px 0 20px; display: flex; flex-direction: column; gap: 6px; min-height: 64px; }
.pl-card__price strong { font: 600 clamp(1.55rem, 2.2vw, 1.85rem)/1.1 var(--font-body); letter-spacing: -.02em; color: #fff; }
.pl-card__price small { font: 400 12.5px/1.2 var(--font-body); color: var(--dim); }
.pl-card__list { position: relative; z-index: 1; list-style: none; margin: 0 0 22px; padding: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; flex: 1; }
.pl-card__list li { display: flex; align-items: flex-start; gap: 9px; font: 400 13.5px/1.35 var(--font-body); color: rgba(255,255,255,.78); }
.pl-card__list .i { width: 16px; height: 16px; flex: none; margin-top: 1px; color: var(--c); }
.pl-card__cta { position: relative; z-index: 1; width: 100%; justify-content: center; text-align: center; }

.pl-compare, .pl-included, .pl-extra, .pl-faq { padding: 0 24px 72px; }
.pl-scroll { position: relative; overflow-x: auto; border-radius: var(--r3); border: 1px solid var(--line); background: #0d0d0e; -webkit-overflow-scrolling: touch; }
.pl-scroll:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }
.pl-table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; font-family: var(--font-body); }
.pl-table th, .pl-table td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: 14px; color: rgba(255,255,255,.85); white-space: nowrap; }
.pl-table thead th { font-weight: 600; color: #fff; background: #111112; position: sticky; top: 0; }
.pl-table tbody th, .pl-table tfoot th { text-align: left; font-weight: 500; position: sticky; left: 0; background: #0d0d0e; z-index: 1; min-width: 220px; }
.pl-table thead th:first-child { position: sticky; left: 0; z-index: 2; }
.pl-table tbody tr:hover td, .pl-table tbody tr:hover th { background: rgba(255,255,255,.025); }
.pl-table tbody tr:last-child th, .pl-table tbody tr:last-child td { border-bottom: 1px solid var(--line2); }
.pl-table tfoot th, .pl-table tfoot td { border-bottom: 0; padding-top: 18px; }
.pl-rowh { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); }
.pl-rowh .i { width: 17px; height: 17px; color: rgba(255,255,255,.5); }
.pl-inf, .pl-yes { width: 18px; height: 18px; color: #ff7a5c; vertical-align: middle; }
.pl-no { width: 16px; height: 16px; color: rgba(255,255,255,.28); vertical-align: middle; }
.pl-tprice { font-weight: 600; color: #fff; font-size: 15px; }
.pl-tcta { padding: 9px 14px; font-size: 12.5px; }
.pl-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.pl-inc { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pl-inc { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .pl-inc { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pl-inc li { padding: 22px 20px; border-radius: var(--r3); background: var(--surf); border: 1px solid var(--line); }
.pl-inc b { display: block; margin: 16px 0 8px; font: 600 15.5px/1.3 var(--font-body); color: #fff; }
.pl-inc p { margin: 0; font: 400 13.5px/1.55 var(--font-body); color: var(--mut); }

.pl-extra__box { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; border-radius: var(--r3); background: var(--surf); border: 1px solid var(--line); }
.pl-extra__box .rec-h2 { margin-bottom: 8px; }
.pl-extra__box p { margin: 0; color: var(--mut); font: 400 14px/1.5 var(--font-body); }
.pl-extra__item { display: inline-flex; align-items: center; gap: 14px; padding: 14px 20px 14px 14px; border-radius: var(--r2); background: #101010; border: 1px solid var(--line); }
.pl-extra__item b { display: block; font: 600 15px/1.2 var(--font-body); color: #fff; }
.pl-extra__item small { display: block; margin-top: 4px; font: 400 13px/1.2 var(--font-body); color: var(--mut); }

.pl-faq__wrap { display: grid; gap: 32px; }
@media (min-width: 900px) { .pl-faq__wrap { grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: 64px; } }
.pl-faq__sub { margin: 0; color: var(--mut); font: 400 14.5px/1.5 var(--font-body); }
.pl-faq__list { display: grid; gap: 10px; }
.pl-q { border-radius: var(--r2); background: var(--surf); border: 1px solid var(--line); transition: border-color .2s ease; }
.pl-q[open] { border-color: var(--line2); }
.pl-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font: 500 15px/1.4 var(--font-body); color: #fff; }
.pl-q summary::-webkit-details-marker { display: none; }
.pl-q__chev { width: 18px; height: 18px; flex: none; color: var(--dim); transition: transform .25s ease; }
.pl-q[open] .pl-q__chev { transform: rotate(180deg); }
.pl-q p { margin: 0; padding: 0 20px 20px; font: 400 14px/1.65 var(--font-body); color: var(--mut); }

@media (min-width: 1024px) { .pl-plans, .pl-compare, .pl-included, .pl-extra, .pl-faq { padding-left: 120px; padding-right: 120px; } }
@media (max-width: 640px) { .pl-plans, .pl-compare, .pl-included, .pl-extra, .pl-faq { padding-bottom: 56px; } .pl-extra__box { padding: 22px; } .pl-table tbody th, .pl-table tfoot th { min-width: 170px; } }
@media (prefers-reduced-motion: reduce) { .pl-card, .pl-q__chev { transition: none; } .pl-card:hover { transform: none; } }
/* <<< PÁGINA DE PLANOS — fim */

/* ícone-marca solto no canto dos cards de planos: cada item já tem o seu próprio ícone */
.plans__features li::before { display: none; }

/* >>> ABA "RETENÇÃO E LTV" DO MOCKUP — oferta de upsell abaixo do check de venda — início */
.vendas-upsell { margin-top: 6px; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 14px 18px; max-width: 260px; border-radius: 14px; background: rgba(255, 138, 61, 0.08); border: 1px solid rgba(255, 138, 61, 0.3); }
.vendas-upsell__chat { display: flex; align-items: center; gap: 9px; text-align: left; }
.vendas-upsell__chat img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: none; }
.vendas-upsell__chat span { display: flex; flex-direction: column; font-family: 'Inter', sans-serif; color: rgba(255, 255, 255, 0.75); }
.vendas-upsell__chat strong { font-weight: 600; color: #fff; font-size: 12px; }
.vendas-upsell__chat em { font-style: normal; font-size: 11px; }
.vendas-upsell__stat { margin: 0; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12.5px; line-height: 1.4; color: rgba(255, 255, 255, 0.7); }
.vendas-upsell__stat strong { color: #ff8a3d; font-weight: 600; }
.vendas-upsell__cta { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 999px; background: linear-gradient(90deg, #ff5a3d, #ff8a3d); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 11px; }
/* <<< ABA "RETENÇÃO E LTV" DO MOCKUP — fim */

/* >>> ALINHAMENTO NO CELULAR E TABLET — centraliza a introdução de seções
   que hoje ficam à esquerda ao empilhar (eram texto+imagem lado a lado no
   desktop); o ponto de corte de cada uma casa com o breakpoint em que ela
   própria já empilha — início */
@media (max-width: 1099px) {
  .invisible__intro { text-align: center; margin-left: auto; margin-right: auto; max-width: 640px; }
}
@media (max-width: 1099px) {
  .pricing-slider__content { text-align: center; margin-left: auto; margin-right: auto; align-items: center; }
  .pricing-slider__sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 1099px) {
  .paylead__content { text-align: center; margin-left: auto; margin-right: auto; align-items: center; }
  .paylead__sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 1099px) {
  .showcase__content { text-align: center; margin-left: auto; margin-right: auto; align-items: center; }
  .showcase__stores { justify-content: center; }
}
@media (max-width: 1099px) {
  .proofgrid__head { align-items: center; text-align: center; }
  .proofgrid__head-copy { margin-left: auto; margin-right: auto; }
  .proofgrid__head-copy p { margin-left: auto; margin-right: auto; }
}
/* <<< ALINHAMENTO NO CELULAR E TABLET — fim */

/* >>> DIAGRAMA "NÃO FRAGMENTA O LEAD" MAIOR NO CELULAR — início */
@media (max-width: 900px) {
  /* a seção já tem overflow:hidden, então o diagrama pode "sangrar" além do
     miolo de texto sem criar rolagem horizontal na página. O item do grid
     (.fragment__diagram) mantém o tamanho normal — quem "sangra" pra fora é
     só o .fg-stage por dentro dele, via posição relativa, então o grid não
     estica pra acompanhar (senão o texto ao lado cortava) */
  .fg-stage { width: 124%; margin-left: -12%; }
  /* nesse tamanho o texto dos quadrados ainda ficaria pequeno demais só com
     o cqw (que segue a largura do palco) — trava um tamanho legível, que
     escala um pouco entre celular e tablet */
  .fg-box { font-size: clamp(9px, 2vw, 12px); line-height: 1.15; }
  .fg-bar { font-size: clamp(10px, 2.3vw, 13px); }
}
/* <<< DIAGRAMA "NÃO FRAGMENTA O LEAD" MAIOR NO CELULAR — fim */

/* >>> MOCKUP DO CRM (recursos/crm.html) — mini kanban no hero — início */
.rv-kanban { display: flex; gap: 8px; }
.rv-kcol { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.rv-kcol__head { display: flex; align-items: center; gap: 5px; padding: 0 2px 2px; font-family: var(--font-body); font-weight: 600; font-size: 9.5px; letter-spacing: 0.03em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); white-space: nowrap; }
.rv-kcol__head span:last-child { opacity: 0.6; font-weight: 400; }
.rv-kcard { display: flex; flex-direction: column; gap: 6px; padding: 8px 9px; border-radius: 9px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.rv-kcol.is-acc .rv-kcard { border-color: color-mix(in srgb, var(--acc, #e8402f) 45%, transparent); background: color-mix(in srgb, var(--acc, #e8402f) 10%, transparent); }
/* <<< MOCKUP DO CRM — fim */

/* >>> CRM — fluxo simples de 3 nós (lead > pipeline > venda) — início */
.rec-flow3 { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; padding: 40px 24px; border-radius: 22px; background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--acc, #e8402f) 14%, transparent), transparent 62%), rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); }
.rec-flow3__node { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.rec-flow3__label { font-family: var(--font-body); font-size: 12.5px; color: rgba(255, 255, 255, 0.65); white-space: nowrap; }
.rec-flow3__arrow { flex-shrink: 0; width: 18px; height: 18px; color: rgba(255, 255, 255, 0.3); }
/* <<< CRM — fim */

/* ===== Tools summary (tsum) — logo abaixo do hero, resume as 14
   ferramentas em cards rápidos de escanear, pra passar "dá pra fazer
   de tudo" já na primeira dobra, antes de qualquer narrativa. ===== */
.tsum { position: relative; padding: 80px 24px; overflow: hidden; }
@media (min-width: 1024px) {
  .tsum { padding-left: 120px; padding-right: 120px; }
}
.tsum__inner { position: relative; max-width: 1240px; margin: 0 auto; }
.tsum__kicker { font-family: var(--font-tag); font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.55); margin-bottom: 6px; }
.tsum__title { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.25rem); letter-spacing: -0.01em; line-height: 1.2; }
.tsum__sub { max-width: 58ch; margin: 14px 0 0; font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); }
@media (max-width: 640px) {
  .tsum__inner { text-align: center; }
  .tsum__sub { margin: 14px auto 0; }
}

/* carrossel: mesmo wrapper-que-não-rola + degradê nas pontas usado em
   planos e ferramentas — ver .plans__carousel pra a técnica completa */
.tsum__carousel { position: relative; overflow: hidden; margin: 44px auto 0; max-width: 1240px; }
.tsum__carousel::after,
.tsum__carousel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.tsum__carousel::after { right: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0), #000); opacity: 1; }
.tsum__carousel::before { left: 0; background: linear-gradient(to left, rgba(0, 0, 0, 0), #000); opacity: 0; }
.tsum__carousel.at-end::after { opacity: 0; }
.tsum__carousel.at-start::before { opacity: 0; }
.tsum__carousel:not(.at-start)::before { opacity: 1; }

.tsum__row {
  list-style: none;
  margin: 0;
  padding: 4px 4px 10px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  /* sem scroll-snap: o carrossel roda sozinho em velocidade contínua
     (JS), e snap brigaria com isso ao pausar no meio de um card */
  text-align: left;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tsum__row::-webkit-scrollbar { display: none; width: 0; height: 0; }
/* cards tipo pôster/showcase: a imagem toma o card inteiro, texto fica
   entalhado por cima dela com um degradê embaixo, sem caixinha com borda
   e padding ao redor — igual a uma vitrine de sites (Framer, etc.) */
.tsum__row > li { flex: 0 0 260px; }
.tsum__card {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tsum__card:hover { transform: translateY(-4px); }
/* área "de imagem" do card: fundo escuro com brilho na cor da ferramenta
   (--c) + uma ilustração da interface (.ta) feita em HTML/CSS. Tudo em
   cqw pra escalar junto com o card (260px no desktop, menor no mobile). */
.tsum__media {
  position: absolute;
  inset: 0;
  container-type: inline-size;
  background:
    radial-gradient(ellipse 90% 60% at 55% 28%, color-mix(in srgb, var(--c) 42%, transparent), transparent 70%),
    linear-gradient(180deg, #131313, #0a0a0a);
}
.tsum__ico { position: absolute; left: 5cqw; top: 5cqw; width: 10cqw; height: 10cqw; border-radius: 3cqw; background: var(--c); z-index: 2; }
.tsum__ico::after {
  content: "";
  position: absolute;
  inset: 2.2cqw;
  background: #fff;
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}
.ta { position: absolute; inset: 0; overflow: hidden; pointer-events: none; font-family: 'Inter', sans-serif; color: #ececec; }
.ta > * { position: absolute; }
.ta-p { display: flex; flex-direction: column; gap: 2cqw; padding: 3.2cqw; border-radius: 2.6cqw; background: #151515; border: 1px solid rgba(255, 255, 255, 0.09); box-shadow: 0 4cqw 9cqw -4cqw rgba(0, 0, 0, 0.9); overflow: hidden; font-size: 3cqw; line-height: 1.25; transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1); }
.tsum__card:hover .ta-p { transform: translateY(-1.5cqw); }
.ta-p > *, .ta-p span { position: static; }
.ta-h { font-size: 2.6cqw; font-weight: 600; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.45); }
.ta-abs { position: absolute !important; }
.ta-t { font-size: 3.3cqw; font-weight: 600; color: #fff; }
.ta-s { font-size: 2.7cqw; color: rgba(255, 255, 255, 0.5); }
.ta-ini { display: grid; place-items: center; width: 7cqw; height: 7cqw; border-radius: 50%; flex: none; font-size: 2.6cqw; font-weight: 700; color: #fff; }
.ta-av { width: 8cqw; height: 8cqw; border-radius: 50%; object-fit: cover; flex: none; }
.ta-av.sm { width: 7cqw; height: 7cqw; }
.ta-r { display: flex; align-items: center; gap: 2.6cqw; padding: 2.2cqw 2.6cqw; border-radius: 2cqw; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); }
.ta-r.ta-nb { background: none; border: 0; padding: 0; }
.ta-r.sel { border-color: var(--c); background: color-mix(in srgb, var(--c) 14%, transparent); }
.ta-r > .ta-t:first-child, .ta-r > .ta-kc__c { flex: 1; }
.ta-kc__c { display: flex; flex-direction: column; gap: 0.6cqw; min-width: 0; flex: 1; }
.ta-cols { display: flex !important; flex-direction: row; gap: 2.4cqw; }
.ta-col { display: flex !important; flex-direction: column; gap: 2cqw; flex: 1; min-width: 0; }
.ta-kc { display: flex; gap: 2cqw; align-items: center; padding: 2.2cqw; border-radius: 2cqw; background: #1d1d1d; border: 1px solid rgba(255, 255, 255, 0.08); }
.ta-kc em { align-self: flex-start; margin-top: 1cqw; padding: 0.6cqw 1.6cqw; border-radius: 99px; font-style: normal; font-size: 2.3cqw; font-weight: 600; color: #7fb8ff; background: rgba(93, 173, 255, 0.14); }
.ta-kc.hot { border-color: color-mix(in srgb, var(--c) 70%, transparent); }
.ta-posters { position: absolute; left: 7cqw; top: 25cqw; display: flex; gap: 3cqw; width: 130cqw; }
.ta-posters img { width: 34cqw; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 2cqw; box-shadow: 0 3cqw 8cqw -3cqw rgba(0, 0, 0, 0.9); }
.ta-posters img:nth-child(2) { margin-top: 5cqw; }
.ta-posters img:nth-child(4) { margin-top: 5cqw; }
.ta-shot { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 2.4cqw; }
.ta-shot.full { aspect-ratio: auto; height: 100%; border-radius: 0; }
.ta-prog { display: block; height: 1.4cqw; border-radius: 99px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.ta-prog i { display: block; height: 100%; background: var(--c); border-radius: 99px; }
.ta-body { font-size: 3.1cqw; line-height: 1.35; color: rgba(255, 255, 255, 0.82); }
.ta-meta { display: flex !important; align-items: center; gap: 1.4cqw; font-size: 2.7cqw; color: rgba(255, 255, 255, 0.5); }
.ta-meta svg { width: 3.2cqw; height: 3.2cqw; color: #ff5c71; }
.ta-meta b { margin-left: 1.6cqw; font-weight: 500; }
.ta-div { display: block; height: 1px; background: rgba(255, 255, 255, 0.08); }
.ta-cert-h { font-size: 2.6cqw; letter-spacing: 0.32em; font-weight: 600; color: #8a7f5d; }
.ta-cert-n { font-family: 'Instrument Serif', serif; font-size: 8.5cqw; line-height: 1.05; }
.ta-cert-s { font-size: 2.8cqw; line-height: 1.45; color: #4a463c; }
.ta-cert-s b { color: #1b1a17; font-weight: 700; }
.ta-cert-f { display: flex !important; align-items: center; gap: 1.6cqw; margin-top: 1cqw; font-size: 2.5cqw; color: #6b6553; }
.ta-cert-f i { display: block; width: 6cqw; height: 6cqw; border-radius: 50%; border: 0.7cqw double #b8a76a; }
.ta-flag { width: 6.6cqw; height: 4.6cqw; object-fit: cover; border-radius: 0.8cqw; flex: none; }
.ta-ck { display: grid; place-items: center; width: 4.6cqw; height: 4.6cqw; border-radius: 50%; background: var(--c); color: #0a0a0a; }
.ta-ck svg { width: 2.8cqw; height: 2.8cqw; }
.ta-plans { position: absolute; left: 7cqw; top: 22cqw; display: flex; gap: 2.4cqw; width: 126cqw; }
.ta-plan { display: flex; flex-direction: column; gap: 1.4cqw; width: 36cqw; padding: 3cqw; border-radius: 2.4cqw; background: #151515; border: 1px solid rgba(255, 255, 255, 0.09); box-shadow: 0 4cqw 9cqw -4cqw rgba(0, 0, 0, 0.9); position: static; }
.ta-plan.hot { border-color: var(--c); background: color-mix(in srgb, var(--c) 12%, #151515); margin-top: -2cqw; }
.ta-plan b { font-size: 6.4cqw; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.ta-plan span, .ta-plan b { position: static; }
.ta-in { padding: 2.2cqw 2.6cqw; border-radius: 1.8cqw; background: #0f0f0f; border: 1px solid rgba(255, 255, 255, 0.12); font-size: 3cqw; color: #fff; }
.ta-in.focus { border-color: var(--c); box-shadow: 0 0 0 0.8cqw color-mix(in srgb, var(--c) 25%, transparent); }
.ta-bt { display: block; margin-top: auto; padding: 2.6cqw; border-radius: 1.8cqw; background: var(--c); color: #0a0a0a; text-align: center; font-size: 3.1cqw; font-weight: 700; }
.ta-file { display: grid; place-items: center; width: 7cqw; height: 8cqw; border-radius: 1cqw; background: color-mix(in srgb, var(--c) 30%, #151515); font-size: 2.2cqw; font-weight: 700; color: #fff; flex: none; }
.ta-tbl { display: grid !important; grid-template-columns: 1fr 1.3fr; gap: 1.6cqw 3cqw; font-size: 2.8cqw; color: rgba(255, 255, 255, 0.75); }
.ta-tbl > :nth-child(odd) { color: #fff; font-weight: 600; }
.ta-done { display: flex !important; align-items: center; gap: 1.6cqw; font-size: 3cqw; font-weight: 600; color: #fff; }
.ta-done svg { width: 3.6cqw; height: 3.6cqw; padding: 0.7cqw; border-radius: 50%; background: var(--c); color: #0a0a0a; }
.ta-p .ta-tog { position: relative; width: 8cqw; height: 4.4cqw; border-radius: 99px; background: rgba(255, 255, 255, 0.16); flex: none; }
.ta-tog::after { content: ""; position: absolute; top: 0.5cqw; left: 0.5cqw; width: 3.4cqw; height: 3.4cqw; border-radius: 50%; background: #fff; }
.ta-tog.on { background: var(--c); }
.ta-tog.on::after { left: 4.1cqw; }
.ta-wm { position: absolute !important; left: -6cqw; top: 14cqw; font-size: 3cqw; font-weight: 600; color: rgba(255, 255, 255, 0.28); transform: rotate(-18deg); white-space: nowrap; }
.ta-wm.b { left: 30cqw; top: 38cqw; }
.ta-drm { position: absolute !important; left: 2.6cqw; bottom: 2.6cqw; display: flex; align-items: center; gap: 1.4cqw; padding: 1.4cqw 2.6cqw; border-radius: 99px; background: rgba(0, 0, 0, 0.72); font-size: 2.7cqw; font-weight: 600; color: #fff; }
.ta-drm svg { width: 3cqw; height: 3cqw; }
.ta-role { font-style: normal; padding: 0.8cqw 2.2cqw; border-radius: 99px; font-size: 2.4cqw; font-weight: 600; color: rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.09); }
.ta-doc { font-size: 2.7cqw; line-height: 1.5; color: rgba(255, 255, 255, 0.6); }
.ta-ckrow { display: flex !important; align-items: center; gap: 2cqw; margin-top: auto; font-size: 3cqw; font-weight: 600; color: #fff; }
.ta-ckrow i { display: grid; place-items: center; width: 4.6cqw; height: 4.6cqw; border-radius: 1.2cqw; background: var(--c); color: #0a0a0a; }
.ta-ckrow svg { width: 3cqw; height: 3cqw; }
.ta-sw { display: block; width: 6cqw; height: 6cqw; border-radius: 1.4cqw; background: #e8402f; flex: none; }
.ta-prev { display: flex !important; flex-direction: column; margin-top: auto; border-radius: 1.8cqw; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); background: #0e0e0e; }
.ta-prev__b { display: block; height: 7cqw; background: #e8402f; }
.ta-prev__t { padding: 3cqw 2.6cqw; font-size: 3cqw; font-weight: 600; color: #fff; }
.tsum__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0) 68%);
  pointer-events: none;
}
.tsum__text { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 20px; }
.tsum__card-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: #fff; }
.tsum__card-desc { margin-top: 4px; font-family: var(--font-body); font-weight: 300; font-size: 12.5px; line-height: 1.4; color: rgba(255, 255, 255, 0.75); }

.tsum__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 32px; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; color: #ff8a3d; transition: gap 0.2s ease; }
.tsum__more:hover { gap: 10px; }

@media (max-width: 640px) {
  .tsum { padding: 60px 20px; }
  .tsum__row { gap: 10px; }
  .tsum__row > li { flex-basis: min(60%, 210px); }
}

/* ---- Páginas de recurso: textos mais legíveis (menos cinza) e títulos
   h2 centralizados em tablet/celular (esquerda em notebook/desktop) ---- */
.rec-page { --mut: rgba(255, 255, 255, 0.82); --dim: rgba(255, 255, 255, 0.68); }
.rec-page .rec-hero__mute { color: rgba(255, 255, 255, 0.9); }
.rec-page .rec-hero__lead,
.rec-page .rec-about__p { color: rgba(255, 255, 255, 0.88); font-weight: 400; }
.rec-page .rec-card p { color: rgba(255, 255, 255, 0.82); font-weight: 400; }
.rec-page .rec-stats span,
.rec-page .rec-chip__txt small { color: rgba(255, 255, 255, 0.75); }
.rec-page .rec-steps p, .rec-page .rv-steps p { color: rgba(255, 255, 255, 0.88); }
@media (max-width: 1099px) {
  .rec-page .rec-h2, .rec-page .rec-cta__title { text-align: center; }
}

#hero-signup { scroll-margin-top: 140px; }

/* A legenda das abas do mockup tem 1 ou 2 linhas no celular conforme o texto;
   sem reservar altura, o mockup pulava ~17px a cada troca de aba e a página
   parecia rolar sozinha (o navegador compensava o deslocamento). */
@media (max-width: 720px) {
  .hero-tabs-caption { min-height: 2.9em; }
}
.hero, .dash { overflow-anchor: none; }

/* setas de navegação dos carrosséis de ferramentas (mesmo botão do de integrações) */
.hscroll-arrows { display: flex; gap: 10px; margin-top: 18px; }
.tsum__arrows { max-width: 1240px; margin-left: auto; margin-right: auto; }
.plans__arrows { margin-bottom: 24px; }
@media (max-width: 1099px) { .hscroll-arrows { justify-content: center; } }

/* "Um ecossistema completo": mesmo respiro em cima e embaixo do rótulo */
.hero .signup-row { margin-bottom: 22px; }
.hero-tabs-label { margin-bottom: 22px; }
