/* ═══════════════════════════════════════════════════════════
   ChatWay — Landing Page
   Construída sobre o ChatWay Design System v1.0
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand */
  --cw-green-50:  #F2FAF0;
  --cw-green-100: #DDF3D9;
  --cw-green-200: #BBE6B2;
  --cw-green-300: #9ADA8C;
  --cw-green-400: #89D47C;
  --cw-green-500: #7AD16D;
  --cw-green-600: #62B857;
  --cw-green-700: #4E9A46;
  --cw-green-800: #3B7C36;
  --cw-green-900: #285E26;
  --cw-dark: #282828;

  /* Neutrals */
  --cw-gray-0:   #FFFFFF;
  --cw-gray-50:  #F7F8FA;
  --cw-gray-100: #EDEEF2;
  --cw-gray-200: #D5D7DE;
  --cw-gray-300: #B0B3BD;
  --cw-gray-400: #8B8F9A;
  --cw-gray-500: #6B6F7A;
  --cw-gray-600: #4D515C;
  --cw-gray-700: #363A44;
  --cw-gray-800: #282828;
  --cw-gray-900: #1A1A1A;
  --cw-gray-950: #0D0E12;

  /* Semantic */
  --cw-warning: #F5A623;
  --cw-error:   #E74C3C;
  --cw-info:    #3498DB;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing (4px base) */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  /* Radius */
  --radius-sm: 6px;  --radius-md: 10px;  --radius-lg: 16px;
  --radius-xl: 24px; --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.14), 0 8px 16px rgba(0,0,0,.06);
  --shadow-green: 0 8px 24px rgba(122,209,109,.3);

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --header-h: 72px;
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  background: var(--cw-gray-0);
  color: var(--cw-gray-700);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
strong { color: var(--cw-dark); font-weight: 700; }

/* ─── LAYOUT HELPERS ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container--narrow { max-width: 820px; }

.section { padding: var(--space-24) 0; }

.ico { width: 20px; height: 20px; flex-shrink: 0; }
.ico--inline { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; }

/* ─── SECTION HEADERS ─── */
.section__head { max-width: 720px; margin-bottom: var(--space-16); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--cw-green-600);
  margin-bottom: var(--space-3);
}

.section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--cw-dark);
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.section__desc {
  font-size: 17px;
  color: var(--cw-gray-500);
  margin-top: var(--space-4);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.btn--primary {
  background: var(--cw-green-500);
  color: #fff;
  box-shadow: 0 1px 2px rgba(122,209,109,.3);
}
.btn--primary:hover {
  background: var(--cw-green-600);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--cw-green-700);
  border: 1.5px solid var(--cw-green-200);
}
.btn--ghost:hover {
  background: var(--cw-green-50);
  border-color: var(--cw-green-400);
}

.btn--sm { padding: var(--space-2) var(--space-4); font-size: 13px; }
.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: 16px;
  border-radius: var(--radius-lg);
}
.btn--block { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   BADGE
   ═══════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--cw-green-50);
  border: 1px solid var(--cw-green-200);
  color: var(--cw-green-700);
  font-size: 12.5px;
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  letter-spacing: .2px;
}
.badge--pulse::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--cw-green-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.header.is-scrolled {
  border-bottom-color: var(--cw-gray-100);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img { height: 30px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.header__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cw-gray-600);
  transition: color var(--duration-fast) var(--ease-out);
}
.header__link:hover { color: var(--cw-green-700); }
.header__cta { margin-left: var(--space-2); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.header__burger span {
  width: 22px; height: 2.5px;
  background: var(--cw-dark);
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-20)) 0 var(--space-20);
  background: linear-gradient(180deg, var(--cw-green-50) 0%, var(--cw-gray-0) 62%);
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hero__glow {
  position: absolute;
  top: -160px; right: -220px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(122,209,109,.28) 0%, transparent 68%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-16);
  align-items: center;
}
/* Permite que os itens do grid encolham abaixo da largura do conteúdo */
.hero__content, .hero__visual { min-width: 0; }

