/* ===========================================================
   Clinic Partners — Design system (azul corporativo / saúde)
   =========================================================== */
:root {
  /* Brand blues */
  --navy:        oklch(0.27 0.055 252);
  --navy-2:      oklch(0.33 0.06 252);
  --blue:        oklch(0.52 0.15 252);
  --blue-bright: oklch(0.60 0.16 248);
  --blue-soft:   oklch(0.93 0.035 248);
  --sky:         oklch(0.97 0.018 248);
  --teal:        oklch(0.70 0.10 205);

  /* Neutrals (cool-toned) */
  --ink:     oklch(0.27 0.02 252);
  --body:    oklch(0.44 0.018 252);
  --muted:   oklch(0.58 0.015 252);
  --line:    oklch(0.91 0.01 248);
  --line-2:  oklch(0.95 0.008 248);
  --bg:      oklch(0.995 0.003 248);
  --bg-2:    oklch(0.975 0.006 248);
  --white:   oklch(0.995 0.002 248);

  /* Effects */
  --shadow-sm: 0 1px 2px oklch(0.27 0.05 252 / 0.06), 0 1px 3px oklch(0.27 0.05 252 / 0.05);
  --shadow:    0 6px 20px oklch(0.27 0.05 252 / 0.08), 0 2px 6px oklch(0.27 0.05 252 / 0.05);
  --shadow-lg: 0 24px 60px oklch(0.27 0.05 252 / 0.14), 0 8px 24px oklch(0.27 0.05 252 / 0.08);
  --r:   14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* colored highlights for headings */
.hl-blue { color: var(--blue); }
.hl-grad {
  background: linear-gradient(100deg, var(--blue-bright), var(--teal));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(52px, 6.5vw, 92px); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 16px;
}
.section-head p { margin-top: 18px; font-size: 18px; color: var(--muted); }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px oklch(0.52 0.15 252 / 0.28);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 12px 28px oklch(0.52 0.15 252 / 0.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--blue); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-wa { background: #25D366; color: #073b1e; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.4); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(0.995 0.003 248 / 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; font-family: var(--font-display); }
.brand-logo { height: 44px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 36px; } }
.site-footer .brand-logo { height: 42px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue) 60%, var(--navy));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 55%);
}
.brand-name { font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -0.02em; }
.brand-name span { color: var(--blue); }
.nav-menu { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px; color: var(--body);
  padding: 9px 14px; border-radius: 10px; white-space: nowrap;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-soft); }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 11px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content:""; display:block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform .25s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-menu {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--pad) 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s, transform .22s;
  }
  body.menu-open .nav-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 14px 12px; font-size: 17px; border-radius: 10px; }
  .nav-menu .btn { margin-top: 10px; }
}

/* ---------- Hero (baked image + overlaid copy) ---------- */
.hero { position: relative; overflow: hidden; background: oklch(0.962 0.006 248); }
.hero-stage { position: relative; max-width: 1365px; margin-inline: auto; container-type: inline-size; }
.hero-bg { width: 100%; height: auto; display: block; }
.hero-copy {
  position: absolute; top: 50%; left: 3cqw; transform: translateY(-50%);
  width: 29cqw; z-index: 2;
}
.hero-copy .eyebrow { font-size: clamp(10px, 1.02cqw, 14px); }
.hero h1 { font-size: clamp(20px, 3.4cqw, 54px); margin-top: 1.4cqw; }
.hero .lead { font-size: clamp(11px, 1.4cqw, 21px); color: var(--body); margin-top: 1.3cqw; }
.hero .lead strong { color: var(--ink); font-weight: 700; }
.hero-copy .hero-actions { margin-top: 2cqw; gap: 1cqw; }
.hero-copy .btn { font-size: clamp(11px, 1.15cqw, 16px); padding: 1cqw 1.7cqw; }
.hero-copy .btn svg { width: 1.3cqw; height: 1.3cqw; }
.hero-copy .hero-trust { margin-top: 1.7cqw; font-size: clamp(10px, 1cqw, 15px); gap: 1cqw; }
.hero-copy .hero-trust .avatars span { width: 2.4cqw; height: 2.4cqw; border-width: 0.16cqw; margin-left: -0.7cqw; }

