/* ============================================================
   recash — design system (light corporate + green)
   ============================================================ */

:root {
  /* Brand */
  --green: #8DC73E;
  --green-dark: #6FA822;
  --green-soft: rgba(141, 199, 62, 0.12);
  --green-glow: rgba(141, 199, 62, 0.35);
  --green-wash: #D6EBB2;   /* fundo verde intenso (slides pares) */

  --slate: #263238;
  --slate-2: #37474F;
  --slate-soft: rgba(38, 50, 56, 0.06);

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F6F8F5;
  --bg-alt: #F3F5EF;
  --bg-section: #CFE6A6;   /* fundo verde das seções alternadas */
  --bg-card: #FFFFFF;

  /* Lines */
  --line: rgba(38, 50, 56, 0.10);
  --line-strong: rgba(38, 50, 56, 0.18);

  /* Text */
  --text: #263238;
  --text-2: #475560;
  --text-3: #6B7B85;
  --text-muted: #8B98A0;
  --white: #FFFFFF;

  /* Type */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 6px rgba(38, 50, 56, 0.05);
  --shadow-md: 0 10px 30px -6px rgba(38, 50, 56, 0.10);
  --shadow-lg: 0 24px 60px -16px rgba(38, 50, 56, 0.18);
  --shadow-green: 0 14px 30px -10px rgba(141, 199, 62, 0.55);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.5rem); letter-spacing: -0.03em; font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--text-2); }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* utilities */