.hero__title {
  font-size: clamp(27px, 5.4vw, 56px);
  font-weight: 800;
  color: var(--cw-dark);
  letter-spacing: -1.8px;
  line-height: 1.1;
  margin: var(--space-6) 0 var(--space-5);
}
.hero__title span {
  color: var(--cw-green-600);
  position: relative;
  white-space: nowrap;
}
.hero__title span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 10px;
  background: var(--cw-green-200);
  z-index: -1;
  border-radius: 4px;
}
.hero__title-accent {
  color: var(--cw-green-600);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--cw-gray-500);
  max-width: 540px;
  line-height: 1.7;
}

.hero__bullets {
  margin: var(--space-6) 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  font-weight: 500;
  color: var(--cw-gray-700);
}
.hero__bullets .ico {
  width: 22px; height: 22px;
  padding: 4px;
  background: var(--cw-green-100);
  color: var(--cw-green-700);
  border-radius: var(--radius-full);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.hero__microcopy {
  font-size: 13px;
  color: var(--cw-gray-400);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero__microcopy .ico { color: var(--cw-green-600); }

/* ─── HERO MOCKUP ─── */
.hero__visual { position: relative; }

.mockup {
  background: var(--cw-gray-0);
  border: 1px solid var(--cw-gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--cw-gray-50);
  border-bottom: 1px solid var(--cw-gray-100);
}
.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cw-gray-200);
}
.mockup__dot:nth-child(1) { background: #FF5F57; }
.mockup__dot:nth-child(2) { background: #FEBC2E; }
.mockup__dot:nth-child(3) { background: #28C840; }
.mockup__title {
  margin-left: var(--space-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--cw-gray-400);
}

.mockup__body { display: grid; grid-template-columns: 38% 62%; min-height: 360px; }

.mockup__list {
  border-right: 1px solid var(--cw-gray-100);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--cw-gray-50);
}
.mockup__listitem {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast);
}
.mockup__listitem.is-active { background: var(--cw-gray-0); box-shadow: var(--shadow-sm); }
.mockup__listitem div { min-width: 0; flex: 1; }
.mockup__listitem strong { display: block; font-size: 12.5px; color: var(--cw-dark); }
.mockup__listitem small {
  display: block;
  font-size: 11px;
  color: var(--cw-gray-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup__tag {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}
.tag--green  { background: var(--cw-green-50);  color: var(--cw-green-800); }
.tag--blue   { background: #EBF5FB; color: #2471A3; }
.tag--yellow { background: #FEF9E7; color: #B7950B; }

.mockup__chat {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background:
    radial-gradient(circle at 20% 10%, rgba(122,209,109,.05), transparent 40%),
    var(--cw-gray-0);
}
.bubble {
  max-width: 88%;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: 12.5px;
  line-height: 1.5;
}
.bubble--in {
  align-self: flex-start;
  background: var(--cw-gray-100);
  color: var(--cw-dark);
  border-bottom-left-radius: var(--radius-sm);
}
.bubble--out {
  align-self: flex-end;
  background: var(--cw-green-500);
  color: #fff;
  border-bottom-right-radius: var(--radius-sm);
}
.mockup__typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: var(--space-3);
  background: var(--cw-gray-100);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-sm);
}
.mockup__typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cw-gray-400);
  animation: typing 1.4s infinite ease-in-out;
}
.mockup__typing span:nth-child(2) { animation-delay: .2s; }
.mockup__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.mockup__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--cw-gray-0);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cw-gray-100);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cw-dark);
}
.mockup__chip .ico { width: 16px; height: 16px; color: var(--cw-green-600); }
.mockup__chip--1 { top: 8%; left: -64px; animation: float 4s ease-in-out infinite; }
.mockup__chip--2 { bottom: 12%; right: -48px; animation: float 4s ease-in-out infinite 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════
   TRUSTBAR
   ═══════════════════════════════════════════════════════════ */
.trustbar {
  background: var(--cw-dark);
  color: var(--cw-gray-0);
  padding: var(--space-8) 0;
}
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trustbar__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--cw-gray-300);
  max-width: 280px;
}
.trustbar__stats { display: flex; gap: var(--space-12); flex-wrap: wrap; }
.trustbar__stats div { display: flex; flex-direction: column; }
.trustbar__stats strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--cw-green-400);
  letter-spacing: -.5px;
}
.trustbar__stats span { font-size: 12.5px; color: var(--cw-gray-400); }

