/* ============================================================
   RAÍSSA CONSULTORIA — Design System (baseado no Avorica DS)
   Ink scale quase monocromática + acento moss · Poppins + Inter
   ============================================================ */

:root {
  /* Ink scale */
  --ink-950: #101412;
  --ink-900: #181d1a;
  --ink-800: #242a26;
  --ink-700: #3a413c;
  --ink-600: #575e58;
  --ink-500: #767d76;
  --ink-400: #9ba198;
  --ink-300: #c3c7c0;
  --ink-200: #dde0da;
  --ink-100: #edeee9;
  --ink-50:  #f5f6f2;
  --white:   #fcfdfb;

  /* Acento moss — uso contido */
  --moss-700: #4c5c44;
  --moss-600: #5f7355;
  --moss-500: #71866a;
  --moss-100: #e4e9df;

  /* Superfícies */
  --surface-page: var(--white);
  --surface-dark: var(--ink-950);
  --surface-sunken: var(--ink-50);
  --surface-hero: #e8e9e4;

  /* Hairlines — levemente tingidas com o acento moss para não brigar
     com a escala ink (cinza puro deixa a página "fria" e genérica) */
  --line-soft:   rgba(95, 115, 85, 0.13);
  --line:        rgba(95, 115, 85, 0.22);
  --line-strong: rgba(95, 115, 85, 0.38);
  --line-accent: rgba(95, 115, 85, 0.62);

  /* Sobre fundo escuro — mesma família, puxada para o off-white moss */
  --line-light-soft:   rgba(228, 233, 223, 0.10);
  --line-light:        rgba(228, 233, 223, 0.16);
  --line-light-strong: rgba(228, 233, 223, 0.30);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 84px;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.18s;
  --dur-base: 0.32s;
  --dur-slow: 0.6s;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background: var(--surface-page);
  color: var(--ink-950);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--moss-600); color: var(--white); }

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

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

.section { padding-block: clamp(88px, 11vw, 150px); position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-500);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--moss-600);
  flex-shrink: 0;
}
.eyebrow-light { color: var(--ink-300); }
.eyebrow-light .eyebrow-dot { background: var(--moss-500); }
/* variante de abertura de seção: caixa alta, sem ponto */
.eyebrow-caps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  color: var(--moss-600);
  gap: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 19em;
}
.section-title.light { color: var(--white); }

.section-head { margin-bottom: clamp(40px, 5.5vw, 72px); }

.text-link {
  color: var(--moss-600);
  font-weight: 500;
  border-bottom: 1px solid var(--line-accent);
  transition: border-color var(--dur-base);
}
.text-link:hover { border-color: var(--moss-600); }