.text-green { color: var(--green-dark); }
.text-slate { color: var(--slate); }
.muted { color: var(--text-3); }
.center { text-align: center; }
.mono {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem; letter-spacing: 0.02em;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-soft, .steps-section {
  background-color: var(--bg-section);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(111, 168, 34, 0.18) 1px, transparent 0),
    radial-gradient(120% 90% at 92% -12%, rgba(255, 255, 255, 0.30), transparent 52%),
    radial-gradient(120% 95% at 0% 115%, rgba(141, 199, 62, 0.30), transparent 55%);
  background-size: 22px 22px, 100% 100%, 100% 100%;
}
.section-alt { background: var(--bg-alt); }
/* Seção com o mesmo fundo escuro do hero (ex.: depoimentos) */
.section-hero-bg {
  position: relative; overflow: hidden; color: #E6EDF0;
  background:
    radial-gradient(80% 55% at 50% -14%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px) 0 0 / 26px 26px,
    linear-gradient(165deg, #2A3744 0%, #1A232E 100%);
}
.section-hero-bg .container { position: relative; z-index: 1; }
.section-hero-bg .section-head h2 { color: #fff; }
.section-hero-bg .section-head p { color: #B7C4CC; }
.section-head .testi-sub { color: #C2E594; font-weight: 700; font-size: 1.18rem; margin: -4px 0 14px; }
.section-hero-bg .eyebrow { background: rgba(141,199,62,0.16); color: #C2E594; }
.section-hero-bg .eyebrow::before { background: var(--green); }
.section-hero-bg .testi-prev, .section-hero-bg .testi-next {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); color: #E6EDF0;
}
.section-hero-bg .testi-prev:hover, .section-hero-bg .testi-next:hover {
  background: rgba(141,199,62,0.22); border-color: var(--green); color: #fff;
}
.section-hero-bg .testi-dot { background: rgba(255,255,255,0.28); }
.section-hero-bg .testi-dot.is-active { background: var(--green); }

.section-head { margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.05rem; color: var(--text-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700; color: var(--green-dark);
  background: var(--green-soft);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-dark);
}
/* eyebrow sobre fundo verde das seções: pílula branca p/ contraste */
.section-soft .eyebrow, .steps-section .eyebrow {
  background: #fff; color: var(--green-dark);
  box-shadow: 0 1px 4px rgba(38, 50, 56, 0.10);
}

.lead { font-size: 1.12rem; color: var(--text-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  letter-spacing: -0.005em;
  padding: 13px 22px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s, box-shadow .25s, color .2s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--green); color: var(--slate);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: var(--white); color: var(--slate);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--slate); background: var(--bg-soft); }
.btn-link {
  background: transparent; color: var(--green-dark); padding: 0;
  border: none; font-weight: 600;
}
.btn-link:hover { color: var(--slate); }
.btn-lg { padding: 16px 26px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; /* topo: transparente sobre o hero */
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96); /* ao rolar: branco */
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
/* estado topo (cinza do hero): contraste dos itens */
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .brand b { color: #fff; }
.site-header:not(.scrolled) .nav-links a,
.site-header:not(.scrolled) .nav-links .nav-trigger { color: rgba(255,255,255,0.88); }
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links .nav-trigger:hover { background: rgba(255,255,255,0.12); color: #fff; }
.site-header:not(.scrolled) .nav-actions .btn-ghost { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.28); color: #fff; }
.site-header:not(.scrolled) .nav-actions .btn-ghost:hover { background: rgba(255,255,255,0.18); }
.site-header:not(.scrolled) .nav-actions .btn-primary { background: var(--green); color: var(--slate); box-shadow: none; }
.site-header:not(.scrolled) .nav-actions .btn-primary:hover { background: var(--green-dark); color: #fff; }
.site-header:not(.scrolled) .nav-toggle { border-color: rgba(255,255,255,0.30); color: #fff; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--slate); font-size: 1.2rem; }
.brand svg { width: 38px; height: 38px; }
.brand b { color: var(--green-dark); }
/* Logo em imagem (header alterna branca/escura conforme o scroll) */
.brand-logo { height: 30px; width: auto; display: block; }
.brand-logo-footer { height: 32px; }
.brand-logo-dark { display: none; }
.site-header.scrolled .brand-logo-light { display: none; }
.site-header.scrolled .brand-logo-dark { display: block; }

/* Vídeo sobre o Recash (home) */
.video-embed {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Vídeo dentro do mockup de navegador: o frame fornece borda/sombra */
.video-mockup { max-width: 900px; margin: 0 auto; }
.video-mockup .video-embed { max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; background: #000; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.93rem; font-weight: 500; color: var(--slate-2);
  padding: 9px 14px; border-radius: 8px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav-links a:hover, .nav-links .nav-trigger:hover { color: var(--slate); background: var(--bg-soft); }
.nav-links .nav-trigger svg { transition: transform .2s; }
.nav-links li.open .nav-trigger svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, visibility .2s, transform .2s var(--ease);
  z-index: 50;
}
.nav-links li.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 10px 12px; border-radius: 8px; background: none;
}
.dropdown a:hover { background: var(--bg-soft); }
.dropdown a strong { color: var(--slate); font-weight: 600; font-size: 0.92rem; }
.dropdown a span { color: var(--text-3); font-size: 0.78rem; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle {
  display: none; background: none;
  border: 1px solid var(--line-strong); border-radius: 8px;
  width: 40px; height: 40px; color: var(--slate); cursor: pointer;
}

/* ---------- Hero (escuro + clareada com efeitos) ---------- */
.hero {
  padding: 192px 0 104px; position: relative; overflow: hidden;
  color: #E6EDF0;
  background:
    radial-gradient(80% 55% at 50% -14%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px) 0 0 / 26px 26px,
    linear-gradient(165deg, #2A3744 0%, #1A232E 100%);
}
/* grão / textura */
.hero-aura::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: overlay;
}
/* 2 blobs verdes (1 em cada lado) com movimento vertical oposto */
.hero-aura { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-aura span {
  position: absolute; border-radius: 50%;
  filter: blur(82px); will-change: transform; mix-blend-mode: screen;
}
/* direito: varre de baixo até o topo */
.hero-aura .a1 {
  width: 620px; height: 620px; right: -150px; top: 50%; margin-top: -310px;
  background: radial-gradient(circle, rgba(141,199,62,0.80), transparent 68%);
  animation: blobUp 4.5s ease-in-out infinite alternate;
}
/* esquerdo: varre ao contrário (do topo até embaixo) - mesma intensidade do direito */
.hero-aura .a2 {
  width: 620px; height: 620px; left: -150px; top: 50%; margin-top: -310px;
  background: radial-gradient(circle, rgba(141,199,62,0.80), transparent 68%);
  animation: blobDown 5s ease-in-out infinite alternate;
}
/* blob cinza claro: alivia o peso do escuro */
.hero-aura .a3 {
  width: 480px; height: 480px; left: 32%; top: 50%; margin-top: -240px;
  background: radial-gradient(circle, rgba(205,218,228,0.22), transparent 70%);
  animation: blobDrift 6s ease-in-out infinite alternate;
}
@keyframes blobUp    { from { transform: translateY(260px); } to { transform: translateY(-260px); } }
@keyframes blobDown  { from { transform: translateY(-260px); } to { transform: translateY(260px); } }
@keyframes blobDrift { from { transform: translate(-40px, 180px); } to { transform: translate(60px, -180px); } }
@media (prefers-reduced-motion: reduce) {
  .hero-aura span { animation: none; }
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
/* glow suave atrás do visual (efeito flutuante moderno) */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: -14% -10% -16% -10%;
  background: radial-gradient(60% 60% at 60% 40%, rgba(141,199,62,0.55), transparent 70%);
  filter: blur(40px); z-index: -1; border-radius: 44px;
}
/* cards flutuantes (depth) */
.hero-float {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-lg);
}
.hero-float .fic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--green-soft); color: var(--green-dark); }
.hero-float .ft { font-size: 0.74rem; color: var(--text-3); }
.hero-float .fv { font-size: 0.9rem; font-weight: 700; color: var(--slate); }
.hero-float.f1 { top: -22px; left: -26px; animation: floaty-rot 5.2s ease-in-out infinite; }
.hero-float.f2 { bottom: -20px; right: -22px; animation: floaty-sway 6.4s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes floaty-rot { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes floaty-sway { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(9px,-7px) scale(1.04); } }
.hero h1.typing::after, .faq-hero h1.typing::after, .inner-hero h1.typing::after {
  content: ""; display: inline-block; width: 3px; height: 0.95em;
  margin-left: 3px; background: var(--green); vertical-align: -0.12em;
  border-radius: 2px; animation: caret-blink 0.85s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
@media (max-width: 980px) { .hero-float { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-float { animation: none; } }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(141,199,62,0.4), transparent);
}
.hero .container { position: relative; z-index: 1; }

/* cores adaptadas ao hero escuro */
.hero h1 { color: #FFFFFF; }
.hero .hero-sub { color: #B7C4CC; }
.hero .hero-sub strong { color: #FFFFFF; }
.hero h1 .grad { background: linear-gradient(100deg, var(--green), #C8EE9A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.inner-hero h1 .grad { background: linear-gradient(100deg, var(--green), #C8EE9A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* tablet ou menor: sem min-height fixo no título (evita o vão de 265px) */
@media (max-width: 1024px) { .inner-hero-text h1 { min-height: 0 !important; } }
.hero .eyebrow { background: rgba(141,199,62,0.16); color: #C2E594; }
.hero .eyebrow::before { background: var(--green); }
.hero .hero-trust { color: #93A4AC; }
.hero .hero-trust svg { color: var(--green); }
.hero .hero-src { color: #8FA39F; }
.hero .tldr {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12);
  border-left-color: var(--green); color: #C2CFD6; backdrop-filter: blur(4px);
}
.hero .tldr svg { color: var(--green); }
.hero .btn-ghost { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.hero .hero-dot { background: rgba(255,255,255,0.25); }
.hero .hero-dot.is-active { background: var(--green); }

/* carrossel do hero (slides empilhados com fade) */
.hero-carousel { display: grid; }
.hero-slide {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

.hero-dots { display: flex; gap: 10px; margin-top: 34px; }
.hero-dot {
  width: 30px; height: 4px; border-radius: 4px; border: none; padding: 0;
  background: var(--line-strong); cursor: pointer;
  transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-dot:hover { background: var(--green-dark); }
.hero-dot.is-active { background: var(--green); width: 46px; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: center;
}
.hero-carousel { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.035em; line-height: 1.12; }
.hero-src { font-size: 0.78em; color: var(--text-3); font-weight: 600; white-space: nowrap; }
.hero-sub strong { color: var(--slate); font-weight: 700; }

/* hero com imagem real */
.hero-img { padding: 0; border: none; background: none; box-shadow: none; }
.hero-img::after { display: none; }
.hero-img img {
  width: 100%; height: auto; border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--green-dark), var(--green) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 1.15rem; max-width: 540px; margin-bottom: 26px; color: var(--text-2); }

.tldr {
  display: flex; gap: 12px;
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 14px 16px; margin-bottom: 30px;
  font-size: 0.93rem; color: var(--text-2);
}
.tldr svg { color: var(--green-dark); flex: none; margin-top: 2px; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-3); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--green-dark); }

/* Hero visual — mini dashboard mock */
.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.hero-visual::after {
  content: ""; position: absolute; right: -16px; bottom: -16px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--green-soft); z-index: -1;
}
.viz-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.viz-head .t { font-weight: 700; color: var(--slate); font-size: 0.95rem; }
.viz-head .badge { font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); }
.viz-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 18px; }
.viz-kpi { background: var(--bg-soft); border-radius: 12px; padding: 14px; }
.viz-kpi .label { font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.viz-kpi .value { font-size: 1.35rem; font-weight: 800; color: var(--slate); letter-spacing: -0.02em; }
.viz-kpi .delta { font-size: 0.78rem; color: var(--green-dark); font-weight: 600; }
.viz-list { display: grid; gap: 10px; }
.viz-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white);
}
.viz-row .ic { width: 32px; height: 32px; flex: none; display: grid; place-items: center; border-radius: 8px; background: var(--green-soft); color: var(--green-dark); }
.viz-row .who { font-weight: 600; font-size: 0.88rem; color: var(--slate); }
.viz-row .desc { font-size: 0.78rem; color: var(--text-3); }
.viz-row .amount { margin-left: auto; font-weight: 700; color: var(--slate); font-size: 0.92rem; }
.viz-row .tag { font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); margin-left: 8px; }

/* ---------- Logos faixa ---------- */
.logos-bar { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.logos-bar .label { text-align: center; color: var(--text-3); font-size: 0.82rem; margin-bottom: 22px; letter-spacing: 0.03em; }
.logos-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  align-items: center; justify-items: center;
}
.logo-pill {
  font-weight: 800; color: var(--slate-2); opacity: 0.55;
  letter-spacing: -0.02em; font-size: 1.05rem;
  transition: opacity .25s;
}
.logo-pill:hover { opacity: 1; color: var(--slate); }
/* Barra de logos em loop contínuo (marquee) — 4 por vez */
.logos-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logos-track { display: flex; align-items: center; width: 300%; animation: logos-scroll 34s linear infinite; }
.logo-slide { flex: 0 0 8.3333%; display: flex; align-items: center; justify-content: center; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logos-bar .logo-img {
  max-height: 46px; max-width: 75%; width: auto; height: auto;
  object-fit: contain; opacity: 0.85; transition: opacity .25s var(--ease);
}
.logos-bar .logo-img:hover { opacity: 1; }
@media (max-width: 640px) { .logos-track { width: 600%; } }
@media (prefers-reduced-motion: reduce) { .logos-track { animation: none; } }

/* ---------- Grid índice (funcionalidades / segmentos) ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feat-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 4px;
}
.feat-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feat-card .ic {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 10px; background: var(--green-soft); color: var(--green-dark);
  margin-bottom: 14px;
}
.feat-card h3 { color: var(--slate); margin-bottom: 6px; }
.feat-card p { font-size: 0.92rem; color: var(--text-2); margin: 0 0 14px; }
.feat-card .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--green-dark);
}
.feat-card:hover .more { color: var(--slate); }

/* ---------- Funcionalidades: pinned scroll (1 por vez) ---------- */
.features-scroll-wrapper {
  /* 8 transições + 1 tela = 9 slides (~85vh por transição) */
  height: 820vh;
  position: relative;
}
.features-sticky {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  min-height: 600px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: background-color .4s var(--ease);
  /* textura sutil de pontos (vale para branco e verde) */
  background-color: var(--bg);
  background-image: radial-gradient(rgba(38, 50, 56, 0.05) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.features-sticky.is-alt {
  background-color: var(--green-wash);
  background-image:
    radial-gradient(80% 70% at 100% -10%, rgba(141, 199, 62, 0.62), transparent 55%),
    radial-gradient(75% 65% at -10% 110%, rgba(95, 168, 34, 0.45), transparent 58%),
    radial-gradient(55% 55% at 50% 48%, rgba(255, 255, 255, 0.38), transparent 70%),
    radial-gradient(rgba(95, 168, 34, 0.22) 1.2px, transparent 1.6px);
  background-size: auto, auto, auto, 24px 24px;
}
/* nos slides verdes, os chips inativos ficam brancos p/ contraste */
.features-sticky.is-alt .feature-tab { background: var(--white); }
.features-sticky.is-alt .feature-tab.active { background: var(--green); }
/* eyebrow sobre o painel verde: pílula branca p/ contraste */
.features-sticky.is-alt .eyebrow { background: #fff; color: var(--green-dark); box-shadow: 0 1px 4px rgba(38, 50, 56, 0.10); }

/* tab bar horizontal */
.features-tabs {
  text-align: center;
  padding: 22px 24px 16px;
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  background: transparent;
  flex: none;
  -webkit-overflow-scrolling: touch;
}
.features-tabs::-webkit-scrollbar { display: none; }
.features-tabs-track {
  display: inline-flex; gap: 10px;
  margin: 0 auto; padding-bottom: 2px;
  scroll-snap-type: x proximity;
}
.feature-tab { background: var(--bg-soft); scroll-snap-align: center; }
.features-tabs::-webkit-scrollbar { height: 6px; }
.features-tabs::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 6px; }
.feature-tab {
  display: inline-flex; align-items: center; gap: 8px;
  flex: none; scroll-snap-align: start;
  padding: 10px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--text-2); font-family: inherit; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: all .25s var(--ease);
}
.feature-tab .ic { display: inline-grid; place-items: center; color: var(--text-3); transition: color .25s; }
.feature-tab:hover { border-color: var(--green); color: var(--slate); }
.feature-tab:hover .ic { color: var(--green-dark); }
.feature-tab.active { background: var(--green); border-color: var(--green); color: var(--slate); box-shadow: var(--shadow-sm); }
.feature-tab.active .ic { color: var(--slate); }

/* stage (área dos slides) */
.features-stage { position: relative; flex: 1; overflow: hidden; }
.feature-slide {
  display: none;
  width: 100%; height: 100%;
  overflow-y: auto;
  align-items: center;
  padding: 32px 0;
}
.feature-slide.active { display: flex; }
/* animação de entrada por coluna (mais dinâmico): texto e ilustração entram de lados opostos */
.feature-slide.active .feature-copy { animation: featColLeft .55s var(--ease) both; }
.feature-slide.active .feature-illustration { animation: featColRight .6s var(--ease) .08s both; }
.feature-slide.active .order-1 { animation: featColLeft .55s var(--ease) both; }
.feature-slide.active .order-2 { animation: featColRight .6s var(--ease) .08s both; }
@keyframes featColLeft { from { opacity: 0; transform: translateX(-44px); } to { opacity: 1; transform: none; } }
@keyframes featColRight { from { opacity: 0; transform: translateX(44px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .feature-slide.active .feature-copy, .feature-slide.active .feature-illustration,
  .feature-slide.active .order-1, .feature-slide.active .order-2 { animation: none; }
}
/* fundo alternado é pintado no painel inteiro (.features-sticky.is-alt),
   então slides e barra de abas compartilham exatamente a mesma cor */

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; width: 100%; }
.feature-copy { max-width: 520px; }
.feature-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.25; margin-bottom: 12px; }
.feature-copy h5 { color: var(--green-dark); font-size: 1.08rem; font-weight: 700; margin-bottom: 14px; }
.feature-copy .btn { margin-top: 8px; }
.feature-blog-title { font-size: 0.92rem; font-weight: 700; color: var(--slate); margin: 18px 0 10px; }
.order-1 { order: 1; } .order-2 { order: 2; }
.ri-badge.ok { background: var(--green-soft); color: var(--green-dark); }

/* feature rows empilhados (páginas internas) — tela contínua, sem bandas alternadas */
.feature-rows-wrap {
  background-color: #fbfdf7;
  background-image: radial-gradient(100% 65% at 82% 0%, rgba(141, 199, 62, 0.06), transparent 60%);
  background-attachment: fixed; /* parallax suave */
}
.feature-rows { display: flex; flex-direction: column; }
.feature-row { padding: 96px 0; }
.feature-row:first-child { padding-top: 8px; }
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row .feature-grid { width: 100%; }
.feature-row .feature-copy h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.25; margin-bottom: 12px; }
.feature-row .feature-copy h5 { color: var(--green-dark); font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
@media (max-width: 960px) {
  .feature-rows-wrap { background-attachment: scroll; }
  .feature-row { padding: 56px 0; }
}

/* captura de tela do CRM (seção "Por que usar") — sem card, com tilt 3D seguindo o mouse */
.crm-shot {
  max-width: 1000px; margin: 0 auto 56px;
  transform: perspective(820px);
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
}
.crm-shot img {
  width: 100%; height: auto; display: block;
}

/* --- CRM: ilustrações das funcionalidades --- */
/* cartões de conversa com ícone de canal */
.ri-conv { display: flex; align-items: center; gap: 12px; }
.ri-ic { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; }
.ri-ic--wa { background: #25D366; }
.ri-ic--mail { background: var(--green-dark); }
/* badges de status — aberto x fechado com layouts distintos */
.conv-badge { font-size: 0.72rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.conv-badge--open { background: var(--green); color: var(--slate); }
.conv-badge--open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--slate); }
.conv-badge--closed { background: transparent; color: var(--text-3); border: 1px solid var(--line); border-radius: 8px; }
/* snippet — composer do agente */
.snippet-compose { align-self: stretch; display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px dashed var(--green); border-radius: 12px; padding: 10px 12px; }
.snippet-cmd { font-family: ui-monospace, Menlo, Consolas, monospace; font-weight: 700; color: var(--green-dark); background: var(--green-soft); padding: 3px 8px; border-radius: 6px; font-size: 0.82rem; }
.snippet-hint { font-size: 0.76rem; color: var(--text-3); }
/* mídia — áudio com waveform */
.media-audio { align-items: center; gap: 10px; }
.ma-play { flex: none; width: 26px; height: 26px; border-radius: 50%; border: none; background: var(--green); color: var(--slate); display: grid; place-items: center; cursor: pointer; }
.ma-wave { display: inline-flex; align-items: center; gap: 3px; height: 24px; }
.ma-wave i { width: 3px; border-radius: 2px; background: var(--green-dark); opacity: .6; }
.ma-time { font-size: 0.78rem; color: var(--text-3); }
/* mídia — imagem */
.media-pic { flex-direction: column; align-items: stretch; gap: 8px; max-width: 70%; }
.mp-thumb { width: 100%; height: 88px; border-radius: 10px; background: linear-gradient(135deg, #cfe9a6, #8DC73E); display: grid; place-items: center; color: rgba(255,255,255,.92); }
/* reação anexada à mensagem */
.has-react { position: relative; margin-bottom: 12px; }
.msg-react { position: absolute; right: 6px; bottom: -11px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 1px 8px; font-size: 0.82rem; box-shadow: var(--shadow-sm); }
/* nota interna — visível só para a equipe */
.chat-bubble.note { align-self: stretch; max-width: 100%; background: #FEF7E0; border: 1px solid #F6E3A6; color: #7a611a; flex-direction: column; gap: 3px; }
.chat-bubble.note .note-tag { font-size: 0.66rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #B45309; }

/* blog list / tag links */
.blog-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.blog-list a { display: inline-flex; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text-2); }
.blog-list a::before { content: "→"; color: var(--green-dark); }
.blog-list a:hover { color: var(--green-dark); }
.tag-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-link {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1.5px solid var(--green);
  color: var(--green-dark); font-size: 0.86rem; font-weight: 600;
  transition: all .25s var(--ease);
}
.tag-link:hover { background: var(--green); color: var(--slate); }

/* illustration shared */
.feature-illustration { display: flex; justify-content: center; }

/* payment card */
.payment-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-md); max-width: 380px; width: 100%; }
.payment-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.payment-card-head small { color: var(--text-3); font-size: 0.78rem; }
.payment-card-head h5 { margin: 2px 0 0; color: var(--slate); font-size: 1.15rem; font-weight: 700; }
.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.payment-method {
  background: var(--bg-soft); border-radius: 12px; padding: 14px 6px;
  text-align: center; cursor: pointer; border: 2px solid transparent;
  transition: all .25s var(--ease); color: var(--text-2);
}
.payment-method svg { margin: 0 auto 5px; display: block; }
.payment-method small { font-weight: 600; font-size: 0.82rem; }
.payment-method.active { background: var(--green-soft); border-color: var(--green); color: var(--green-dark); }
.payment-total { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.payment-total span { color: var(--text-3); }
.payment-total strong { color: var(--green-dark); font-size: 1.3rem; }

/* recurring */
.recurring-illustration { display: flex; flex-direction: column; gap: 14px; max-width: 420px; width: 100%; }
.recurring-item { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); }
.ri-top { display: flex; justify-content: space-between; align-items: center; }
.ri-top strong { color: var(--slate); }
.ri-sub { font-size: 0.8rem; color: var(--text-3); }
.ri-badge { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); }
.ri-badge.warn { background: #FEF3C7; color: #B45309; }
.ri-bottom { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
.ri-bottom small { color: var(--text-3); font-size: 0.82rem; }
.ri-bottom strong { color: var(--slate); }

/* chat */
.chat-illustration { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow-md); max-width: 400px; width: 100%; display: flex; flex-direction: column; gap: 12px; }
/* destaque do card da régua + canais */
.chat-illustration--accent { border-color: var(--green); box-shadow: 0 18px 44px -18px var(--green-glow), var(--shadow-md); }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.chat-head-title { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--slate); }
.chat-head-title svg { color: var(--green-dark); }
.chat-illustration { position: relative; }
/* card do chat maior dentro do hero interno */
.inner-hero-visual .chat-illustration { max-width: 520px; padding: 30px; gap: 14px; }
.inner-hero-visual .chat-illustration .chat-bubble { font-size: 0.94rem; max-width: 92%; padding: 13px 16px; }
.inner-hero-visual .chat-head-title { font-size: 0.92rem; }
/* ícones de canais flutuando pela borda do card (estilo floats do hero) */
.chat-ch {
  position: absolute; z-index: 3;
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: 0 12px 26px -8px rgba(38, 50, 56, 0.4);
}
.chat-ch svg { width: 24px; height: 24px; }
/* identidade Recash: verde, cinza, branco */
.chat-ch--wa   { background: var(--green); color: #fff; top: -20px; right: 26px; animation: floaty 5s ease-in-out infinite; }
.chat-ch--mail { background: #fff; color: var(--green-dark); border: 1px solid var(--line); top: 40%; left: -24px; animation: floaty-sway 6s ease-in-out infinite; }
.chat-ch--sms  { background: var(--slate); color: #fff; bottom: -20px; left: 32px; animation: floaty-rot 5.6s ease-in-out infinite; }
.chat-bubble { display: flex; align-items: flex-start; gap: 8px; padding: 12px 14px; border-radius: 14px; max-width: 88%; font-size: 0.86rem; }
.chat-bubble svg { flex: none; margin-top: 1px; }
.chat-bubble.bot { background: var(--bg-soft); align-self: flex-start; color: var(--text); }
.chat-bubble.user { background: var(--green); color: var(--slate); align-self: flex-end; font-weight: 600; }

/* contract */
.contract-doc { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-md); max-width: 400px; width: 100%; }
.contract-badge { position: absolute; top: 16px; right: 16px; display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); white-space: nowrap; }
.contract-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; padding-right: 88px; }
.contract-header svg { flex: none; margin-top: 2px; }
.contract-header strong { color: var(--slate); display: block; line-height: 1.3; }
.contract-lines { margin-bottom: 18px; display: grid; gap: 11px; }
.contract-lines .line { height: 8px; background: var(--bg-alt); border-radius: 4px; }
.contract-lines .line.short { width: 60%; }
.signature-box { border-top: 2px solid var(--green); padding-top: 10px; }
.signature-text { font-family: "Brush Script MT", "Segoe Script", cursive; font-size: 1.6rem; color: var(--green-dark); display: block; }
.signature-box small { color: var(--text-3); font-size: 0.78rem; }

/* portal */
.portal-mockup { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); max-width: 380px; width: 100%; }
.portal-header { background: linear-gradient(120deg, var(--green-dark), var(--green)); color: var(--white); padding: 22px; display: flex; align-items: center; gap: 12px; }
.portal-header strong { color: var(--white); }
.ph-sub { font-size: 0.82rem; opacity: 0.9; }
.portal-body { padding: 8px 22px 18px; }
.portal-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.portal-item:last-child { border-bottom: none; }
.portal-item small { color: var(--text-3); font-size: 0.8rem; }
.pi-strong { font-weight: 700; color: var(--slate); }
.pi-amount { color: var(--green-dark); font-size: 1.05rem; }

/* invoice / nota fiscal */
.invoice-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-md); max-width: 400px; width: 100%; }
.invoice-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.invoice-head small { color: var(--text-3); font-size: 0.78rem; display: block; }
.invoice-head strong { color: var(--slate); font-size: 1.05rem; }
.invoice-rows { display: grid; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.invoice-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-2); }
.invoice-total { display: flex; justify-content: space-between; align-items: center; margin: 16px 0; }
.invoice-total span { color: var(--text-3); }
.invoice-total strong { color: var(--green-dark); font-size: 1.25rem; }
.invoice-foot { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-3); padding-top: 14px; border-top: 1px dashed var(--line-strong); }

/* dashboard */
.dash-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-md); max-width: 420px; width: 100%; }
.dash-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.dash-head small { color: var(--text-3); font-size: 0.78rem; display: block; }
.dash-head strong { color: var(--slate); font-size: 1.5rem; display: block; letter-spacing: -0.02em; }
.dash-delta { color: var(--green-dark); font-size: 0.8rem; font-weight: 600; }
.bars-chart { display: flex; align-items: flex-end; gap: 10px; height: 110px; padding: 12px 0; }
.bars-chart span { flex: 1; background: linear-gradient(180deg, var(--green), var(--green-dark)); border-radius: 6px 6px 0 0; min-height: 8px; }
.bars-chart span:last-child { background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.dash-kpi { background: var(--bg-soft); border-radius: 10px; padding: 12px; }
.dash-kpi .label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-3); }
.dash-kpi .value { font-size: 1.05rem; font-weight: 800; color: var(--slate); margin-top: 2px; }

/* receipt / PDV */
.receipt-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-md); max-width: 380px; width: 100%; }
.receipt-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.receipt-head strong { color: var(--slate); font-size: 1.1rem; }
.receipt-pay { display: flex; gap: 8px; margin: 16px 0; }
.pay-chip { flex: 1; text-align: center; padding: 9px 6px; border-radius: 10px; background: var(--bg-soft); border: 2px solid transparent; font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.pay-chip.active { background: var(--green-soft); border-color: var(--green); color: var(--green-dark); }
.receipt-btn { width: 100%; margin-top: 8px; background: var(--green); color: var(--slate); border: none; border-radius: 10px; padding: 13px; font-family: inherit; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: background .2s; }
.receipt-btn:hover { background: var(--green-dark); color: var(--white); }

/* Cliente360 */
.c360-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-md); max-width: 420px; width: 100%; }
.c360-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.c360-avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); font-weight: 800; font-size: 0.9rem; display: grid; place-items: center; letter-spacing: .02em; }
.c360-info { flex: 1; }
.c360-info strong { display: block; color: var(--slate); font-size: 1rem; font-weight: 700; }
.c360-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-top: 3px; }
.c360-badge.active { background: var(--green-soft); color: var(--green-dark); }
.c360-health { font-size: 0.72rem; font-weight: 700; padding: 5px 10px; border-radius: 20px; }
.c360-health.good { background: var(--green-soft); color: var(--green-dark); }
.c360-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.c360-metric { background: var(--bg-soft); border-radius: 10px; padding: 10px 12px; }
.c360-label { display: block; font-size: 0.67rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); margin-bottom: 3px; }
.c360-value { font-size: 0.98rem; font-weight: 800; color: var(--slate); }
.c360-value.green { color: var(--green-dark); }
.c360-value.warn { color: #E07B00; }
.c360-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.c360-section { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 10px; background: var(--bg-soft); border: 1.5px solid transparent; font-size: 0.8rem; font-weight: 600; color: var(--text-2); }
.c360-section.active { background: var(--green-soft); border-color: var(--green); color: var(--green-dark); }
.c360-section svg { flex: none; }
.c360-count { margin-left: auto; background: var(--line); border-radius: 20px; padding: 1px 7px; font-size: 0.7rem; font-weight: 700; color: var(--text-2); }
.c360-section.active .c360-count { background: rgba(95,168,34,0.25); color: var(--green-dark); }

/* ---------- Pitch / pilares ---------- */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pitch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.pitch-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pitch-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pitch-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  margin: 0 0 10px;
}
.pitch-card p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}
.pitch-cta {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
@media (max-width: 960px) {
  .pitch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pitch-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* segmentos: cards mais compactos com sotaque diferente */
.seg-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  display: flex; align-items: center; gap: 14px;
  transition: all .25s var(--ease);
}
.seg-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seg-card .ic {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green-dark);
}
.seg-card .t { font-weight: 700; color: var(--slate); font-size: 0.98rem; line-height: 1.3; }
.seg-card .d { font-size: 0.82rem; color: var(--text-3); }