/* ═══════════════════════════════════════════════════════════
   PROBLEMA
   ═══════════════════════════════════════════════════════════ */
.problem { background: var(--cw-gray-50); }

.paincards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.paincard {
  background: var(--cw-gray-0);
  border: 1px solid var(--cw-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.paincard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.paincard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: #FDEDEC;
  color: var(--cw-error);
  margin-bottom: var(--space-5);
}
.paincard h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cw-dark);
  margin-bottom: var(--space-2);
  line-height: 1.35;
}
.paincard p { font-size: 14.5px; color: var(--cw-gray-500); }

.problem__bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(135deg, var(--cw-green-50) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid var(--cw-green-200);
  border-radius: var(--radius-lg);
  font-size: 17px;
  color: var(--cw-gray-700);
  line-height: 1.65;
  box-shadow: 0 4px 24px rgba(122, 209, 109, 0.06);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}
.problem__bridge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(122, 209, 109, 0.12);
  border-color: var(--cw-green-400);
}
.problem__bridge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--cw-green-100);
  color: var(--cw-green-700);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.problem__bridge:hover .problem__bridge-icon {
  background: var(--cw-green-500);
  color: var(--cw-gray-0);
}
.problem__bridge-icon .ico {
  width: 18px;
  height: 18px;
}
.problem__bridge-text {
  flex: 1;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   COMO FUNCIONA
   ═══════════════════════════════════════════════════════════ */
.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  counter-reset: step;
  position: relative;
}
.steps__list::before {
  content: '';
  position: absolute;
  top: 28px; left: 16%; right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cw-green-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto var(--space-5);
  background: var(--cw-green-500);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-green);
  border: 4px solid var(--cw-gray-0);
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--cw-dark);
  margin-bottom: var(--space-2);
}
.step p { font-size: 14.5px; color: var(--cw-gray-500); max-width: 290px; margin: 0 auto; }

.steps__cta { text-align: center; margin-top: var(--space-16); }

/* ═══════════════════════════════════════════════════════════
   RECURSOS
   ═══════════════════════════════════════════════════════════ */
.features { background: var(--cw-gray-50); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.feature {
  background: var(--cw-gray-0);
  border: 1px solid var(--cw-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cw-green-200);
}
.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--cw-green-50);
  color: var(--cw-green-700);
  margin-bottom: var(--space-4);
  transition: background var(--duration-normal) var(--ease-out);
}
.feature:hover .feature__icon { background: var(--cw-green-100); }
.feature h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--cw-dark);
  margin-bottom: var(--space-2);
}
.feature p { font-size: 14px; color: var(--cw-gray-500); line-height: 1.6; }

.features__closing {
  margin-top: var(--space-16);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.features__closing p {
  font-size: 19px;
  color: var(--cw-gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* ═══════════════════════════════════════════════════════════
   PROVA SOCIAL
   ═══════════════════════════════════════════════════════════ */
.proof__metrics {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
  padding: var(--space-8);
  background: var(--cw-green-50);
  border-radius: var(--radius-xl);
}
.proof__metrics div { text-align: center; }
.proof__metrics strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--cw-green-600);
  letter-spacing: -1px;
}
.proof__metrics span { font-size: 13.5px; color: var(--cw-gray-500); }

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial {
  background: var(--cw-gray-0);
  border: 1px solid var(--cw-gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial__stars { color: var(--cw-warning); font-size: 16px; letter-spacing: 2px; }
.testimonial blockquote {
  font-size: 15.5px;
  color: var(--cw-gray-700);
  line-height: 1.6;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--cw-gray-100);
}
.testimonial figcaption strong { display: block; font-size: 14px; color: var(--cw-dark); }
.testimonial figcaption small { display: block; font-size: 12px; color: var(--cw-gray-400); }

.proof__cta { text-align: center; margin-top: var(--space-16); }

/* ─── AVATAR ─── */
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: var(--cw-green-100);
  color: var(--cw-green-800);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar--sm { width: 32px; height: 32px; font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   PLANO
   ═══════════════════════════════════════════════════════════ */
.pricing { background: var(--cw-gray-50); }

.plan {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: var(--cw-gray-0);
  border: 2px solid var(--cw-green-400);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10) var(--space-10);
  box-shadow: var(--shadow-xl);
}
.plan__highlight {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cw-green-500);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-green);
}
.plan__head { text-align: center; }
.plan__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--cw-dark);
  letter-spacing: -.5px;
}
.plan__tagline {
  font-size: 14.5px;
  color: var(--cw-gray-500);
  max-width: 400px;
  margin: var(--space-3) auto 0;
}
.plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: var(--space-6) 0 var(--space-3);
}
.plan__currency { font-size: 24px; font-weight: 700; color: var(--cw-gray-500); }
.plan__amount {
  font-size: 72px;
  font-weight: 800;
  color: var(--cw-dark);
  letter-spacing: -3px;
  line-height: 1;
}
.plan__period { font-size: 18px; font-weight: 600; color: var(--cw-gray-400); }
.plan__anchor {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--cw-gray-500);
  background: var(--cw-green-50);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}