/* ---- Floating hero cards (HTML) ---- */
.hcard-pos { position: absolute; z-index: 3; opacity: 0; transform: translateY(26px) scale(.97); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.hcard-pos.in { opacity: 1; transform: none; }
.hcard {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: 1.2cqw; box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-0.7cqw); } }

.hp-sol   { left: 34.5cqw; top: 15cqw;  width: 22.5cqw; }
.hp-perf  { right: 0.5cqw;   top: 6.5cqw; width: 21cqw; }
.hp-states{ right: 2cqw;   top: 25cqw;  width: 19cqw; }
.hp-grow  { right: 1.5cqw; bottom: 3cqw; width: 27.5cqw; }
.hp-perf .hcard   { animation-duration: 6s;   animation-delay: -1s; }
.hp-states .hcard { animation-duration: 8s;   animation-delay: -2.5s; }
.hp-grow .hcard   { animation-duration: 6.5s; animation-delay: -3.2s; }
.hp-sol .hcard    { animation-duration: 9s;   animation-delay: -1.6s; }

/* Soluções card */
.hcard-sol { padding: 1.6cqw 1.7cqw; }
.sol-title { font-size: 1.35cqw; line-height: 1.2; color: var(--ink); margin-bottom: 1cqw; }
.sol-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85cqw; }
.sol-list li { display: flex; align-items: center; gap: 0.85cqw; }
.sol-ico { flex: 0 0 auto; width: 2.7cqw; height: 2.7cqw; border-radius: 0.7cqw; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.sol-ico svg { width: 1.5cqw; height: 1.5cqw; }
.sol-list b { display: block; font-size: 1.08cqw; color: var(--ink); line-height: 1.15; }
.sol-list span { display: block; font-size: 0.92cqw; color: var(--muted); font-family: var(--font-body); }

/* Performance card */
.hcard-perf { padding: 1.4cqw 1.5cqw; }
.perf-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6cqw; font-size: 1cqw; font-weight: 700; color: var(--ink); }
.perf-pill { font-size: 0.82cqw; font-weight: 600; color: var(--muted); background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.25cqw 0.7cqw; font-family: var(--font-body); }
.perf-label { color: var(--muted); font-size: 0.92cqw; margin-top: 0.9cqw; font-family: var(--font-body); }
.perf-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5cqw; margin-top: 0.1cqw; }
.perf-row strong { font-size: 1.95cqw; color: var(--ink); letter-spacing: -0.02em; }
.perf-up { color: oklch(0.6 0.15 150); font-weight: 800; font-size: 1.05cqw; text-align: right; line-height: 1.1; }
.perf-up small { display: block; color: var(--muted); font-weight: 600; font-size: 0.72cqw; font-family: var(--font-body); }
.perf-chart { width: 100%; height: 4cqw; margin-top: 0.8cqw; display: block; overflow: visible; }
.perf-line { stroke-dasharray: 300; stroke-dashoffset: 300; transition: stroke-dashoffset 1.4s ease .35s; }
.reveal-card.in .perf-line { stroke-dashoffset: 0; }
.perf-dot { opacity: 0; transition: opacity .4s ease 1.4s; }
.reveal-card.in .perf-dot { opacity: 1; }