/* ---------- Buttons — pill + trailing dot ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease,
              border-color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.btn::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.btn:hover { background: var(--ink-800); }
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--ink-950); color: var(--white); }
.btn-primary:hover { background: var(--ink-800); }

.btn-inverse {
  background: var(--white);
  color: var(--ink-950);
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 26px rgba(16, 20, 18, 0.18);
}
.btn-inverse:hover { background: var(--ink-200); }

.btn-ghost {
  border: 1px solid rgba(228, 233, 223, 0.38);
  color: var(--white);
  background: rgba(16, 20, 18, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(16, 20, 18, 0.48); border-color: rgba(228, 233, 223, 0.66); }

.btn-outline { border: 1px solid var(--line-strong); color: var(--ink-950); background: transparent; }
.btn-outline:hover { background: var(--ink-100); border-color: var(--line-accent); }

.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-lg { padding: 18px 38px; font-size: 15px; }

/* ---------- Tags / chips ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-600);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  transition: color var(--dur-base), border-color var(--dur-base);
}
.tag-solid {
  background: var(--moss-600);
  border-color: transparent;
  color: var(--white);
  padding: 3px 10px;
  font-size: 11px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  /* sobre o hero claro o header é transparente, só com a hairline */
  background: transparent;
  box-shadow: inset 0 -1px 0 var(--line);
  transition: background var(--dur-base) ease, box-shadow var(--dur-base) ease,
              transform var(--dur-base) var(--ease);
  animation: headerIn 0.8s var(--ease) 0.35s backwards;
}
@keyframes headerIn {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-header .brand { color: var(--ink-950); }
.site-header .main-nav a { color: var(--ink-700); }
.site-header .nav-toggle span { background: var(--ink-950); }

.site-header.is-scrolled {
  background: rgba(252, 253, 251, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }
/* com o menu aberto o header fica sobre o painel escuro */
body.menu-open .site-header { background: transparent; box-shadow: none; }
/* sobre o painel escuro entra a versão clara do lockup */
body.menu-open .brand-logo { display: none; }
body.menu-open .brand-logo-light { display: block; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  display: block;
  height: clamp(44px, 3.9vw, 54px);
  width: auto;
}
.brand-logo-light { display: none; }

.main-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 32px);
  margin-left: auto;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-block: 6px;
  transition: color var(--dur-base);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--moss-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-base) var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
  margin-left: auto;
  z-index: 120;
}
.nav-toggle span {
  width: 24px; height: 2px;
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), background var(--dur-base);
}
.nav-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
/* sobre o painel escuro do menu o traço precisa inverter */
.site-header .nav-toggle.is-open span { background: var(--white); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--ink-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 48px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--dur-slow) var(--ease), visibility 0s var(--dur-slow);
  visibility: hidden;
}
.mobile-menu.is-open {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path var(--dur-slow) var(--ease), visibility 0s;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 6.5vw, 40px);
  letter-spacing: -0.02em;
  color: var(--white);
  padding-block: 10px;
  border-bottom: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-base) ease, transform var(--dur-base) var(--ease), color var(--dur-fast);
}
.mobile-nav a:hover { color: var(--ink-300); }
.mobile-menu.is-open .mobile-nav a { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-nav a:nth-child(1) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-nav a:nth-child(2) { transition-delay: .17s; }
.mobile-menu.is-open .mobile-nav a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.is-open .mobile-nav a:nth-child(4) { transition-delay: .27s; }
.mobile-menu.is-open .mobile-nav a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-nav a:nth-child(6) { transition-delay: .37s; }
.mobile-cta { margin-top: 40px; align-self: flex-start; }

/* ============================================================
   HERO — colagem editorial sobre superfície clara
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--surface-hero);
  color: var(--ink-950);
  padding-top: calc(var(--header-h) + clamp(22px, 4vh, 46px));
  padding-bottom: clamp(36px, 6vh, 68px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(32px, 4.6vw, 58px);
  align-items: stretch;
}

/* ---------- coluna esquerda ---------- */
.hero-left {
  display: flex;
  flex-direction: column;
  padding-top: clamp(0px, 3.2vh, 34px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13.5px, 1.15vw, 15px);
  color: var(--ink-700);
  margin-bottom: clamp(22px, 3.4vh, 38px);
}
.hero-kicker strong { font-weight: 600; color: var(--ink-950); }
.kicker-tail {
  width: 46px; height: 14px;
  flex-shrink: 0;
  color: var(--ink-950);
  margin-right: -2px;
}

/* botão circular de contorno — repetido no CTA e nos destaques */
.icon-circle {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--ink-950);
  border-radius: 50%;
  color: var(--ink-950);
}
.icon-circle svg { width: 15px; height: 15px; display: block; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.9vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.038em;
}
.hero-title .line { display: block; overflow: hidden; padding-block: .06em; margin-block: -.06em; }
.hero-title .line-inner { display: inline-block; will-change: transform; }

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(28px, 4.4vh, 46px);
}
.hero-demo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-950);
}
.hero-demo span:last-child {
  border-bottom: 1px solid var(--ink-950);
  padding-bottom: 1px;
  transition: border-color var(--dur-base);
}
.hero-demo:hover .icon-circle { background: var(--ink-950); color: var(--white); }
.hero-demo:hover span:last-child { border-color: transparent; }

/* cartão de apoio no pé da coluna — com a tira branca sobreposta */
.hero-card {
  position: relative;
  margin-top: auto;
  padding-top: clamp(36px, 6vh, 74px);
  max-width: 380px;
}
.hero-card-main {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 30px) clamp(26px, 3vw, 34px);
  background: linear-gradient(118deg, var(--ink-500) 0%, var(--ink-400) 46%, var(--ink-200) 100%);
}
.hero-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink-950);
}
.hero-card-sub {
  margin-top: 6px;
  font-size: clamp(13px, 1.1vw, 14.5px);
  color: var(--ink-800);
}
/* tira branca, deslocada para dentro e para baixo do cartão */
.hero-card-strip {
  position: relative;
  z-index: 3;
  margin: -14px 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 30px -18px rgba(16, 20, 18, 0.4);
}
.hero-wave { width: 100%; height: 12px; color: var(--ink-400); }
/* arco decorativo saindo por trás da tira */
.hero-card-arc {
  position: absolute;
  left: 2px; bottom: -34px;
  width: 96px; height: 62px;
  border-left: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-bottom-left-radius: 34px;
}

