/* ============ Hermesac — design tokens ============ */
:root {
  --blue: #014efe;
  --blue-dark: #0134c4;
  --blue-tint: #eef3ff;
  --navy: #0b1220;
  --ink: #0f172a;
  --slate: #46556b;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --border: #e3e9f2;
  --wa: #128c7e;
  --wa-dark: #0e7266;
  --wa-bright: #25d366;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, .05);
  --shadow-md: 0 8px 28px rgba(11, 18, 32, .09);
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0; }

p { margin: 0; }

a { color: var(--blue); text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

/* 1246px de propósito, não 124.6rem: a raiz deste projeto é 16px, então
   124.6rem daria 1993px. O padrão de origem usa font-size 62.5% (1rem = 10px).
   Mudar a raiz aqui encolheria todo rem do site em 37,5%. */
.container { width: 100%; max-width: 1246px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 50rem; }

.ico { width: 1.25em; height: 1.25em; flex-shrink: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 15.5px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-block { width: 100%; padding: 14px 24px; font-size: 16px; }

.btn-wa { background: var(--wa-bright); color: #f6fff9; box-shadow: 0 6px 20px rgba(37, 211, 102, .38); }
.btn-wa:hover { background: #1fc25c; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, .48); }
.btn-wa .ico { color: #f6fff9; }

.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: var(--blue-tint); transform: translateY(-2px); }

.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-outline { border-color: var(--border); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ============ Header ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }

.brand img { height: 40px; width: auto; }

.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  color: var(--slate);
  font-weight: 500;
  font-size: 15.5px;
  position: relative;
  transition: color .18s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--blue);
  transition: right .22s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

.menu-toggle { display: none; }

/* ============ Hero ============ */
.hero { padding: 158px 0 96px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  top: -320px; right: -280px;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 78, 254, .07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hl { color: var(--blue); }

.lead { font-size: 19px; color: var(--slate); max-width: 54ch; margin-bottom: 32px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-ctas.center { justify-content: center; margin-bottom: 0; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-badges li {
  display: flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 500; color: var(--slate);
}
.hero-badges .ico { color: var(--wa); width: 1.1em; height: 1.1em; }

/* Selo Meta Business Partner */
.partner-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px;
  background: #fff; font-size: 13.5px; color: var(--slate); font-weight: 500;
}
.partner-badge b { font-weight: 700; color: var(--ink); }
.partner-badge .meta-mark { width: 20px; height: 20px; color: #0082fb; flex-shrink: 0; }
.footer-partner {
  margin-top: 16px; background: transparent;
  border-color: rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .75);
}
.footer-partner b { color: #fff; }

/* Chat mockup */
.hero-visual { position: relative; }

.chat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 430px;
  margin-inline: auto;
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.chat-head img { border-radius: 8px; }
.chat-head strong { display: block; font-family: var(--font-head); font-size: 15px; }
.chat-head span { font-size: 12.5px; color: var(--slate); }
.chat-dot {
  margin-left: auto;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--wa-bright);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .18);
}

.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; background: #fff; }

.msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.msg-txt { display: block; }
.msg-meta { display: block; font-size: 11px; margin-top: 5px; opacity: .62; }
.msg.in { background: var(--bg-alt); border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.out { background: var(--blue-tint); border: 1px solid #d6e2ff; border-bottom-right-radius: 4px; align-self: flex-end; }

.chip {
  align-self: center;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px dashed #b9cdfe;
  border-radius: 999px;
  padding: 5px 14px;
}
.chip .ico { width: 1em; height: 1em; }

.typing { display: flex; gap: 5px; padding: 12px 16px; align-self: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 14px; border-bottom-left-radius: 4px; }
.typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--slate);
  opacity: .4;
  animation: blink 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-size: 13px;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip .ico { color: var(--blue); width: 1.5em; height: 1.5em; }
.float-chip b { display: block; font-family: var(--font-head); font-size: 14px; }
.float-chip span { color: var(--slate); font-size: 12px; }
.fc1 { top: 17%; left: -34px; }
.fc2 { bottom: 10%; right: -18px; animation-delay: 2.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Stickers estilo etiqueta, levemente tortos */
.stick {
  --rot: 0deg;
  position: absolute;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11, 18, 32, .16);
  transform: rotate(var(--rot));
  animation: stickfloat 6s ease-in-out infinite;
  white-space: nowrap;
}
.st1 { --rot: 5deg; top: -14px; right: 4%; background: var(--blue); color: #fff; animation-delay: 1.2s; }
.st2 { --rot: -6deg; bottom: 26%; left: -34px; background: #f5b445; color: #4a3305; animation-delay: 3.4s; }
.st3 { --rot: -3deg; bottom: -12px; right: 12%; background: var(--wa-bright); color: #f6fff9; animation-delay: .6s; }
@keyframes stickfloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50% { transform: translateY(-8px) rotate(var(--rot)); }
}
@media (max-width: 1024px) { .stick { display: none; } }

/* ============ Channels ============ */
.channels { padding: 30px 0 64px; }
.channels-title {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 26px;
}
.channels-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 26px;
}
.ch {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; color: var(--slate);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}
.ch:hover { color: var(--ink); background: var(--bg-alt); transform: translateY(-2px); }
.ch .ico { color: currentColor; }
.ch-wa { color: var(--wa); background: rgba(37, 211, 102, .1); font-size: 16.5px; }
.ch-wa:hover { color: var(--wa-dark); background: rgba(37, 211, 102, .16); }

/* ============ Sections base ============ */
.section-title {
  font-size: clamp(27px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.018em;
  text-align: center;
  margin-bottom: 18px;
}
.section-sub { text-align: center; color: var(--slate); font-size: 17.5px; max-width: 62ch; margin: 0 auto 48px; }

/* ============ Pains ============ */
.pains { padding: 84px 0; background: var(--bg-alt); }
.pains .section-title { margin-bottom: 48px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfdcf5; }
.pain-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 20px;
}
.pain-ico .ico { width: 26px; height: 26px; }
.pain-card h3 { font-size: 19.5px; margin-bottom: 10px; }
.pain-card p { color: var(--slate); font-size: 15.5px; }

/* ============ Features ============ */
.features { padding: 96px 0; }
.features .section-title { margin-bottom: 52px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.feat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfdcf5; }
.feat-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  margin-bottom: 18px;
}
.feat-ico .ico { width: 23px; height: 23px; }
.feat h3 { font-size: 18px; margin-bottom: 9px; }
.feat p { color: var(--slate); font-size: 15px; }

/* ============ Kanban CRM ============ */
.kanban { padding: 96px 0; background: var(--navy); color: #fff; overflow: hidden; }

.kanban-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.kanban .eyebrow { color: #7ea4ff; }
.section-title.left { text-align: left; }
.kanban .section-title { color: #fff; margin-bottom: 18px; }

.kanban-lead { color: #b6c2d6; font-size: 17px; margin-bottom: 26px; max-width: 46ch; }

.kanban-points { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.kanban-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: #dde5f0; }
.kanban-points .ico { color: var(--wa-bright); margin-top: 3px; width: 1.1em; height: 1.1em; }

.kanban-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: rgba(1, 78, 254, .28);
  border: 1px solid rgba(126, 164, 255, .45);
  border-radius: 999px;
  padding: 10px 18px;
}
.kanban-badge .ico { color: #7ea4ff; }

.board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 18px;
}

.kcol {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 250px;
}

.kcol-title {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b6c2d6;
  margin-bottom: 4px;
}
.kdot { width: 8px; height: 8px; border-radius: 50%; }
.kd1 { background: #7ea4ff; }
.kd2 { background: #f5b445; }
.kd3 { background: var(--wa-bright); }

.kcard {
  background: #fff;
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.kcard b { display: block; font-family: var(--font-head); font-size: 13.5px; margin-bottom: 3px; }
.kcard span { display: block; font-size: 11.5px; color: var(--slate); line-height: 1.4; margin-bottom: 7px; }
.ktag {
  display: inline-block;
  font-style: normal;
  font-weight: 600;
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: 999px;
}
.t1 { background: var(--blue-tint); color: var(--blue); }
.t2 { background: #fdf3e0; color: #b07714; }
.t3 { background: #e2f8ec; color: #178556; }

/* coreografia: card "Marina" voa da coluna 1 para a 2 */
.kcard-src { animation: ksrc 9s ease-in-out infinite; }
.kcard-land { opacity: 0; animation: kland 9s ease-in-out infinite; }
.kcard-fly {
  position: absolute;
  opacity: 0;
  width: calc(33.33% - 22px);
  left: 18px;
  top: 64px;
  z-index: 5;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  animation: kfly 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ksrc {
  0%, 8% { opacity: 1; transform: none; }
  14%, 88% { opacity: 0; transform: scale(.96); }
  96%, 100% { opacity: 1; transform: none; }
}
@keyframes kfly {
  0%, 9% { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(1); }
  12% { opacity: 1; transform: translate(0, -6px) rotate(-2deg) scale(1.05); }
  30% { opacity: 1; transform: translate(calc(100% + 14px), 74px) rotate(2deg) scale(1.05); }
  34% { opacity: 1; transform: translate(calc(100% + 14px), 80px) rotate(0deg) scale(1); }
  38%, 100% { opacity: 0; transform: translate(calc(100% + 14px), 80px) scale(1); }
}
@keyframes kland {
  0%, 33% { opacity: 0; transform: translateY(4px); }
  38%, 86% { opacity: 1; transform: none; }
  93%, 100% { opacity: 0; transform: translateY(4px); }
}

/* ============ Pricing ============ */
.pricing { padding: 92px 0; background: var(--bg-alt); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.plan-star { border: 2px solid var(--blue); box-shadow: 0 12px 36px rgba(1, 78, 254, .13); }

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 { font-size: 20px; margin-bottom: 12px; }

.plan-price { font-family: var(--font-head); font-size: 44px; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin-bottom: 12px; }
.plan-price .cur { font-size: 20px; font-weight: 700; vertical-align: super; margin-right: 3px; }
.plan-price .per { font-size: 16px; font-weight: 500; color: var(--slate); letter-spacing: 0; }

.plan-desc { color: var(--slate); font-size: 14.5px; margin-bottom: 22px; min-height: 44px; }

.plan-list { margin-bottom: 28px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.plan-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--blue-tint) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="%23014efe" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" d="m5 13 4 4L19 7"/></svg>') center/11px no-repeat;
}

.addon {
  margin-top: 26px;
  background: #fff;
  border: 1px dashed #b9cdfe;
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.addon h3 { font-size: 19px; margin-bottom: 8px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.addon-price { color: var(--blue); font-size: 18px; }
.addon-price small { color: var(--slate); font-weight: 500; font-size: 13px; }
.addon p { color: var(--slate); font-size: 15px; }
.addon .btn { flex-shrink: 0; }

.pricing-note { text-align: center; color: var(--slate); font-size: 14.5px; margin-top: 30px; }
.pricing-note a { font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ============ Compare ============ */
.compare { padding: 96px 0; }
.compare .section-title { margin-bottom: 48px; }

.compare-table {
  max-width: 880px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1fr 1fr; }
.cmp-head {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.cmp-head span { padding: 18px 26px; display: flex; align-items: center; }
.cmp-brand { background: var(--blue); justify-content: flex-start; }
.cmp-brand img { height: 22px; width: auto; }

.cmp-row { border-top: 1px solid var(--border); font-size: 15px; }
.cmp-row span { padding: 17px 26px; display: flex; align-items: flex-start; gap: 11px; }
.cmp-row span:first-child { color: var(--slate); background: var(--bg-alt); }
.cmp-row span:last-child { font-weight: 600; background: #fff; }
.cmp-row .ico { margin-top: 2px; width: 1.15em; height: 1.15em; }
.ico.x { color: #d43c3c; }
.ico.ok { color: var(--wa); }

/* ============ Proof ============ */
.proof { padding: 88px 0; background: var(--bg-alt); }
.proof .section-title { margin-bottom: 40px; }

.logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 18px;
  margin-bottom: 56px;
}
.logos li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .02em;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 24px;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.logos li:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat > span { color: var(--slate); font-size: 14.5px; }

/* ============ FAQ ============ */
.faq { padding: 96px 0; }
.faq .section-title { margin-bottom: 42px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: #cfdcf5; }
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 19px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { color: var(--slate); transition: transform .25s ease; }
.faq-item[open] summary .ico { transform: rotate(180deg); color: var(--blue); }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-item.closing .faq-body { grid-template-rows: 0fr; }
.faq-inner { overflow: hidden; min-height: 0; }
.faq-inner p { color: var(--slate); padding: 0 24px 20px; max-width: 65ch; }

/* ============ CTA final ============ */
.cta-final {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue) 0%, #0134c4 100%);
  text-align: center;
  color: #fff;
}
.cta-final img { height: 34px; width: auto; margin: 0 auto 26px; }
.cta-final h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -.018em;
  margin-bottom: 34px;
}

/* ============ Footer ============ */
.footer { background: var(--navy); color: #b6c2d6; padding: 60px 0 0; font-size: 14.5px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-grid img { height: 27px; width: auto; margin-bottom: 16px; }
.footer nav { display: flex; flex-direction: column; gap: 11px; }
.footer a { color: #b6c2d6; transition: color .18s ease; }
.footer a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 22px;
  font-size: 13px;
  color: #7f8da3;
}

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--wa-bright);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa-bright);
  animation: pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ============ Reveal on scroll (só esconde com JS ativo) ============ */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: .08s; }
html.js .reveal.d2 { transition-delay: .16s; }
html.js .reveal.d3 { transition-delay: .24s; }
html.js .reveal.d4 { transition-delay: .32s; }

/* Chat pop-in */
html.js .pop { opacity: 0; transform: translateY(14px) scale(.97); transition: opacity .45s ease, transform .45s ease; }
html.js .chat-card.play .pop { opacity: 1; transform: none; }
html.js .chat-card.play .p1 { transition-delay: .3s; }
html.js .chat-card.play .p2 { transition-delay: .9s; }
html.js .chat-card.play .p3 { transition-delay: 1.5s; }
html.js .chat-card.play .p4 { transition-delay: 2.1s; }
html.js .chat-card.play .p5 { transition-delay: 2.7s; }
html.js .chat-card.play .p6 { transition-delay: 3.4s; }

/* ============ Focus & a11y ============ */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  html.js .reveal, html.js .pop { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 132px; }
  .hero-copy { text-align: center; }
  .lead { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .fc1 { left: 0; }
  .fc2 { right: 0; }
  .features-grid, .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .kanban-grid { grid-template-columns: 1fr; gap: 44px; }
  .kanban .section-title { text-align: center; }
  .kanban .eyebrow { text-align: center; }
  .kanban-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .kanban-points li { text-align: left; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan-star { order: -1; }
  .plan-desc { min-height: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: none; } /* nav colapsa para CTA único no mobile */
  .header-inner { height: 64px; }
  html { scroll-padding-top: 76px; }
  .hero { padding-top: 116px; padding-bottom: 64px; }
  .lead { font-size: 17px; }
  .btn-lg { width: 100%; }
  .features-grid, .cards-3 { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .kanban { padding: 72px 0; }
  .board { padding: 12px; gap: 9px; }
  .kcol { padding: 9px; min-height: 210px; gap: 8px; }
  .kcard { padding: 9px 10px; }
  .kcard b { font-size: 12px; }
  .kcard span { font-size: 10.5px; }
  .ktag { font-size: 9.5px; }
  .kcol-title { font-size: 10.5px; letter-spacing: .02em; }
  .kcard-fly { width: calc(33.33% - 14px); left: 12px; top: 52px; }
  @keyframes kfly {
    0%, 9% { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(1); }
    12% { opacity: 1; transform: translate(0, -5px) rotate(-2deg) scale(1.05); }
    30% { opacity: 1; transform: translate(calc(100% + 9px), 66px) rotate(2deg) scale(1.05); }
    34% { opacity: 1; transform: translate(calc(100% + 9px), 72px) rotate(0deg) scale(1); }
    38%, 100% { opacity: 0; transform: translate(calc(100% + 9px), 72px) scale(1); }
  }
  .addon { flex-direction: column; align-items: flex-start; }
  .cmp-head, .cmp-row { grid-template-columns: 1fr; }
  .cmp-head span:first-child { display: none; }
  .cmp-row span:first-child { padding-bottom: 8px; }
  .cmp-row span:last-child { padding-top: 0; background: var(--bg-alt); border-top: 0; }
  .cmp-row span { background: var(--bg-alt) !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