/* 700 card */
.hcard-states { background: var(--navy); border-color: var(--navy); color: #fff; padding: 1.5cqw 1.7cqw; }
.st-pre { font-size: 1cqw; color: oklch(0.82 0.03 248); font-weight: 600; }
.st-num { display: block; font-size: 3.6cqw; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: #fff; margin: 0.15cqw 0 0.45cqw; }
.st-txt { font-size: 1cqw; color: oklch(0.86 0.02 248); line-height: 1.3; font-family: var(--font-body); }

/* Cresça card */
.hcard-grow { padding: 1.5cqw 1.7cqw; }
.grow-lines { font-size: 1.08cqw; font-weight: 600; color: var(--body); line-height: 1.5; margin: 0; font-family: var(--font-body); }
.grow-cta { display: flex; align-items: center; justify-content: space-between; gap: 0.9cqw; margin-top: 0.9cqw; }
.grow-cta span { font-size: 1.25cqw; font-weight: 800; color: var(--blue); letter-spacing: -0.01em; line-height: 1.15; }
.grow-mark { width: 2.7cqw; height: 2.7cqw; object-fit: contain; flex: 0 0 auto; }

@media (prefers-reduced-motion: reduce) {
  .hcard-pos { opacity: 1; transform: none; transition: none; }
  .hcard { animation: none; }
  .perf-line { stroke-dashoffset: 0; transition: none; }
  .perf-dot { opacity: 1; transition: none; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--muted); font-size: 14.5px; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--white);
  margin-left: -10px; background: linear-gradient(135deg, var(--blue-bright), var(--navy));
  box-shadow: var(--shadow-sm);
}
.hero-trust .avatars span:first-child { margin-left: 0; }

/* Stacked hero on small screens */
@media (max-width: 760px) {
  /* Cards flutuantes ancorados sobre a imagem (que fica na base do stage no mobile).
     A imagem tem 56.26cqw de altura; convertemos os tops do desktop para
     ficarem relativos ao topo da imagem. */
  .hp-sol    { top: calc(100% - 41.26cqw); }
  .hp-perf   { top: calc(100% - 49.76cqw); }
  .hp-states { top: calc(100% - 31.26cqw); }
  /* Conteúdo do hero sempre visível no mobile — não depende da animação de entrada */
  .hero .reveal { opacity: 1; transform: none; }
  .hero-stage { display: flex; flex-direction: column; }
  .hero-bg { order: 2; width: 100%; }
  .hero-copy {
    position: static; transform: none; width: auto;
    padding: 38px var(--pad) 26px;
  }
  .hero-copy .eyebrow { font-size: 13px; }
  .hero h1 { font-size: clamp(28px, 7.4vw, 40px); margin-top: 14px; }
  .hero .lead { font-size: 16.5px; margin-top: 16px; }
  .hero-copy .hero-actions { margin-top: 24px; gap: 12px; }
  .hero-copy .btn { font-size: 15px; padding: 13px 22px; }
  .hero-copy .btn svg { width: 18px; height: 18px; }
  .hero-copy .hero-trust { margin-top: 22px; font-size: 14px; gap: 12px; }
  .hero-copy .hero-trust .avatars span { width: 32px; height: 32px; border-width: 2px; margin-left: -10px; }
}

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  border-radius: var(--r);
  border: 1px dashed oklch(0.62 0.05 248 / 0.5);
  background-color: var(--blue-soft);
  background-image: repeating-linear-gradient(135deg,
    oklch(0.60 0.04 248 / 0.10) 0 10px,
    transparent 10px 20px);
  display: grid; place-items: center;
  color: oklch(0.45 0.06 252 / 0.75);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px; letter-spacing: 0.02em;
  text-align: center; padding: 16px; min-height: 120px;
}
.ph::before { content: "◭"; position:absolute; top:10px; left:12px; opacity:.5; font-size: 14px; }