.hero-avatars { display: inline-flex; align-items: center; flex-shrink: 0; }
.hero-avatars img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  /* os retratos são recortados sem fundo: o disco em moss é que fecha o círculo.
     anel duplo — o branco separa os avatares empilhados, o moss desenha a borda */
  background: var(--moss-100);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line-accent);
  margin-left: -10px;
}
.hero-avatars img:first-child { margin-left: 0; }

/* ---------- coluna direita: colagem ---------- */
.hero-right {
  --hero-gap: clamp(34px, 5.2vh, 62px);
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap);
}
.collage {
  position: relative;
  width: 100%;
  aspect-ratio: 552 / 413;
}
.collage > * { position: absolute; }

/* painel de fundo, quase imperceptível */
.collage-panel {
  left: 49.3%; top: 35.8%;
  width: 47.5%; height: 64.2%;
  border-radius: 22px;
  background: linear-gradient(150deg, var(--ink-200) 0%, rgba(252,253,251,.85) 62%, var(--white) 100%);
}

.collage-note {
  left: 0; top: 8%;
  width: 29.5%; height: 40%;
  border-radius: 20px;
  padding: clamp(12px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(150deg, var(--ink-500) 0%, var(--ink-400) 100%);
  color: var(--ink-950);
}
.note-glyph { width: 62%; max-width: 92px; height: auto; }
.collage-note p {
  font-size: clamp(12px, 1.05vw, 14.5px);
  line-height: 1.35;
  font-weight: 500;
}

.collage-photo {
  left: 29.7%; top: 7.5%;
  width: 51.3%; height: 83.5%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
.collage-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 56% 22%;
}

.collage-badge {
  left: 21.9%; top: 0;
  width: 15.6%;
  aspect-ratio: 1;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss-600);
  color: var(--white);
}
.collage-badge svg { width: 46%; height: 46%; }

.collage-stat {
  right: 0; top: -1%;
  text-align: center;
  line-height: 1;
}
.collage-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.1vw, 44px);
  letter-spacing: -0.04em;
}
.collage-stat span {
  display: block;
  margin-top: 6px;
  font-size: clamp(11px, 0.95vw, 13px);
  color: var(--ink-500);
}

.collage-burst {
  left: 0; top: 63.7%;
  width: 18.1%;
  aspect-ratio: 1;
  color: var(--ink-800);
}

.collage-wires {
  left: 0; top: 0;
  width: 100%; height: 100%;
  color: var(--line-strong);
  overflow: visible;
}

.collage-node {
  left: 21.6%; top: 72.6%;
  width: 4.7%;
  aspect-ratio: 1;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface-hero);
  color: var(--ink-800);
}
.collage-node svg { width: 58%; height: 58%; }

/* ---------- destaques no pé da coluna direita ---------- */
.hero-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 48px);
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(26px, 3.6vh, 42px);
}
/* o fio do circuito atravessa o vão e encosta na divisória com uma cunha */
.hero-features::before {
  content: "";
  position: absolute;
  left: 46.6%;
  top: calc(-1 * var(--hero-gap));
  height: var(--hero-gap);
  border-left: 1px solid var(--line-strong);
}
.hero-features::after {
  content: "";
  position: absolute;
  left: 46.6%;
  top: -10px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid var(--line-strong);
}
.hero-feature h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-feature p {
  font-size: clamp(13.5px, 1.15vw, 15px);
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 32ch;
}

/* ============================================================
   DESAFIOS — abertura em duas colunas + marquee de chips
   ============================================================ */
.challenges {
  background: var(--surface-page);
  overflow: hidden;
  padding-bottom: clamp(72px, 10vw, 130px);
}

.challenges-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.challenges-title {
  font-size: clamp(30px, 3.6vw, 50px);
  max-width: 20ch;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.challenges-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: clamp(0px, 2vw, 34px);
}
.challenges-lead {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-600);
}
.challenges-note {
  max-width: 52ch;
  font-size: clamp(14.5px, 1.2vw, 16px);
  color: var(--ink-500);
}