.plan__anchor .ico { width: 14px; height: 14px; color: var(--cw-warning); }
.plan__anchor s { color: var(--cw-gray-400); }

.plan__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-5);
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--cw-gray-100);
  border-bottom: 1px solid var(--cw-gray-100);
}
.plan__features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13.5px;
  color: var(--cw-gray-600);
}
.plan__features .ico {
  width: 18px; height: 18px;
  padding: 3px;
  background: var(--cw-green-100);
  color: var(--cw-green-700);
  border-radius: var(--radius-full);
}
.plan__feature--star {
  grid-column: 1 / -1;
  font-size: 14.5px !important;
}
.plan__feature--star .ico { background: var(--cw-green-500); color: #fff; }

.plan__risk {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--cw-gray-500);
  line-height: 1.55;
}
.plan__risk .ico { color: var(--cw-green-600); margin-top: 1px; }

.pricing__cta { text-align: center; margin-top: var(--space-10); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq__list { display: flex; flex-direction: column; gap: var(--space-3); }

.faq__item {
  background: var(--cw-gray-0);
  border: 1px solid var(--cw-gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.faq__item[open] { border-color: var(--cw-green-200); box-shadow: var(--shadow-sm); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--cw-dark);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 20px; height: 20px;
  color: var(--cw-green-600);
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 14.5px;
  color: var(--cw-gray-500);
  line-height: 1.65;
}

.faq__cta { text-align: center; margin-top: var(--space-12); }

/* ═══════════════════════════════════════════════════════════
   CTA FINAL + FORMULÁRIO
   ═══════════════════════════════════════════════════════════ */
.finalcta {
  position: relative;
  background: var(--cw-dark);
  color: var(--cw-gray-0);
  padding: var(--space-24) 0;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.finalcta__glow {
  position: absolute;
  bottom: -260px; left: -180px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(122,209,109,.22) 0%, transparent 68%);
  pointer-events: none;
}
.finalcta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: var(--space-16);
  align-items: center;
}
.finalcta__copy, .formcard { min-width: 0; }

.finalcta__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
}
.finalcta__text {
  font-size: 16px;
  color: var(--cw-gray-300);
  margin: var(--space-5) 0 var(--space-6);
  line-height: 1.7;
}
.finalcta__text strong { color: var(--cw-green-400); }

.finalcta__list { display: flex; flex-direction: column; gap: var(--space-3); }
.finalcta__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cw-gray-100);
}
.finalcta__list .ico {
  width: 22px; height: 22px;
  padding: 4px;
  background: rgba(122,209,109,.18);
  color: var(--cw-green-400);
  border-radius: var(--radius-full);
}

/* ─── FORM CARD ─── */
.formcard {
  background: var(--cw-gray-0);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}
.formcard__title {
  font-size: 21px;
  font-weight: 800;
  color: var(--cw-dark);
  letter-spacing: -.5px;
  line-height: 1.3;
}
.formcard__subtitle {
  font-size: 14px;
  color: var(--cw-gray-500);
  margin: var(--space-2) 0 var(--space-6);
}