/* ---------- Integração / fluxo ---------- */
.flow-section { background: var(--slate); color: var(--white); padding: 90px 0; position: relative; overflow: hidden; }
.flow-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(141,199,62,0.18), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(141,199,62,0.10), transparent 70%);
  pointer-events: none;
}
.flow-section .container { position: relative; }
.flow-section h2 { color: var(--white); }
.flow-section .section-head p { color: rgba(255, 255, 255, 0.7); }
.flow-section .eyebrow { background: rgba(141, 199, 62, 0.18); color: var(--green); }
.flow-section .eyebrow::before { background: var(--green); }

.flow-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  align-items: stretch;
}
.flow-step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px; padding: 22px;
  backdrop-filter: blur(6px);
  transition: border-color .3s, background .3s, transform .3s;
}
.flow-step:hover { border-color: var(--green); background: rgba(141, 199, 62, 0.08); transform: translateY(-3px); }
.flow-step .ic {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(141, 199, 62, 0.20); color: var(--green);
  margin-bottom: 14px;
}
.flow-step .num {
  font-size: 0.72rem; letter-spacing: 0.1em; font-weight: 700;
  color: rgba(255, 255, 255, 0.45); margin-bottom: 8px;
}
.flow-step h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.flow-step p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.7); margin: 0; }
.flow-step::after {
  content: ""; position: absolute; right: -14px; top: 50%;
  width: 12px; height: 2px; background: rgba(141, 199, 62, 0.5);
}
.flow-step:last-child::after { display: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: var(--green); }
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-weight: 600; color: var(--slate); font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none; width: 26px; height: 26px; border-radius: 7px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--green-dark);
  transition: transform .25s var(--ease), background .25s;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--green-soft); border-color: var(--green); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-2); font-size: 0.95rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: center;
}
.stat-block .n {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--green-dark);
  letter-spacing: -0.03em; line-height: 1.05;
}
.stat-block .l { font-size: 0.95rem; color: var(--text-2); margin-top: 6px; }