/* duas faixas em sentidos opostos — os desafios passando pela tela */
.chip-marquee {
  margin-top: clamp(48px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}
.chip-row {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.chip {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--ink-600);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 14px 30px;
}
/* dois acentos por volta: um cheio em ink, um em moss — o resto é contorno */
.chip-solid {
  background: var(--ink-950);
  border-color: var(--ink-950);
  color: var(--white);
}
.chip-moss {
  background: var(--moss-100);
  border-color: transparent;
  color: var(--moss-700);
}

/* ============================================================
   SOLUÇÕES — mesma superfície do hero, um degrau abaixo do branco
   ============================================================ */
.solutions { background: var(--surface-hero); overflow-x: clip; }
.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.solutions-sticky { position: sticky; top: calc(var(--header-h) + 30px); }
.solutions-lead {
  color: var(--ink-600);
  margin: 24px 0 32px;
  max-width: 40ch;
}

.solutions-list { border-top: 1px solid var(--line); }
.solution-row {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 2.8vw, 34px) 6px;
  border-bottom: 1px solid var(--line);
}
.solution-index {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-500);
  transition: color var(--dur-base);
}
.solution-row:hover .solution-index { color: var(--moss-600); }
.solution-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.1vw, 26px);
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--dur-base) var(--ease), color var(--dur-base);
}
.solution-body p {
  color: var(--ink-600);
  font-size: 14.5px;
  max-width: 46ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), opacity var(--dur-base), margin-top var(--dur-base);
}
.solution-row:hover .solution-body p { max-height: 90px; opacity: 1; margin-top: 8px; }
.solution-row:hover .solution-body h3 { transform: translateX(8px); }
.solution-arrow {
  font-size: 18px;
  color: var(--ink-500);
  transition: transform var(--dur-base) var(--ease), color var(--dur-base);
  justify-self: end;
}
.solution-row:hover .solution-arrow { transform: translateX(5px); color: var(--ink-950); }

/* ============================================================
   MÉTODO RISE
   ============================================================ */
.method {
  background: var(--surface-sunken);
  overflow: hidden;
}
.method-head { margin-bottom: clamp(36px, 4.5vw, 56px); }

.rise-letters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 24px);
  margin-block: clamp(28px, 4vw, 52px);
}
.rise-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14.5vw, 210px);
  line-height: .95;
  letter-spacing: -0.04em;
  color: var(--ink-200);
  position: relative;
  will-change: transform;
}
.rise-letter::after {
  content: attr(data-letter);
  position: absolute; inset: 0;
  color: var(--moss-600);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s var(--ease);
}
.rise-letter.is-filled::after { clip-path: inset(0 0 0 0); }
.rise-arrow {
  font-size: clamp(18px, 2.6vw, 32px);
  color: var(--ink-300);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  transition: background var(--dur-base) ease;
}
.method-step:hover { background: var(--moss-100); }
.method-letter {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 20px;
  transition: background var(--dur-base);
}
.method-step:hover .method-letter { background: var(--moss-600); }
.method-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 21px);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.method-step p { color: var(--ink-600); font-size: 14px; }

/* ============================================================
   COMO FUNCIONA — TIMELINE
   ============================================================ */
/* isolation: segura a trepadeira em z-index:-1 dentro da seção */
.process { background: var(--surface-page); isolation: isolate; }
/* referência de posicionamento para a trepadeira da margem */
.process-inner { position: relative; }
.timeline {
  position: relative;
  max-width: 840px;
  margin-inline: auto;
  /* coluna e respiro compartilhados pelo passo e pelo cabeçalho de fase,
     para os dois continuarem alinhados quando o responsivo encolher */
  --tl-col: 52px;
  --tl-gap: clamp(20px, 3vw, 32px);
}

/* ---------- fases: a cor aprofunda conforme o processo avança ---------- */
.phase {
  --phase-dot-bg: var(--moss-100);
  --phase-dot-fg: var(--moss-700);
  --phase-dot-border: rgba(95, 115, 85, 0.3);
  --phase-card: var(--surface-sunken);
  --phase-card-hover: var(--ink-100);
}
.phase-2 {
  --phase-dot-bg: var(--moss-500);
  --phase-dot-fg: var(--white);
  --phase-dot-border: transparent;
  --phase-card: rgba(95, 115, 85, 0.07);
  --phase-card-hover: rgba(95, 115, 85, 0.12);
}
.phase-3 {
  --phase-dot-bg: var(--moss-700);
  --phase-dot-fg: var(--white);
  --phase-dot-border: transparent;
  --phase-card: rgba(95, 115, 85, 0.125);
  --phase-card-hover: rgba(95, 115, 85, 0.18);
}