/* ---------- Brand marquee ---------- */
.marquee-wrap { padding-block: 40px; border-block: 1px solid var(--line); background: var(--white); overflow: hidden; }
.marquee-label { text-align:center; color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-display); font-weight: 700; margin-bottom: 26px; }
.marquee { display: flex; gap: 56px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .logo {
  height: 60px; display: grid; place-items: center;
  white-space: nowrap; flex: 0 0 auto;
}
.marquee .logo img {
  height: 56px; width: auto; max-width: 260px; object-fit: contain;
  opacity: .9;
  transition: opacity .25s ease, transform .25s ease;
}
.marquee .logo:hover img { opacity: 1; transform: scale(1.04); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Feature / "compre melhor" ---------- */
.cm-section { position: relative; overflow: hidden; }
.cm-section > .wrap { position: relative; z-index: 1; }
.cm-section::before, .cm-section::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(64px); will-change: transform; }
.cm-section::before { width: 440px; height: 440px; background: radial-gradient(circle, oklch(0.60 0.16 248 / 0.16), transparent 70%); top: -130px; left: -90px; animation: cmFloat1 23s ease-in-out infinite; }
.cm-section::after { width: 400px; height: 400px; background: radial-gradient(circle, oklch(0.70 0.10 205 / 0.14), transparent 70%); bottom: -150px; right: -70px; animation: cmFloat2 28s ease-in-out infinite; }
@keyframes cmFloat1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(70px, 46px) scale(1.08); } }
@keyframes cmFloat2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-56px, -44px) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .cm-section::before, .cm-section::after { animation: none; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.rev .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.rev .split-media { order: 0; } }
.split-media .ph { aspect-ratio: 5/4; border-radius: var(--r-lg); }
/* Compre melhor image */
.cm-media { position: relative; }
.cm-media img { width: 100%; display: block; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.cm-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 14px 20px; display: flex; align-items: center; gap: 13px; }
.cm-badge-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.cm-badge-ico svg { width: 23px; height: 23px; }
.cm-badge-text b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
.cm-badge-text small { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); }
@media (max-width: 540px) { .cm-badge { left: 12px; bottom: -16px; padding: 12px 16px; } }
.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 9px; margin-top: 2px;
  background: var(--blue-soft); color: var(--blue); display:grid; place-items:center;
}
.checklist .tick svg { width: 16px; height: 16px; }
.checklist b { font-family: var(--font-display); color: var(--ink); display:block; font-size: 16.5px; }
.checklist span { color: var(--muted); font-size: 15px; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 52px); color: var(--blue); letter-spacing: -0.03em; line-height: 1; }
.stat .lbl { color: var(--muted); margin-top: 10px; font-size: 15px; }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }
.stats-band { border-top: 1px solid var(--line); margin-top: clamp(44px, 5.5vw, 68px); padding-top: clamp(40px, 5vw, 60px); }

/* ---------- Solutions grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px;
  transition: transform .22s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(150deg, var(--blue-soft), oklch(0.70 0.10 205 / 0.2));
  display: grid; place-items: center; color: var(--blue); margin-bottom: 20px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--muted); }
.card .more { display:inline-flex; align-items:center; gap:7px; margin-top:18px; color: var(--blue); font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(4px); }

/* ---------- Soluções (3 colunas estilo referência) ---------- */
.sol-cols { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: stretch; }
.sol-col { flex: 0 1 calc(33.333% - 15px); min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .25s ease; }
@media (max-width: 940px) { .sol-col { flex-basis: calc(50% - 11px); } }
@media (max-width: 620px) { .sol-col { flex-basis: 100%; max-width: 480px; } }
.sol-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sol-head { display: flex; gap: 14px; align-items: flex-start; min-height: 76px; }
.sol-num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 19px; display: grid; place-items: center; box-shadow: 0 6px 14px oklch(0.52 0.15 252 / 0.3); }
.sol-head h3 { font-size: 20px; line-height: 1.18; }
.sol-desc { color: var(--muted); font-size: 15.5px; margin-top: 16px; }
.sol-img { margin-top: 22px; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.sol-img img { width: 100%; display: block; aspect-ratio: 282 / 230; object-fit: cover; transition: transform .5s ease; }
.sol-col:hover .sol-img img { transform: scale(1.04); }
/* Click-to-zoom (2x) na imagem da plataforma */
.sol-img.zoomable { cursor: zoom-in; }
.sol-img.zoomed { overflow: visible; cursor: zoom-out; z-index: 60; }
.sol-img.zoomed img { transform: scale(2) !important; transform-origin: center; position: relative; z-index: 60; box-shadow: var(--shadow-lg); border-radius: var(--r); }
.sol-col:has(.sol-img.zoomed) { overflow: visible; z-index: 60; }
.sol-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.sol-feat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.sf-ico { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--blue-soft); background: var(--sky); color: var(--blue); display: grid; place-items: center; transition: background .2s, color .2s; }
.sol-feat:hover .sf-ico { background: var(--blue); color: #fff; }
.sf-ico svg { width: 19px; height: 19px; }
.sol-feat > span:last-child { font-size: 11.5px; color: var(--body); font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
@media (max-width: 380px) { .sol-feat > span:last-child { font-size: 10.5px; } .sf-ico { width: 38px; height: 38px; } }

/* ---------- Testimonials carousel ---------- */
.tcarousel { position: relative; }
.ttrack { display: flex; gap: 24px; overflow: hidden; }
.tslide {
  flex: 0 0 100%;
  display: grid; grid-template-columns: 1fr; gap: 0;
  transition: opacity .5s ease;
}
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow);
  max-width: 820px; margin-inline: auto;
}
.quote .stars { color: oklch(0.78 0.13 80); letter-spacing: 3px; margin-bottom: 18px; font-size: 18px; }
.quote blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.6vw, 27px); color: var(--ink); line-height: 1.4; margin: 0; letter-spacing: -0.01em; }
.quote .who { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.quote .who .av { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-bright), var(--navy)); flex: 0 0 auto; }
.quote .who b { font-family: var(--font-display); color: var(--ink); display: block; }
.quote .who span { color: var(--muted); font-size: 14.5px; }
.tnav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; align-items: center; }
.tdots { display: flex; gap: 8px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; padding: 0; transition: width .25s, background .25s; }
.tdot.active { width: 26px; background: var(--blue); border-radius: 5px; }
.tarrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: border-color .2s, color .2s, background .2s; }
.tarrow:hover { border-color: var(--blue); color: var(--blue); }
.tarrow svg { width: 20px; height: 20px; }