/* ---------- Depoimentos (carousel) ---------- */
.testimonials-carousel { max-width: none; margin: 0 auto; }
.testimonials-carousel .t-card { padding: 42px 46px; }
.testimonials-carousel .t-mark { width: 44px; height: 44px; margin-bottom: 16px; }
.testimonials-carousel .t-quote { margin-bottom: 28px; }
.testimonials-carousel .t-quote p { font-size: 1.12rem; line-height: 1.75; }
.testimonials-carousel .t-author { padding-top: 22px; }
.testimonials-carousel .t-logo { max-height: 46px; }
.testimonials-carousel .t-name { font-size: 1.02rem; }
.testimonials-carousel .t-role { font-size: 0.88rem; }
@media (max-width: 640px) {
  .testimonials-carousel .t-card { padding: 28px 24px; }
  .testimonials-carousel .t-quote p { font-size: 1rem; }
}
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; }
/* card desliza na direção do clique: avançar entra pela direita, voltar pela esquerda */
.testimonial-slide.is-active .t-card { animation: testiPop .5s var(--ease) both; }
.testimonial-slide.is-active.from-next .t-card { animation: testiFromRight .45s var(--ease) both; }
.testimonial-slide.is-active.from-prev .t-card { animation: testiFromLeft .45s var(--ease) both; }
@keyframes testiPop { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
@keyframes testiFromRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: none; } }
@keyframes testiFromLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .testimonial-slide.is-active .t-card { animation: none; }
}
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.testi-prev, .testi-next {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--white);
  display: grid; place-items: center; cursor: pointer;
  color: var(--text-2); transition: border-color .2s, background .2s, color .2s;
}
.testi-prev:hover, .testi-next:hover {
  border-color: var(--green); background: var(--green-soft); color: var(--green-dark);
}
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer; padding: 0;
  transition: background .25s, width .25s, border-radius .25s;
}
.testi-dot.is-active { background: var(--green); width: 24px; border-radius: 4px; }
.testimonial {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.testimonial:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial .quote { color: var(--text); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.testimonial .quote::before { content: '"'; color: var(--green-dark); font-size: 2.6rem; line-height: 0; vertical-align: -10px; margin-right: 4px; font-weight: 800; }
.testimonial .testi-logo {
  display: block; max-height: 40px; max-width: 160px; width: auto; height: auto;
  object-fit: contain; margin-bottom: 20px;
}
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-weight: 700; font-size: 0.95rem;
}
.testimonial .name { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
.testimonial .role { font-size: 0.82rem; color: var(--text-3); }

/* ---------- Depoimentos (grid moderno) ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.t-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.t-mark { color: var(--green); opacity: 0.45; margin-bottom: 12px; flex: none; }
.t-quote { margin: 0 0 24px; }
.t-quote p { color: var(--text); font-size: 0.96rem; line-height: 1.65; margin: 0 0 12px; }
.t-quote p:last-child { margin-bottom: 0; }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.t-logo { max-height: 38px; max-width: 120px; width: auto; height: auto; object-fit: contain; flex: none; }
.t-name { display: block; font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
.t-role { display: block; font-size: 0.82rem; color: var(--text-3); }
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.plan {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.plan:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-md);
}
.plan .badge-pop {
  position: absolute; top: -12px; right: 24px;
  background: var(--green); color: var(--slate);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.plan .plan-name { font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-dark); }
.plan h3 { font-size: 1.5rem; margin: 6px 0 4px; }
.plan .plan-sub { color: var(--text-3); font-size: 0.92rem; margin-bottom: 22px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.plan .price .v { font-size: 2.2rem; font-weight: 800; color: var(--slate); letter-spacing: -0.03em; }
.plan .price .u { font-size: 0.92rem; color: var(--text-3); }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.plan li {
  display: flex; gap: 10px; font-size: 0.91rem; color: var(--text-2);
}
.plan li::before {
  content: ""; flex: none; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236FA822' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  margin-top: 3px;
}
.plan li.plan-cat {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-3);
}
.plan li.plan-cat::before { display: none; }
.plan li.plan-subitem { padding-left: 14px; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- Banner CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--slate), var(--slate-2));
  color: var(--white);
  border-radius: var(--radius-lg); padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 100%, rgba(141, 199, 62, 0.25), transparent 65%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 520px; margin: 0 auto 26px; }
.cta-band .container, .cta-band > div { position: relative; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-ghost { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.30); color: var(--white); }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: var(--white); }

/* ---------- Central de dúvidas (/faq) ---------- */
.faq-hero .container { max-width: 880px; text-align: center; }
.faq-hero .breadcrumb { justify-content: center; }
.faq-hero .eyebrow { background: rgba(141, 199, 62, 0.16); color: #C2E594; }
.faq-hero .eyebrow::before { background: var(--green); }
.faq-hero h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.16; margin: 14px 0 16px; color: #fff; }
.faq-lead { color: #B7C4CC; font-size: 1.08rem; line-height: 1.6; max-width: 660px; margin: 0 auto; }
.faq-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.faq-pill {
  display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: #E6EDF0;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.faq-pill:hover { background: rgba(141, 199, 62, 0.22); border-color: var(--green); color: #fff; }
.faq-hero .container { position: relative; z-index: 1; }
/* FAQ: 1 painel fixado por vez; ao rolar, troca de seção (igual funcionalidades) */
.faq-scroll { position: relative; }
.faq-sticky {
  position: sticky; top: 72px;
  height: calc(100vh - 72px); min-height: 560px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: background-color .4s var(--ease);
  background-color: var(--bg);
  background-image: radial-gradient(rgba(38, 50, 56, 0.05) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.faq-sticky.alt {
  background-color: var(--green-wash);
  background-image:
    radial-gradient(80% 70% at 100% -10%, rgba(141, 199, 62, 0.62), transparent 55%),
    radial-gradient(75% 65% at -10% 110%, rgba(95, 168, 34, 0.45), transparent 58%),
    radial-gradient(55% 55% at 50% 48%, rgba(255, 255, 255, 0.38), transparent 70%),
    radial-gradient(rgba(95, 168, 34, 0.22) 1.2px, transparent 1.6px);
  background-size: auto, auto, auto, 24px 24px;
}
.faq-sticky.alt .eyebrow { background: #fff; color: var(--green-dark); box-shadow: 0 1px 4px rgba(38, 50, 56, 0.10); }
.faq-tabbar {
  flex: none;
  overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.faq-tabbar::-webkit-scrollbar { display: none; }
.faq-tabbar-track { display: flex; align-items: center; gap: 10px; padding: 16px 24px; width: max-content; min-width: 100%; box-sizing: border-box; }
.faq-tab {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  padding: 9px 15px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--text-2); font-family: inherit; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.faq-tab svg { flex: none; }
.faq-tab-sep { flex: none; align-self: stretch; width: 1px; margin: 2px 6px; background: var(--line); }
.faq-tab:hover { border-color: var(--green); color: var(--slate); }
.faq-sticky.alt .faq-tab { background: var(--white); }
.faq-tab.is-active, .faq-sticky.alt .faq-tab.is-active { background: var(--green); border-color: var(--green); color: var(--slate); box-shadow: var(--shadow-sm); }
.faq-stage { position: relative; flex: 1; overflow: hidden; }
.faq-panel { display: none; width: 100%; height: 100%; overflow-y: auto; padding: 30px 0 40px; }
.faq-panel.is-active { display: block; animation: faqIn .45s var(--ease) both; }
.faq-panel .faq-list { max-width: 860px; margin: 0 auto; }
@keyframes faqIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-panel.is-active { animation: none; } }

/* ---------- Form ---------- */
.form-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; color: var(--slate-2); margin-bottom: 7px; font-weight: 600; }
.field label .req { color: var(--green-dark); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 13px 15px;
  color: var(--slate); font-family: inherit; font-size: 0.95rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: var(--text-3); margin: 6px 0 18px; }
.consent input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--green-dark); }
.consent a { color: var(--green-dark); text-decoration: underline; }
.form-success {
  display: none;
  border: 1px solid var(--green); background: var(--green-soft);
  border-radius: 10px; padding: 14px 16px;
  color: var(--slate); font-size: 0.93rem; margin-bottom: 18px;
}
.form-error {
  display: none;
  border: 1px solid #E0524E; background: rgba(224, 82, 78, 0.08);
  border-radius: 10px; padding: 14px 16px;
  color: #B5302C; font-size: 0.93rem; margin-bottom: 18px;
}
/* empty state após o envio (substitui o formulário) */
.form-sent {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; min-height: 360px;
}
.form-sent-ic {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 6px;
  background: var(--green-soft); color: var(--green-dark);
}
.form-sent h3 { font-size: 1.3rem; color: var(--slate); margin: 0; }
.form-sent p { color: var(--text-3); font-size: 0.95rem; max-width: 340px; margin: 0 0 8px; }
/* após enviar: coluna direita estica até a altura da esquerda e centraliza o empty state */
.form-wrap.is-sent { align-items: stretch; }

/* contato side panel */
.contact-side h2 { margin-bottom: 10px; }
.contact-channels { display: grid; gap: 12px; margin-top: 24px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px;
  transition: border-color .25s, transform .25s;
}
.contact-item:hover { border-color: var(--green); transform: translateY(-2px); }
.contact-item .ic {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green-dark);
}
.contact-item .k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); font-weight: 700; margin-bottom: 3px; }
.contact-item .v { font-size: 0.95rem; font-weight: 600; color: var(--slate); }
.contact-item .v a { color: var(--slate); }
.contact-item .v a:hover { color: var(--green-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(80% 55% at 50% 110%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px) 0 0 / 26px 26px,
    linear-gradient(165deg, #2A3744 0%, #1A232E 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 32px; margin-top: 40px;
  position: relative; overflow: hidden;
}
.footer-aura {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.footer-aura::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: overlay;
}
.footer-aura span {
  position: absolute; border-radius: 50%;
  filter: blur(82px); will-change: transform; mix-blend-mode: screen;
}
.footer-aura .fa1 {
  width: 520px; height: 520px; right: -120px; top: 50%; margin-top: -260px;
  background: radial-gradient(circle, rgba(141,199,62,0.70), transparent 68%);
  animation: blobUp 4.5s ease-in-out infinite alternate;
}
.footer-aura .fa2 {
  width: 520px; height: 520px; left: -120px; top: 50%; margin-top: -260px;
  background: radial-gradient(circle, rgba(141,199,62,0.70), transparent 68%);
  animation: blobDown 5s ease-in-out infinite alternate;
}
.footer-aura .fa3 {
  width: 400px; height: 400px; left: 32%; top: 50%; margin-top: -200px;
  background: radial-gradient(circle, rgba(205,218,228,0.20), transparent 70%);
  animation: blobDrift 6s ease-in-out infinite alternate;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-features ul { grid-template-columns: 1fr 1fr; column-gap: 28px; }
.footer-grid h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--green); }
.footer-about { max-width: 320px; font-size: 0.92rem; line-height: 1.55; }
.footer-about p { color: rgba(255, 255, 255, 0.72); }
.footer-about .brand { color: var(--white); margin-bottom: 14px; }
.footer-about .brand b { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: inherit; transition: color .2s var(--ease); }
.footer-bottom a:hover { color: var(--green); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background .25s, color .25s;
}
.social-row a:hover { background: var(--green); color: var(--slate); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.55);
  transition: transform .25s var(--ease), box-shadow .3s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .flow-track { grid-template-columns: repeat(2, 1fr); }
  .flow-step::after { display: none; }
  .form-wrap { grid-template-columns: 1fr; gap: 36px; }
  /* footer tablet: brand ocupa linha inteira, 3 colunas de links abaixo */
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-about { grid-column: 1 / -1; max-width: 100%; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .plans { grid-template-columns: 1fr; }

  /* funcionalidades: mantém pin + scroll-driven (rola = avança), coluna única e compacto */
  .features-scroll-wrapper { height: 620vh; } /* avanço mais ágil entre os 9 no mobile */
  /* sem slide horizontal no mobile (preserva o scale da ilustração) */
  .feature-slide.active .feature-copy, .feature-slide.active .feature-illustration,
  .feature-slide.active .order-1, .feature-slide.active .order-2 { animation: none; }
  .features-sticky { min-height: 0; }
  .features-tabs {
    text-align: left; padding: 14px 18px 12px; /* scroll horizontal a partir da esquerda */
  }
  .features-tabs-track { margin: 0; }
  .features-tabs .feature-tab { font-size: 0.82rem; padding: 8px 13px; }
  /* centra slides curtos; nos altos ancora no topo (safe) e rola interno, sem cortar */
  .feature-slide { align-items: safe center; overflow-y: auto; padding: 16px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 22px; }
  .feature-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .feature-copy h2 { font-size: 1.4rem; margin-bottom: 8px; }
  .feature-copy h5 { font-size: 0.98rem; margin-bottom: 10px; }
  .feature-copy p { font-size: 0.92rem; margin-bottom: 14px; }
  .feature-copy .blog-list, .feature-blog-title, .feature-copy .tag-links { display: none; } /* enxuga p/ caber */
  .order-1, .order-2 { order: 0; } /* texto primeiro, ilustração depois */
  .feature-illustration { transform: scale(0.86); transform-origin: center; }
  .feature-illustration .contract-lines .line:nth-child(n+4) { display: none; }
  .feature-illustration .recurring-item:nth-child(3),
  .feature-illustration .chat-bubble:nth-child(3) { display: none; }
  .feature-illustration .receipt-btn { display: none; } /* botão decorativo do PDV */
  .feature-illustration .payment-card,
  .feature-illustration .recurring-illustration,
  .feature-illustration .chat-illustration,
  .feature-illustration .contract-doc,
  .feature-illustration .portal-mockup,
  .feature-illustration .invoice-card,
  .feature-illustration .dash-card,
  .feature-illustration .receipt-card,
  .feature-illustration .c360-card { margin: 0 auto; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 0 16px; gap: 0; box-shadow: var(--shadow-sm);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  /* acordeão: dropdown só abre quando o <li> tem .open */
  .nav.open .nav-links .has-dropdown.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 4px 0 8px 16px; grid-template-columns: 1fr;
  }
  /* trigger vira item de lista full-width */
  .nav.open .nav-links .nav-trigger {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 12px 24px; font-weight: 600; color: var(--slate);
    background: none; border-radius: 0; border: none;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links li:last-child .nav-trigger { border-bottom: none; }
  /* links simples (Planos, Blog) */
  .nav.open .nav-links > li:not(.has-dropdown) > a {
    display: block; padding: 12px 24px; font-weight: 600; color: var(--slate);
    border-bottom: 1px solid var(--line);
  }
  /* dropdown links dentro do acordeão: forçar cor escura sobre fundo branco */
  .nav.open .nav-links .dropdown a {
    padding: 10px 12px; border-radius: 6px; color: var(--slate) !important;
  }
  .nav.open .nav-links .dropdown a strong { color: var(--slate); font-size: 0.9rem; }
  /* esconder descrições no mobile — mantém só o nome */
  .nav.open .nav-links .dropdown a span { display: none; }
  /* links de nível superior também em cor escura */
  .nav.open .nav-links .nav-trigger,
  .nav.open .nav-links > li:not(.has-dropdown) > a { color: var(--slate) !important; }
  .grid-3, .grid-4, .flow-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-features ul { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile: centraliza conteúdo ---------- */
@media (max-width: 560px) {
  /* Hero principal */
  .hero-carousel { text-align: center; }
  .hero .hero-cta { justify-content: center; }
  .hero .hero-trust { justify-content: center; }
  .hero .tldr { text-align: left; }

  /* Inner hero de funcionalidades */
  .inner-hero-text { text-align: center; }
  .inner-hero-text .hero-cta { justify-content: center; }
  .inner-hero-text .gancho-bar { justify-content: center; }
  .inner-hero-text .breadcrumb { justify-content: center; }

  /* Footer mobile */
  .footer-grid > div { text-align: center; }
  .social-row { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
}

/* ============================================================
   Páginas internas (funcionalidades / segmentos)
   ============================================================ */

/* ---------- Inner Hero ---------- */
.inner-hero {
  background:
    radial-gradient(80% 55% at 50% -14%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px) 0 0 / 26px 26px,
    linear-gradient(165deg, #2A3744 0%, #1A232E 100%);
  color: #E6EDF0;
  padding: 120px 0 72px;
  position: relative; overflow: hidden;
}
.inner-hero .container { position: relative; z-index: 1; max-width: var(--maxw); }

/* Grade 2 colunas: texto | mockup */
.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.inner-hero-visual .mockup-frame {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(255,255,255,0.08);
}
/* Responsivo: empilha quando não há espaço */
@media (max-width: 900px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .inner-hero-visual {
    margin-top: 48px;
  }
}
.inner-hero h1 { color: #fff; margin: 0 0 16px; }
.inner-hero .hero-sub { color: #B7C4CC; max-width: 640px; margin: 0 0 32px; font-size: 1.05rem; }
.inner-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.inner-hero .hero-trust { margin: 28px 0 0; }
.inner-hero ul.hero-trust { list-style: none; padding: 0; gap: 12px; }
.inner-hero ul.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141,199,62,0.14);
  border: 1px solid rgba(141,199,62,0.35);
  color: #DCEFC4;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Painel ilustrado do hero de segmento (coluna direita) */
.seg-hero-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.seg-hero-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.seg-hero-ic {
  width: 52px; height: 52px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(141,199,62,0.18);
  color: var(--green);
}
.seg-hero-head-tx strong { display: block; color: #fff; font-size: 1.02rem; line-height: 1.2; }
.seg-hero-head-tx span { color: #9FB0B9; font-size: 0.84rem; }
/* Badges de confiança (rodapé do card) */
.seg-card-badges {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; gap: 10px;
}
.seg-card-badges span { display: inline-flex; align-items: center; gap: 9px; color: #C7D3DA; font-size: 0.86rem; }
.seg-card-badges svg { color: var(--green); flex: none; }

/* a) Comprovante de pagamento — odonto */
.seg-pay { text-align: center; padding: 8px 0 4px; }
.seg-pay-check {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(141,199,62,0.18); color: var(--green);
}
.seg-pay-amt { color: #fff; font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; }
.seg-pay-label { color: #9FB0B9; font-size: 0.85rem; margin-top: 4px; }

/* b) Gráfico de barras — academias */
.seg-bars { display: flex; align-items: flex-end; gap: 10px; height: 118px; }
.seg-bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--green), rgba(141,199,62,0.35)); }
.seg-stat { display: flex; align-items: baseline; gap: 8px; margin-top: 16px; }
.seg-stat b { color: #fff; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.seg-stat em { color: var(--green); font-size: 0.9rem; font-weight: 700; font-style: normal; }
.seg-stat small { color: #8FA0A9; font-size: 0.8rem; }

/* c) Métrica + sparkline — saas */
.seg-metric { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.seg-metric-main b { display: block; color: #fff; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.seg-metric-main span { color: #8FA0A9; font-size: 0.82rem; }
.seg-spark { width: 124px; height: 56px; flex: none; }
.seg-metric-foot { display: flex; gap: 8px; align-items: baseline; margin-top: 14px; }
.seg-metric-foot em { color: var(--green); font-weight: 700; font-style: normal; font-size: 0.9rem; }
.seg-metric-foot small { color: #8FA0A9; font-size: 0.8rem; }

/* d) Lista com status — escolas */
.seg-list { display: grid; gap: 11px; }
.seg-list-row { display: flex; align-items: center; gap: 12px; }
.seg-list-av {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #C7D3DA;
  display: grid; place-items: center; font-size: 0.78rem; font-weight: 700;
}
.seg-list-tx { flex: 1; min-width: 0; }
.seg-list-tx strong { display: block; color: #E6EDF0; font-size: 0.88rem; }
.seg-list-tx span { color: #8FA0A9; font-size: 0.78rem; }
.seg-pill-ok { background: rgba(141,199,62,0.18); color: #C2E594; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.seg-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); }
.seg-total span { color: #8FA0A9; font-size: 0.82rem; }
.seg-total b { color: #fff; font-size: 1.3rem; font-weight: 800; }

/* e) Anel de ocupação — estacionamentos */
.seg-ring-wrap { display: flex; align-items: center; gap: 22px; }
.seg-ring { width: 108px; height: 108px; flex: none; }
.seg-ring-tx b { display: block; color: #fff; font-size: 1.5rem; font-weight: 800; }
.seg-ring-tx span { color: #8FA0A9; font-size: 0.82rem; }

/* f) Agenda — estética */
.seg-agenda { display: grid; gap: 12px; }
.seg-agenda-row { display: flex; align-items: center; gap: 14px; }
.seg-agenda-time { color: #C2E594; font-weight: 700; font-size: 0.85rem; width: 46px; flex: none; }
.seg-agenda-card {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 10px 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.seg-agenda-card strong { color: #E6EDF0; font-size: 0.85rem; font-weight: 600; }
.seg-agenda-card span { color: #8FA0A9; font-size: 0.75rem; }

/* g) Barras de progresso — clube de assinaturas */
.seg-prog { margin-bottom: 16px; }
.seg-prog:last-of-type { margin-bottom: 0; }
.seg-prog-top { display: flex; justify-content: space-between; margin-bottom: 7px; color: #C7D3DA; font-size: 0.82rem; }
.seg-prog-top b { color: #fff; }
.seg-prog-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.seg-prog-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), #B6E27A); }
.inner-hero .eyebrow { background: rgba(141,199,62,0.16); color: #C2E594; }
.inner-hero .eyebrow::before { background: var(--green); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: rgba(255,255,255,0.75); }

/* Gancho de dado */
.gancho-bar {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(141,199,62,0.12); border: 1px solid rgba(141,199,62,0.28);
  border-radius: 8px; padding: 9px 14px;
  font-size: 0.87rem; color: #C2E594; line-height: 1.4;
  margin-bottom: 20px;
}
.gancho-bar svg { flex: none; color: var(--green); }
.inner-hero-visual .gancho-bar { margin: 28px 0 0; }

/* ---------- Benefit cards (reusa pitch-grid) ---------- */
/* pitch-grid e pitch-card já definidos acima */

/* ---------- Steps (Como funciona) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step-count;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
/* variante: 4 por linha, itens restantes centralizados na última linha */
.steps-grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
.steps-grid--center > .step-card { flex: 0 0 calc(25% - 18px); max-width: calc(25% - 18px); }
@media (max-width: 900px) { .steps-grid--center > .step-card { flex-basis: calc(50% - 12px); max-width: calc(50% - 12px); } }
@media (max-width: 560px) { .steps-grid--center > .step-card { flex-basis: 100%; max-width: 100%; } }
.step-card {
  counter-increment: step-count;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-card::before {
  content: counter(step-count, decimal-leading-zero);
  display: block;
  font-size: 1.6rem; font-weight: 800; line-height: 1;
  color: var(--green);
  margin-bottom: 14px;
}
.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--slate); margin: 0 0 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-3); line-height: 1.6; margin: 0; }

/* ---------- Timeline (passo a passo vertical) ---------- */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 720px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 25px; top: 10px; bottom: 10px; width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--green-dark), var(--green) 55%, var(--green-soft));
}
.timeline-item { position: relative; padding: 0 0 26px 80px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute; left: 0; top: 0;
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; font-variant-numeric: tabular-nums;
  box-shadow: 0 0 0 6px var(--bg-section), 0 10px 22px -6px var(--green-glow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline-content {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* seta conectora ligando o card à trilha */
.timeline-content::before {
  content: ""; position: absolute; left: -7px; top: 20px;
  width: 12px; height: 12px; transform: rotate(45deg);
  background: #fff; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.timeline-item:hover .timeline-marker { transform: scale(1.08); box-shadow: 0 0 0 6px var(--bg-section), 0 14px 28px -6px var(--green-glow); }
.timeline-item:hover .timeline-content { transform: translateX(4px); border-color: var(--green); box-shadow: var(--shadow-lg); }
.timeline-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--slate); margin: 0 0 6px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-3); line-height: 1.6; margin: 0; }
@media (max-width: 560px) {
  .timeline::before { left: 19px; }
  .timeline-item { padding-left: 62px; }
  .timeline-marker { width: 40px; height: 40px; border-radius: 12px; font-size: 1rem; box-shadow: 0 0 0 5px var(--bg-section), 0 8px 18px -6px var(--green-glow); }
}

/* ---------- Stepper horizontal (3 passos) ---------- */
.stepper { display: flex; gap: 16px; position: relative; }
.stepper::before { content: ""; position: absolute; top: 31px; left: 16.66%; right: 16.66%; height: 2px; background: var(--line-strong); }
.stepper-item { flex: 1; text-align: center; }
.stepper-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg-section);
}
.stepper-item h4 { font-size: 1.02rem; font-weight: 700; color: var(--slate); margin: 0 0 8px; }
.stepper-item p { font-size: 0.9rem; color: var(--text-3); line-height: 1.6; margin: 0 auto; max-width: 280px; }
@media (max-width: 640px) {
  .stepper { flex-direction: column; }
  .stepper::before { display: none; }
}

/* ---------- Portal: 4 itens em destaque (2 colunas) ---------- */
.portal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.portal-item { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease); }
.portal-item:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portal-ic { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; }
.portal-tx h4 { font-size: 1.05rem; font-weight: 700; color: var(--slate); margin: 0 0 8px; }
.portal-tx p { font-size: 0.9rem; color: var(--text-3); line-height: 1.6; margin: 0; }
@media (max-width: 640px) { .portal-grid { grid-template-columns: 1fr; } }

/* pitch-grid com itens órfãos centralizados (ex.: 7 itens) */
.pitch-grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
.pitch-grid--center > .pitch-card { flex: 1 1 240px; max-width: 270px; }

/* ---------- Segmentos inner (5 cards de vantagem) — 3+2 centrado ---------- */
.seg-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.seg-benefits-grid > :nth-child(1) { grid-column: span 2; }
.seg-benefits-grid > :nth-child(2) { grid-column: span 2; }
.seg-benefits-grid > :nth-child(3) { grid-column: span 2; }
.seg-benefits-grid > :nth-child(4) { grid-column: 2 / span 2; }
.seg-benefits-grid > :nth-child(5) { grid-column: 4 / span 2; }
.seg-benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.seg-benefit-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seg-benefit-card .sbc-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; margin-bottom: 14px;
}
.seg-benefit-card h4 { font-size: 1rem; font-weight: 700; color: var(--slate); margin: 0 0 6px; }
.seg-benefit-card p { font-size: 0.87rem; color: var(--text-3); line-height: 1.6; margin: 0; }

/* ---------- Results list (segmentos) ---------- */
.results-list { display: grid; gap: 12px; max-width: 680px; margin: 0 auto; }
.result-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
}
.result-item .ric {
  width: 32px; height: 32px; border-radius: 8px; flex: none;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center;
}
.result-item p { margin: 0; font-size: 0.92rem; color: var(--text-2); line-height: 1.5; }
.result-item strong { color: var(--slate); font-weight: 700; display: block; margin-bottom: 2px; }

@media (max-width: 640px) {
  .inner-hero { padding: 120px 0 60px; }
  .steps-grid { grid-template-columns: 1fr; }
  .seg-benefits-grid { grid-template-columns: 1fr; }
  .seg-benefits-grid > :nth-child(n) { grid-column: auto; }
}

/* ============================================================
   PITCH GRID — variantes por número de itens
   ============================================================ */

/* — 3 colunas (6 cards: 3+3) — */
.pitch-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
/* herda o repeat(2,1fr) do @media 960px do .pitch-grid base */

/* — 5 itens: 3+2 centralizado no desktop — */
.pitch-grid--5 {
  grid-template-columns: repeat(6, 1fr);
}
.pitch-grid--5 > :nth-child(1) { grid-column: span 2; }
.pitch-grid--5 > :nth-child(2) { grid-column: span 2; }
.pitch-grid--5 > :nth-child(3) { grid-column: span 2; }
.pitch-grid--5 > :nth-child(4) { grid-column: 2 / span 2; }
.pitch-grid--5 > :nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 960px) {
  .pitch-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .pitch-grid--5 > :nth-child(n) { grid-column: auto; }
  .seg-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-benefits-grid > :nth-child(n) { grid-column: auto; }
}
@media (max-width: 560px) {
  .pitch-grid--3, .pitch-grid--5 { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   MOCKUP / SCREENSHOT DO SISTEMA
   ============================================================ */
.mockup-section { padding: 0 0 80px; }

.mockup-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
}
.mockup-chrome {
  background: var(--bg-soft);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url {
  flex: 1;
  text-align: center;
  background: rgba(38, 50, 56, 0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--text-3);
}
.mockup-body {
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mockup-body img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mockup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  text-align: center;
  padding: 40px 24px;
  pointer-events: none;
  user-select: none;
}
.mockup-placeholder svg { opacity: 0.28; }
.mockup-placeholder strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  margin: 0;
}
.mockup-placeholder span { font-size: 0.78rem; }

/* ---------- Elementos do hero por funcionalidade (cards brancos sobre painel) ---------- */
.feat-ui { display: flex; flex-direction: column; gap: 12px; font-size: 0.82rem; }
.feat-muted { color: var(--text-3); }
/* o card (painel) da funcionalidade fica branco — segmentos seguem escuros */
.seg-hero-panel:has(.feat-ui) { background: #fff; border-color: var(--line); }
.seg-hero-panel:has(.feat-ui) .seg-hero-head-tx strong { color: var(--text); }
.seg-hero-panel:has(.feat-ui) .seg-hero-head-tx span { color: var(--text-3); }
/* leve elevação dos elementos internos sobre o card branco */
.feat-row, .feat-kpi, .feat-bars, .feat-doc, .feat-total, .feat-checkout-amt,
.feat-method, .feat-bubble, .feat-profile, .feat-timeline, .feat-sales {
  box-shadow: 0 2px 8px rgba(38,50,56,0.06);
}

/* Lista (contas-a-pagar, pagamento-recorrente, portal) */
.feat-list { display: flex; flex-direction: column; gap: 10px; }
.feat-row { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.feat-row-ic { width: 32px; height: 32px; flex: none; border-radius: 9px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); }
.feat-row-tx { flex: 1; min-width: 0; }
.feat-row-tx strong { display: block; font-size: 0.84rem; color: var(--text); font-weight: 600; }
.feat-row-tx span { font-size: 0.74rem; color: var(--text-3); }
.feat-row-amt { font-weight: 700; font-size: 0.85rem; color: var(--text); white-space: nowrap; }
.feat-pill { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.feat-pill.ok { background: var(--green-soft); color: var(--green-dark); }
.feat-pill.warn { background: rgba(254,188,46,0.20); color: #9A6A06; }
.feat-pill.neutral { background: rgba(38,50,56,0.07); color: var(--text-3); }
.feat-link { font-size: 0.74rem; color: var(--green-dark); font-weight: 700; white-space: nowrap; }
.feat-total { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.feat-total span { font-size: 0.78rem; color: var(--text-3); }
.feat-total b { font-size: 1.15rem; color: var(--text); }

/* Animação Lottie (dashboard) */
.feat-lottie { display: block; width: 100%; aspect-ratio: 1000 / 650; }

/* KPIs + barras (dashboard) */
.feat-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.feat-kpi { padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.feat-kpi span { display: block; font-size: 0.68rem; color: var(--text-3); }
.feat-kpi b { font-size: 1rem; color: var(--text); }
.feat-kpi.accent { background: var(--green-soft); border-color: rgba(141,199,62,0.35); }
.feat-kpi.accent b { color: var(--green-dark); }
.feat-bars { display: flex; align-items: flex-end; gap: 9px; height: 96px; padding: 12px 14px 0; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.feat-bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--green), var(--green-dark)); }

/* Documento (assinatura, NF-e) */
.feat-doc { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 15px 16px; display: flex; flex-direction: column; gap: 10px; }
.feat-doc-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.feat-doc-head strong { font-size: 0.86rem; color: var(--text); }
.feat-doc-line { height: 8px; border-radius: 4px; background: var(--bg-alt); }
.feat-doc-line.mid { width: 78%; }
.feat-doc-line.short { width: 55%; }
.feat-doc-sign { margin-top: 2px; }
.feat-doc-sign em { display: block; font-style: italic; font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; color: var(--text); }
.feat-doc-sign span { display: block; border-top: 1px solid var(--line-strong); padding-top: 5px; font-size: 0.7rem; color: var(--text-3); }
.feat-doc-seal { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; background: var(--green-soft); color: var(--green-dark); font-weight: 700; font-size: 0.74rem; padding: 6px 12px; border-radius: 8px; }
.feat-doc-key { font-size: 0.62rem; color: var(--text-3); word-break: break-all; line-height: 1.35; }

/* Checkout (pagamento-online) */
.feat-checkout { display: flex; flex-direction: column; gap: 13px; }
.feat-checkout-amt { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.feat-checkout-amt b { display: block; font-size: 1.8rem; color: var(--text); letter-spacing: -0.02em; }
.feat-checkout-amt span { font-size: 0.74rem; color: var(--text-3); }
.feat-methods { display: flex; gap: 9px; }
.feat-method { flex: 1; text-align: center; padding: 10px 6px; border: 1px solid var(--line); border-radius: 10px; font-size: 0.74rem; font-weight: 600; color: var(--text-2); background: #fff; }
.feat-method.active { border-color: var(--green); background: var(--green-soft); color: var(--green-dark); box-shadow: 0 0 0 1px var(--green); }
.feat-btn { text-align: center; background: var(--green); color: #1B2A0E; font-weight: 700; padding: 12px; border-radius: 10px; font-size: 0.85rem; }

/* Chat WhatsApp (régua) */
.feat-chat { display: flex; flex-direction: column; gap: 9px; }
.feat-bubble { max-width: 82%; padding: 9px 12px; border: 1px solid var(--line); border-radius: 13px; font-size: 0.78rem; line-height: 1.4; background: #fff; color: var(--text); }
.feat-bubble.in { align-self: flex-start; border-bottom-left-radius: 4px; }
.feat-bubble.out { align-self: flex-end; border-bottom-right-radius: 4px; background: var(--green-soft); border-color: transparent; }
.feat-bubble small { display: block; margin-top: 3px; font-size: 0.62rem; color: var(--text-3); text-align: right; }
.feat-tick { color: var(--green-dark); }

/* Perfil + timeline (cliente360) */
.feat-profile { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.feat-avatar { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; }
.feat-profile-tx strong { display: block; font-size: 0.92rem; color: var(--text); }
.feat-tags { display: flex; gap: 6px; margin-top: 5px; }
.feat-tag { font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--bg-alt); color: var(--text-2); }
.feat-tag.accent { background: var(--green-soft); color: var(--green-dark); }
.feat-timeline { display: flex; flex-direction: column; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.feat-tl-item { position: relative; padding-left: 18px; font-size: 0.78rem; color: var(--text-2); }
.feat-tl-item::before { content: ""; position: absolute; left: 0; top: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.feat-tl-item b { color: var(--text); font-weight: 600; }
.feat-tl-item span { color: var(--text-3); }

/* Página de vendas */
.feat-sales { text-align: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 20px 16px; display: flex; flex-direction: column; gap: 9px; align-items: center; }
.feat-sales strong { font-size: 1rem; color: var(--text); }
.feat-price { font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.feat-price small { font-size: 0.7rem; font-weight: 600; color: var(--text-3); }
.feat-sales .feat-btn { width: 100%; }
.feat-secure { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--text-3); }