.phase-head {
  display: grid;
  /* minmax(0,1fr): sem isso o mínimo automático da coluna é o min-content,
     e o título mais longo alarga a faixa além do container em telas estreitas */
  grid-template-columns: var(--tl-col) minmax(0, 1fr);
  gap: var(--tl-gap);
  align-items: center;
  margin-top: clamp(30px, 4vw, 50px);
  margin-bottom: 2px;
}
.phase:first-child .phase-head { margin-top: 0; }

/* losango que pontua a linha; o anel na cor da página abre o vão atrás */
.phase-marker {
  justify-self: center;
  width: 11px; height: 11px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--phase-dot-bg);
  box-shadow: 0 0 0 5px var(--surface-page);
  position: relative;
  z-index: 1;
}

.phase-text { display: flex; align-items: center; gap: 12px; min-width: 0; }
.phase-index {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-600);
  flex-shrink: 0;
}
.phase-name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.phase-rule { flex: 1; height: 1px; background: var(--line-soft); min-width: 12px; }
.timeline-line {
  position: absolute;
  left: 25px; top: 0; bottom: 0;
  width: 2px;
  background: var(--ink-100);
}
.timeline-progress {
  display: block;
  width: 100%; height: 100%;
  background: var(--moss-600);
  transform: scaleY(0);
  transform-origin: top;
}
.timeline-step {
  display: grid;
  /* minmax(0,1fr): sem isso o mínimo automático da coluna é o min-content,
     e o título mais longo alarga a faixa além do container em telas estreitas */
  grid-template-columns: var(--tl-col) minmax(0, 1fr);
  gap: var(--tl-gap);
  align-items: start;
  padding-block: 14px;
}
.timeline-num {
  width: var(--tl-col); height: var(--tl-col);
  border-radius: 50%;
  background: var(--phase-dot-bg);
  border: 1.5px solid var(--phase-dot-border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--phase-dot-fg);
  position: relative;
  z-index: 1;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) ease;
}
.timeline-step:hover .timeline-num {
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(76, 92, 68, 0.26);
}
.timeline-card {
  background: var(--phase-card);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 2.8vw, 34px);
  transition: background var(--dur-base) ease;
}
/* o hover aprofunda o tom da própria fase, em vez de cair num cinza neutro */
.timeline-step:hover .timeline-card { background: var(--phase-card-hover); }

.timeline-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
  min-width: 0;
}
.timeline-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  color: var(--moss-700);
  transition: color var(--dur-base) ease, border-color var(--dur-base) ease;
}
.timeline-icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.timeline-icon svg .solid { fill: currentColor; stroke: none; }
.timeline-step:hover .timeline-icon { border-color: var(--line); }

.timeline-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -0.015em;
  min-width: 0;   /* deixa o título quebrar em vez de esticar o cartão */
}
.timeline-card p { color: var(--ink-600); font-size: 14.5px; }

/* ============================================================
   SOBRE
   ============================================================ */
/* isolation: forma contexto de empilhamento para os botânicos em z-index:-1 */
.about { background: var(--surface-sunken); overflow: hidden; isolation: isolate; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 520px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transform: scale(1.1);
  will-change: transform;
}

.about-text { margin-top: 26px; display: grid; gap: 16px; color: var(--ink-600); font-size: clamp(15px, 1.3vw, 16px); max-width: 56ch; }
.about-text strong { color: var(--ink-950); font-weight: 600; }
.about-signature {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink-950);
}

/* ============================================================
   DIFERENCIAIS — BENTO
   ============================================================ */
.differentials { background: var(--surface-page); }
.diff-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.diff-cell {
  grid-column: span 2;
  background: var(--surface-sunken);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  transition: background var(--dur-base) ease;
}
.diff-cell:hover { background: var(--ink-100); }
.diff-cell-feature {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  grid-row: span 2;
  background: var(--ink-950);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
/* foto ao fundo: o texto continua no rodapé do card, sobre o scrim */
.diff-media { position: absolute; inset: 0; }
.diff-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.02);
  transition: transform var(--dur-slow) var(--ease);
}
.diff-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(16,20,18,.94) 0%, rgba(16,20,18,.80) 24%, rgba(16,20,18,.42) 50%, rgba(16,20,18,.14) 76%, rgba(16,20,18,.06) 100%);
}
.diff-cell-feature .diff-num,
.diff-cell-feature h3,
.diff-cell-feature p { position: relative; z-index: 1; }
.diff-cell-feature:hover { background: var(--ink-950); }
.diff-cell-feature:hover .diff-media img { transform: scale(1.07); }
.diff-cell-feature h3 { font-size: clamp(24px, 2.4vw, 34px); }
.diff-cell-feature p { color: var(--ink-400); max-width: 42ch; }
.diff-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--moss-600);
  margin-bottom: 18px;
}
/* sobre a foto o moss escuro some — o número precisa da versão clara */
.diff-cell-feature .diff-num { color: var(--moss-100); }
.diff-cell h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.diff-cell p { color: var(--ink-600); font-size: 14px; }
.diff-cell-feature p { color: var(--ink-400); }