.form { display: flex; flex-direction: column; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cw-gray-700);
}
.field__input {
  padding: var(--space-4);
  border: 1px solid var(--cw-gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 14.5px;
  color: var(--cw-dark);
  background: var(--cw-gray-0);
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.field__input::placeholder { color: var(--cw-gray-300); }
.field__input:hover { border-color: var(--cw-gray-300); }
.field__input:focus {
  border-color: var(--cw-green-400);
  box-shadow: 0 0 0 3px var(--cw-green-100);
}
.field__input.is-invalid {
  border-color: var(--cw-error);
  box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}
.field__error {
  font-size: 12px;
  color: var(--cw-error);
  font-weight: 500;
  min-height: 0;
}

.form__microcopy {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  color: var(--cw-gray-400);
  justify-content: center;
}
.form__microcopy .ico { color: var(--cw-green-600); }

.form__success {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--cw-green-50);
  border: 1px solid var(--cw-green-200);
  color: var(--cw-green-800);
  font-size: 13.5px;
  font-weight: 600;
  padding: var(--space-4);
  border-radius: var(--radius-md);
}
.form__success .ico { color: var(--cw-green-600); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--cw-gray-950);
  color: var(--cw-gray-400);
  padding: var(--space-20) 0 var(--space-8);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--cw-gray-800);
}
.footer__brand img { height: 32px; width: auto; margin-bottom: var(--space-4); }
.footer__brand p { font-size: 13.5px; line-height: 1.65; max-width: 320px; }

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--cw-gray-100);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--cw-gray-400);
  padding: var(--space-1) 0;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--cw-green-400); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-6);
  font-size: 12.5px;
}
.footer__safe { display: flex; align-items: center; gap: var(--space-2); }
.footer__safe .ico { width: 15px; height: 15px; color: var(--cw-green-500); }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--cw-green-500);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(122, 209, 109, 0.7), var(--shadow-green), var(--shadow-lg);
  z-index: 900;
  animation: pulse-whatsapp 2s infinite;
  transition: transform var(--duration-fast) var(--ease-spring),
              background var(--duration-fast) var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--cw-green-600); }

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(122, 209, 109, 0.7), var(--shadow-green), var(--shadow-lg);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(122, 209, 109, 0), var(--shadow-green), var(--shadow-lg);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(122, 209, 109, 0), var(--shadow-green), var(--shadow-lg);
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__bullets { margin-bottom: var(--space-6); }
  .finalcta__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .paincards,
  .features__grid,
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__list { grid-template-columns: 1fr; gap: var(--space-10); }
  .steps__list::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .header__nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cw-gray-0);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    padding: var(--space-4) var(--space-6) var(--space-6);
    border-bottom: 1px solid var(--cw-gray-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration-normal) var(--ease-out),
                opacity var(--duration-normal) var(--ease-out);
  }
  .header__nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .header__link { padding: var(--space-3) var(--space-2); font-size: 15px; }
  .header__cta { margin: var(--space-2) 0 0; }
  .header__burger { display: flex; }

  .section { padding: var(--space-20) 0; }
  .section__head { margin-bottom: var(--space-12); }

  .hero { padding-top: calc(var(--header-h) + var(--space-12)); }
  .hero__actions .btn { width: 100%; }
  .mockup__chip { display: none; }
  .mockup__body { grid-template-columns: 1fr; }
  .mockup__list { display: none; }


  .trustbar__inner { flex-direction: column; align-items: flex-start; gap: var(--space-6); }
  .trustbar__stats { gap: var(--space-5); }
  .trustbar__stats strong { font-size: 24px; }

  .paincards,
  .features__grid,
  .proof__grid { grid-template-columns: 1fr; }

  .problem__bridge {
    font-size: 15px;
    padding: var(--space-5);
    flex-direction: column;
    gap: var(--space-3);
  }

  .proof__metrics { gap: var(--space-8); padding: var(--space-6); }
  .proof__metrics strong { font-size: 30px; }

  .plan { padding: var(--space-10) var(--space-5) var(--space-6); }
  .plan__anchor {
    display: flex;
    align-items: flex-start;
    border-radius: var(--radius-md);
    text-align: left;
  }
  .plan__features { grid-template-columns: 1fr; }
  .plan__feature--star { font-size: 14px !important; }
  .plan__amount { font-size: 60px; }

  .formcard { padding: var(--space-6); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* ─── ACESSIBILIDADE: respeitar preferências de movimento ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