/* ---------- Testimonials grid (cards) ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .tgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tgrid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.tcard { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tquote-mark { color: var(--blue); line-height: 0; }
.tquote-mark svg { width: 34px; height: 34px; }
.tcard blockquote { margin: 14px 0 0; font-size: 16px; color: var(--body); line-height: 1.6; flex: 1 0 auto; }
.tcard blockquote strong { color: var(--ink); font-weight: 700; }
.tperson { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.tav { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14.5px; letter-spacing: 0.02em; }
.tav.solid { background: var(--blue); color: #fff; }
.tperson-info b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 15.5px; line-height: 1.2; }
.tperson-info > span { font-size: 13.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan.featured { background: var(--navy); border-color: var(--navy); color: oklch(0.92 0.01 248); position: relative; box-shadow: var(--shadow-lg); }
.plan.featured h3, .plan.featured .price .val { color: #fff; }
.plan.featured .feat-tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.plan h3 { font-size: 22px; }
.plan .ptag { font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.plan.featured .ptag { color: oklch(0.78 0.03 248); }
.plan .price { margin: 22px 0; display: flex; align-items: baseline; gap: 6px; }
.plan .price .val { font-family: var(--font-display); font-weight: 800; font-size: 42px; color: var(--ink); letter-spacing: -0.03em; }
.plan .price .per { color: var(--muted); font-size: 15px; }
.plan.featured .price .per { color: oklch(0.78 0.03 248); }
.plan ul { list-style: none; padding: 0; margin: 8px 0 26px; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.plan li svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--blue); margin-top: 2px; }
.plan.featured li svg { color: var(--teal); }
.plan .btn { margin-top: auto; width: 100%; }
.plan.featured .btn-ghost { color: #fff; border-color: oklch(0.6 0.04 248); }
.plan.featured .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* Billing toggle + 2-plan layout */
.billing-toggle { display: flex; width: max-content; margin: 0 auto clamp(30px,4vw,42px); gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 5px; box-shadow: var(--shadow-sm); }
.bt-opt { border: 0; background: transparent; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--muted); padding: 10px 24px; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; display: inline-flex; align-items: center; gap: 8px; }
.bt-opt.active { background: var(--blue); color: #fff; }
.bt-save { font-size: 11px; font-weight: 800; background: var(--teal); color: #063; padding: 2px 7px; border-radius: 999px; letter-spacing: .02em; }
.bt-opt.active .bt-save { background: rgba(255,255,255,.24); color: #fff; }
.plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
@media (max-width: 740px) { .plans-2 { grid-template-columns: 1fr; max-width: 440px; } }
.price-note { font-size: 13px; color: var(--muted); margin: -12px 0 18px; }
.plan.featured .price-note { color: oklch(0.78 0.03 248); }
.plan li.no { color: var(--muted); }
.plan li.no svg { color: oklch(0.72 0.02 250); }

/* ---------- CTA / WhatsApp band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--blue) 130%); color: #fff; border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 100% 0%, rgba(255,255,255,.12), transparent 60%); pointer-events:none; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); position: relative; }
.cta-band p { color: oklch(0.88 0.02 248); margin-top: 16px; font-size: 18px; max-width: 560px; position: relative; }
.cta-band .hero-actions { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: oklch(0.82 0.02 248); padding-block: clamp(48px, 7vw, 80px) 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-name { color: #fff; }
.site-footer p { color: oklch(0.74 0.02 248); font-size: 15px; margin-top: 16px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col a { display: block; padding: 6px 0; color: oklch(0.78 0.02 248); font-size: 15px; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: oklch(0.38 0.04 252); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--blue); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid oklch(0.4 0.03 252); margin-top: 48px; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; color: oklch(0.66 0.02 248); font-size: 13.5px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: wapulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wapulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4);} 50% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0);} }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee, .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page hero (internal) ---------- */
.page-hero { background: var(--sky); position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 96px); }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(55% 70% at 90% 0%, oklch(0.60 0.16 248 / 0.14), transparent 60%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-top: 18px; max-width: 760px; }
.page-hero p { font-size: clamp(18px, 2.2vw, 21px); color: var(--body); margin-top: 20px; max-width: 620px; }
.crumbs { font-size: 14px; color: var(--muted); font-family: var(--font-display); font-weight: 600; }
.crumbs a:hover { color: var(--blue); }

/* prose */
.prose p { margin-top: 18px; }
.prose h3 { font-size: 24px; margin-top: 40px; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.cmp { width: 100%; border-collapse: collapse; min-width: 620px; }
.cmp th, .cmp td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line-2); font-size: 15px; }
.cmp thead th { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.cmp th:first-child, .cmp td:first-child { text-align: left; color: var(--body); font-weight: 600; }
.cmp .hl { background: var(--blue-soft); }
.cmp thead th.hl { color: var(--blue); }
.cmp td.y { color: var(--blue); font-weight: 800; font-size: 17px; }
.cmp td.n { color: oklch(0.75 0.01 248); }
.cmp tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 22px; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 17.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 600; color: var(--blue); font-size: 26px; line-height: 1;
  transition: transform .25s; flex: 0 0 auto;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: 16px; padding: 0 0 22px; max-width: 64ch; }

/* ---------- Tweaks panel ---------- */
.tweaks-panel { position: fixed; right: 18px; bottom: 18px; z-index: 300; width: 296px; max-width: calc(100vw - 36px); background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); font-family: var(--font-body); overflow: hidden; }
.tweaks-panel[hidden] { display: none; }
.tw-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border-bottom: 1px solid var(--line-2); }
.tw-head h4 { font-family: var(--font-display); font-size: 15px; color: var(--ink); margin: 0; display: flex; align-items: center; gap: 8px; }
.tw-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.tw-close { border: 0; background: transparent; cursor: pointer; color: var(--muted); width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 18px; line-height: 1; }
.tw-close:hover { background: var(--bg-2); color: var(--ink); }
.tw-body { padding: 16px; display: grid; gap: 18px; }
.tw-group > span { display: block; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--ink); margin-bottom: 8px; }
.tw-seg { display: flex; gap: 5px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; padding: 4px; }
.tw-seg button { flex: 1; border: 0; background: transparent; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--muted); padding: 8px 4px; border-radius: 7px; cursor: pointer; transition: background .18s, color .18s, box-shadow .18s; }
.tw-seg button.on { background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm); }
.tw-hint { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* Tweak: density */
.tw-compact .section { padding-block: clamp(34px, 4.2vw, 58px); }
.tw-compact .section-head { margin-bottom: clamp(22px, 3vw, 34px); }
.tw-compact .cards, .tw-compact .sol-cols, .tw-compact .plans, .tw-compact .tgrid { gap: 16px; }
.tw-spacious .section { padding-block: clamp(74px, 9.5vw, 140px); }
.tw-spacious .section-head { margin-bottom: clamp(44px, 6vw, 68px); }
.tw-spacious .cards, .tw-spacious .sol-cols, .tw-spacious .tgrid { gap: 30px; }