/* ============================================================
   PLANOS
   ============================================================ */
.plans { background: var(--surface-sunken); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-featured {
  background: var(--ink-950);
  color: var(--white);
  box-shadow: 0 32px 64px -32px rgba(16, 20, 18, 0.45);
}
.plan-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--moss-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.plan-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 24px);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.plan-price { font-size: 13.5px; color: var(--ink-500); margin-bottom: 12px; }
.plan-featured .plan-price { color: var(--ink-400); }
.plan-price strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink-950);
  margin-top: 3px;
}
.plan-featured .plan-price strong { color: var(--white); }
.plan-per { font-size: .6em; font-weight: 400; }
.plan-desc { font-size: 14px; color: var(--ink-600); }
.plan-featured .plan-desc { color: var(--ink-400); }
.plan-list {
  margin-block: 24px 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
  flex: 1;
}
.plan-featured .plan-list { border-top-color: var(--line-light); }
.plan-list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--ink-700);
}
.plan-featured .plan-list li { color: var(--ink-300); }
.plan-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--moss-600);
}
.plan-btn { width: 100%; }
.plan-featured .plan-btn:hover { background: var(--ink-200); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { background: var(--surface-page); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.testi-card:hover { border-color: var(--line-accent); background: var(--surface-sunken); }
.testi-quote-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  line-height: .6;
  color: var(--moss-600);
}
.testi-card p {
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  color: var(--ink-800);
}
.testi-card footer { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  /* mesmo par disco + anel dos avatares do hero */
  background: var(--moss-100);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line-accent);
}
.testi-meta { display: flex; flex-direction: column; line-height: 1.35; }
.testi-meta strong { font-size: 14px; font-weight: 600; }
.testi-meta small { font-size: 12.5px; color: var(--ink-500); }
.testi-note {
  margin-top: 30px;
  font-size: 13px;
  color: var(--ink-500);
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface-sunken); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}
.faq-intro { position: sticky; top: calc(var(--header-h) + 30px); }
.faq-intro p { color: var(--ink-600); margin-top: 22px; font-size: 15px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.55vw, 20px);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color var(--dur-base), padding-left var(--dur-base) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--moss-600); padding-left: 10px; }
.faq-icon {
  position: relative;
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background var(--dur-base), border-color var(--dur-base), transform var(--dur-base) var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--moss-600); border-color: var(--moss-600); color: var(--white); transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  overflow: hidden;
  color: var(--ink-600);
  font-size: 14.5px;
  max-width: 60ch;
}
.faq-answer p { padding: 0 4px 24px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  background: var(--surface-dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 180px);
  /* idem .about — segura os botânicos em z-index:-1 dentro da seção */
  isolation: isolate;
}
.final-cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 16em;
}
.final-cta-sub {
  margin: 24px 0 40px;
  max-width: 52ch;
  color: var(--ink-400);
  font-size: clamp(15px, 1.35vw, 17px);
}
.final-cta-word {
  position: absolute;
  inset: auto 0 -0.32em 0;
  text-align: center;
  pointer-events: none;
}
.final-cta-word span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 330px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(252, 253, 251, 0.07);
  white-space: nowrap;
  will-change: transform;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-950); color: var(--white); padding-top: clamp(64px, 8vw, 96px); border-top: 1px solid var(--line-light); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo { height: clamp(44px, 4vw, 56px); width: auto; display: block; }
.footer-brand p {
  margin-top: 22px;
  color: var(--ink-400);
  font-size: 14px;
  max-width: 38ch;
}
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a {
  color: var(--ink-400);
  font-size: 14px;
  width: fit-content;
  transition: color var(--dur-base);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer-contact .btn-inverse:hover { background: var(--ink-200); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 26px;
  border-top: 1px solid var(--line-light);
  font-size: 12.5px;
  color: var(--ink-500);
}

/* ============================================================
   REVEAL DEFAULTS
   ============================================================ */
.reveal, .reveal-title, .solution-row,
.method-step, .timeline-step, .diff-cell, .plan-card,
.testi-card, .faq-item { will-change: transform, opacity; }

/* ============================================================
   BOTÂNICOS DECORATIVOS
   Line art herbáceo em <symbol> + <use>. Puramente ornamental:
   os contêineres são aria-hidden e não capturam ponteiro.
   ============================================================ */

/* o sprite só guarda as definições — nunca é pintado */
.botanical-sprite {
  position: absolute;
  width: 0; height: 0;
  overflow: hidden;
}

.botanicals {
  position: absolute;
  /* -1 mantém as hastes acima do fundo da seção e abaixo do conteúdo em fluxo.
     Exige que a seção hospedeira forme um contexto de empilhamento, senão o
     -1 escapa para a raiz e some atrás do background. Ver .about/.final-cta. */
  z-index: -1;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  user-select: none;
}

.botanical {
  display: block;
  width: auto;
  overflow: visible;
  /* fill/stroke são propriedades herdadas, então atravessam a shadow tree
     do <use>. Os círculos (frutos, miolo) trazem fill próprio e ignoram isto. */
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50% 100%;
}

/* balanço lento e dessincronizado — o que dá "vida" sem chamar atenção */
.botanical {
  animation: bot-sway 9s ease-in-out infinite alternate;
}
.botanical:nth-child(2n)   { animation-duration: 11s; animation-delay: -2.4s; }
.botanical:nth-child(3n)   { animation-duration: 13s; animation-delay: -5.1s; }
.botanical:nth-child(4n)   { animation-duration: 10s; animation-delay: -7.3s; }

@keyframes bot-sway {
  from { transform: rotate(-1.1deg); }
  to   { transform: rotate(1.1deg); }
}

/* estado inicial do "crescer": revelado de baixo para cima pelo GSAP.
   Só é aplicado quando o JS assume, senão a haste ficaria invisível. */
.botanicals.is-armed .botanical { clip-path: inset(100% 0 0 0); }

/* ---------- hero: moita discreta na base à esquerda ---------- */
.botanicals--hero {
  left: clamp(-14px, -0.6vw, 0px);
  bottom: 0;
  gap: clamp(2px, 0.5vw, 10px);
  color: var(--moss-600);
  opacity: 0.42;
}
.botanicals--hero .botanical { height: clamp(96px, 13vw, 178px); }

/* ---------- sobre: haste solitária junto à foto ---------- */
.botanicals--about {
  right: clamp(-10px, 1vw, 24px);
  bottom: 0;
  gap: 8px;
  color: var(--moss-600);
  /* fundo sunken é mais claro que o do hero, então pede um pouco mais de tinta */
  opacity: 0.5;
}
.botanicals--about .botanical { height: clamp(110px, 15vw, 208px); }

/* ---------- Como funciona: trepadeira na margem direita.
   A timeline tem 840px fixos e o container é mais largo, sobrando ~136px
   vazios de cada lado. A haste ocupa essa faixa à direita — a esquerda já
   carrega a espinha, os discos e os losangos. ---------- */
.botanicals--process {
  right: var(--gutter);
  bottom: 0;
  color: var(--moss-600);
  opacity: 0.48;
}
.botanicals--process .botanical {
  width: clamp(78px, 8.2vw, 116px);
  height: auto;
  /* balanço bem mais discreto: numa haste de ~800px, 1,1deg jogaria
     a ponta uns 15px de lado */
  animation-name: bot-sway-soft;
  animation-duration: 14s;
}
@keyframes bot-sway-soft {
  from { transform: rotate(-0.4deg); }
  to   { transform: rotate(0.4deg); }
}
/* abaixo disso a margem encolhe e a haste encostaria nos cartões */
@media (max-width: 1239px) {
  .botanicals--process { display: none; }
}

/* ---------- CTA final: molduras nas laterais, sobre fundo escuro.
   A palavra "crescer" ocupa o rodapé central, por isso as hastes
   ficam nas bordas em vez de formarem uma fileira embaixo. ---------- */
.botanicals--cta {
  bottom: 0;
  gap: clamp(2px, 0.6vw, 12px);
  color: var(--moss-100);
  opacity: 0.2;
}
.botanicals--cta-left  { left: clamp(-18px, -1vw, 0px); }
.botanicals--cta-right { right: clamp(-18px, -1vw, 0px); }
.botanicals--cta .botanical { height: clamp(120px, 16vw, 230px); }

@media (max-width: 1080px) {
  /* em telas estreitas o conteúdo desce até a borda: reduz e rareia */
  .botanicals--hero, .botanicals--about { opacity: 0.28; }
  .botanicals--hero .botanical:nth-child(n+3),
  .botanicals--cta .botanical:nth-child(n+3) { display: none; }
}
@media (max-width: 640px) {
  .botanicals--about, .botanicals--cta-right { display: none; }
  .botanicals--hero .botanical:nth-child(n+2) { display: none; }
  .botanicals--hero { opacity: 0.24; }
}

/* ============================================================
   BOTÃO FLUTUANTE — WHATSAPP
   Pílula fixa que só entra depois da primeira dobra. O rótulo
   fica recolhido e abre no hover/foco.
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  /* abaixo do menu mobile (99) e do header (100) */
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--moss-600);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(16, 20, 18, 0.26),
              0 0 0 1px rgba(16, 20, 18, 0.06);
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease),
              background var(--dur-base) ease,
              box-shadow var(--dur-base) ease;
}
.wa-float.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.wa-float:hover {
  background: var(--moss-700);
  box-shadow: 0 18px 42px rgba(16, 20, 18, 0.34),
              0 0 0 1px rgba(16, 20, 18, 0.08);
}
.wa-float:focus-visible {
  outline: 2px solid var(--moss-700);
  outline-offset: 3px;
}

.wa-float-icon { width: 25px; height: 25px; flex-shrink: 0; }

.wa-float-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width var(--dur-slow) var(--ease),
              opacity var(--dur-base) ease;
}
.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label { max-width: 190px; opacity: 1; }

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid var(--moss-500);
  animation: wa-pulse 2.8s var(--ease) infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%        { transform: scale(1);   opacity: 0.55; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}

/* o menu mobile cobre a tela inteira: o botão sai de cena junto */
body.menu-open .wa-float { opacity: 0; pointer-events: none; }

@media (max-width: 640px) {
  .wa-float { height: 52px; padding: 0 14px; }
  .wa-float-label { display: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* sem espaço para duas colunas: a colagem passa a ocupar a largura toda */
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
  .hero-left { padding-top: 0; }
  .hero-title { font-size: clamp(44px, 8.4vw, 76px); }
  .hero-card { margin-top: clamp(36px, 5vw, 56px); padding-top: 0; }
  .hero-right { gap: clamp(34px, 5vw, 56px); }

  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-sticky { position: static; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { margin-inline: auto; }
  .plans-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan-featured { order: -1; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { justify-content: flex-start; }
  .diff-bento { grid-template-columns: repeat(2, 1fr); }
  .diff-cell, .diff-cell-feature { grid-column: span 1; grid-row: auto; min-height: 0; }
  .diff-cell-feature { grid-column: span 2; min-height: 260px; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .hero-title { font-size: clamp(38px, 12vw, 56px); }
  .hero-kicker { font-size: 13px; gap: 10px; }
  .kicker-tail { display: none; }
  .hero-card { max-width: none; }
  .hero-features { grid-template-columns: 1fr; gap: 28px; }
  .collage-stat strong { font-size: 30px; }
  .hero-actions { gap: 18px; }
  .chip-marquee { gap: 12px; }
  .chip-row { gap: 12px; }
  .chip { padding: 11px 22px; }
  .rise-arrow { display: none; }
  .method-steps { grid-template-columns: 1fr; }
  .timeline { --tl-col: 42px; --tl-gap: 16px; }
  .timeline-num { font-size: 13px; }
  .timeline-line { left: 20px; }
  .timeline-icon { width: 32px; height: 32px; border-radius: 9px; }
  .timeline-icon svg { width: 17px; height: 17px; }
  .diff-bento { grid-template-columns: 1fr; }
  /* card estreito: a foto precisa de altura para o texto não cair sobre os rostos */
  .diff-cell-feature { grid-column: span 1; min-height: 400px; }
  .diff-media img { object-position: 50% 20%; }
  .diff-media::after {
    background: linear-gradient(to top,
      rgba(16,20,18,.95) 0%, rgba(16,20,18,.90) 30%, rgba(16,20,18,.58) 52%, rgba(16,20,18,.18) 78%, rgba(16,20,18,.06) 100%);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .final-cta-word span { transform: none !important; }
  /* botânicos: sem balanço e sempre visíveis, mesmo se o JS tiver armado o clip */
  .botanical { animation: none !important; transform: none !important; }
  .botanicals.is-armed .botanical { clip-path: none !important; }
  /* o JS não arma o botão nesse modo — o CSS o deixa visível e sem pulso */
  .wa-float { opacity: 1; transform: none; pointer-events: auto; }
  .wa-float-pulse { display: none; }
}
