/* Simclinic landing page styles */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fafcfb;
  color: #0a1410;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:root {
  --primary: #1aaa94;
  --primary-light: #e6f7f5;
  --primary-dark: #0d7a6a;
  --primary-darker: #0d3d35;
  --text-1: #0a1410;
  --text-2: #2d4a44;
  --text-3: #6b8f89;
  --surface: #fafcfb;
  --border: #d4e9e6;
  --border-soft: #e9f3f1;
}

button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 22px; border-radius: 12px;
  font-weight: 700; font-size: 15px;
  transition: transform .18s cubic-bezier(.2,.9,.3,1.4), background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 8px 18px -8px rgba(26,170,148,.55);
}
.btn-primary:hover { background: #18a08a; box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 12px 28px -8px rgba(26,170,148,.7); }
.btn-ghost {
  background: transparent; color: var(--text-1); border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.btn.full { width: 100%; }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(250,252,251,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border-soft);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.logo-mark { display: inline-flex; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-2); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-link-quiet { font-size: 14px; font-weight: 600; color: var(--text-2); }
.nav-cta .btn { height: 40px; font-size: 14px; padding: 0 18px; }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; }
.nav-mobile { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta .nav-link-quiet { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; padding: 130px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #fafcfb 0%, #f1faf7 100%);
}
.mesh { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
  will-change: transform;
}
.b1 { width: 520px; height: 520px; background: #6ed8c5; top: -120px; left: -100px; animation: float 18s ease-in-out infinite; }
.b2 { width: 480px; height: 480px; background: #b5ecde; top: 80px; right: -120px; animation: float 22s ease-in-out infinite reverse; }
.b3 { width: 360px; height: 360px; background: #1aaa94; bottom: -100px; left: 40%; opacity: 0.18; animation: float 26s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.05); }
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,122,106,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,122,106,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--primary-dark);
  animation: fadeUp .8s .1s both;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  position: relative;
  box-shadow: 0 0 0 0 rgba(26,170,148,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26,170,148,.6); }
  70% { box-shadow: 0 0 0 8px rgba(26,170,148,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,170,148,0); }
}

.hero-title {
  font-size: clamp(30px, 7vw, 86px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  margin: 28px 0 22px;
  color: var(--text-1);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 0 .12em; max-width: 100%; }
.word {
  display: inline-block; opacity: 0; transform: translateY(110%) skewY(6deg);
  animation: wordIn .9s cubic-bezier(.2,.9,.2,1.1) forwards;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary), #2dd4bf 60%, var(--primary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px); color: var(--text-2);
  max-width: 620px; margin: 0 auto 36px; line-height: 1.55;
  animation: fadeUp .8s .8s both;
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s .95s both;
}
.hero-meta {
  margin-top: 22px; display: flex; gap: 22px; justify-content: center;
  font-size: 13px; color: var(--text-3); flex-wrap: wrap;
  animation: fadeUp .8s 1.05s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-mascot {
  position: absolute; right: clamp(20px, 12vw, 180px); top: 30px;
  animation: mascotDrop 1.4s .3s both;
  filter: drop-shadow(0 20px 40px rgba(13,61,53,.18));
}
.hero-mascot::after {
  content: ''; position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(26,170,148,.15), transparent 70%);
  z-index: -1;
}
@keyframes mascotDrop {
  0% { transform: translateY(-200px) rotate(-12deg); opacity: 0; }
  60% { transform: translateY(20px) rotate(6deg); opacity: 1; }
  78% { transform: translateY(-8px) rotate(-3deg); }
  90% { transform: translateY(4px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0); }
}
@media (max-width: 980px) {
  .hero-mascot { position: static; margin: 0 auto 8px; display: block; }
}
@media (max-width: 560px) {
  .hero-inner { padding: 0 18px; }
  .hero-title { font-size: clamp(26px, 9vw, 44px); letter-spacing: -0.02em; }
}

.hero-preview {
  margin-top: 70px; position: relative; max-width: 1100px; margin-left: auto; margin-right: auto;
  transform-style: preserve-3d;
  animation: fadeUp 1s 1.2s both;
}
.preview-window {
  background: white; border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 80px -20px rgba(13,61,53,.35),
    0 8px 20px -8px rgba(13,61,53,.18);
  border: 1px solid var(--border);
  overflow: hidden;
}
.pw-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #f5faf9; border-bottom: 1px solid var(--border-soft);
}
.pw-chrome .dot { width: 12px; height: 12px; border-radius: 50%; }
.pw-chrome .r { background: #ff5f57; } .pw-chrome .y { background: #febc2e; } .pw-chrome .g { background: #28c840; }
.pw-url {
  margin-left: 12px; padding: 4px 12px; background: white; border: 1px solid var(--border-soft);
  border-radius: 6px; font-size: 12px; color: var(--text-3); font-family: ui-monospace, monospace;
}

/* ---------- Hero device showcase: Desktop · Tablet · Mobile ---------- */
.hero-devices {
  position: relative;
  margin: 90px auto 40px;
  max-width: 1180px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s 1.2s both;
}
.devices-glow {
  position: absolute; inset: 10% 5% -10%;
  background: radial-gradient(ellipse at 50% 60%, rgba(26,170,148,.32), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.dev-label {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.92); 
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(13,61,53,.2);
  z-index: 5;
}

.tablet-screen image-slot,
.desktop-screen image-slot,
.mobile-screen image-slot,
.tablet-screen .device-shot,
.desktop-screen .device-shot,
.mobile-screen .device-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* tablet & desktop show the full screenshot — no crop */
.tablet-screen .device-shot,
.desktop-screen .device-shot {
  object-fit: contain;
  object-position: center;
  background: #fafcfb;
}

/* DESKTOP — center anchor */
.dev-desktop {
  position: relative;
  width: 720px; max-width: 62%;
  z-index: 2;
}
.desktop-frame {
  background: #1a2826;
  border-radius: 14px 14px 6px 6px;
  padding: 10px 10px 12px;
  box-shadow:
    0 30px 80px -20px rgba(13,61,53,.45),
    0 12px 30px -8px rgba(13,61,53,.25),
    inset 0 1px 0 rgba(255,255,255,.08);
  border: 1px solid #2a3e3a;
}
.desktop-chrome {
  display: flex; align-items: center; gap: 7px;
  background: #2a3e3a;
  padding: 10px 14px;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid rgba(0,0,0,.2);
}
.desktop-chrome .dot { width: 11px; height: 11px; border-radius: 50%; }
.desktop-chrome .dot.r { background: #ff5f57; }
.desktop-chrome .dot.y { background: #febc2e; }
.desktop-chrome .dot.g { background: #28c840; }
.desktop-url {
  margin-left: 14px; padding: 4px 14px;
  background: rgba(0,0,0,.3); border-radius: 6px;
  font-size: 11px; color: rgba(255,255,255,.6);
  font-family: ui-monospace, "SF Mono", monospace;
  display: inline-flex; align-items: center;
}
.desktop-screen {
  aspect-ratio: 16 / 9;
  background: #fafcfb;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  position: relative;
}
.desktop-stand { position: relative; display: flex; flex-direction: column; align-items: center; margin-top: -2px; }
.stand-neck {
  width: 90px; height: 14px;
  background: linear-gradient(180deg, #1a2826, #0d1614);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.stand-base {
  width: 160px; height: 8px;
  background: linear-gradient(180deg, #2a3e3a, #1a2826);
  border-radius: 4px;
  box-shadow: 0 8px 16px -4px rgba(13,61,53,.25);
}

/* TABLET — left, landscape, behind desktop */
.dev-tablet {
  position: absolute; left: -40px; bottom: 40px;
  width: 460px;
  z-index: 1;
  filter: drop-shadow(0 22px 44px rgba(13,61,53,.28));
}
.tablet-frame {
  background: #1a2826;
  border-radius: 22px;
  padding: 14px 10px;
  position: relative;
  border: 1px solid #2a3e3a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.tablet-cam {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: #0d1614; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.tablet-screen {
  aspect-ratio: 16 / 10;
  background: #fafcfb;
  border-radius: 8px;
  overflow: hidden;
}
.tablet-home {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.15);
}

/* MOBILE — right, foreground */
.dev-mobile {
  position: absolute; right: 8px; bottom: -10px;
  width: 200px;
  z-index: 4;
  filter: drop-shadow(0 24px 40px rgba(13,61,53,.32));
}
.mobile-frame {
  background: #0d1614;
  border-radius: 32px;
  padding: 12px 8px;
  position: relative;
  border: 2px solid #2a3e3a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.04);
}
.mobile-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 16px; border-radius: 10px;
  background: #0d1614;
  z-index: 2;
}
.mobile-screen {
  aspect-ratio: 9 / 19;
  background: #fafcfb;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  padding: 5px;
}
.mobile-home {
  position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.25);
}

/* Floating accent sparkles */
.dev-spark {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: var(--primary); opacity: .5;
  animation: sparkle 4s ease-in-out infinite;
}
.dev-spark.s1 { width: 10px; height: 10px; top: 18%; left: 6%; animation-delay: 0s; }
.dev-spark.s2 { width: 14px; height: 14px; top: 10%; right: 10%; animation-delay: 1.2s; background: #2dd4bf; }
.dev-spark.s3 { width: 8px; height: 8px; bottom: 14%; left: 32%; animation-delay: 2.4s; }
@keyframes sparkle {
  0%, 100% { transform: scale(1) translateY(0); opacity: .4; }
  50% { transform: scale(1.4) translateY(-8px); opacity: .85; }
}

/* Friendlier placeholder for empty image-slots */
image-slot::part(empty) {
  background: linear-gradient(135deg, #f4fbf9 0%, #e6f7f5 100%);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-devices { height: auto; flex-direction: column; gap: 80px; padding: 0 20px; }
  .dev-desktop { width: 100%; max-width: 520px; }
  .dev-tablet, .dev-mobile {
    position: static; transform: none !important;
    filter: drop-shadow(0 12px 24px rgba(13,61,53,.18));
  }
  .dev-tablet { width: 320px; }
  .dev-mobile { width: 200px; }
  .dev-spark { display: none; }
}

.scroll-indicator {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: var(--text-3); display: flex; flex-direction: column; align-items: center; gap: 4px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  animation: bounce 2.4s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- App mocks shared ---------- */
.mock { font-size: 12px; color: var(--text-1); }

/* Mock que é apenas um screenshot */
.mock-shot {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #fafcfb;
}
.mock-shot img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.mm-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-3); font-weight: 700; margin-bottom: 4px; }

/* Agenda */
.mock-agenda { display: grid; grid-template-columns: 220px 1fr; min-height: 520px; }
.mock-side { background: #f7fbfa; border-right: 1px solid var(--border-soft); padding: 16px 12px; display: flex; flex-direction: column; gap: 14px; }
.ms-brand { display: flex; align-items: center; gap: 8px; padding: 4px 6px; font-size: 14px; }
.ms-search { background: white; border: 1px solid var(--border-soft); border-radius: 8px; padding: 8px 10px; color: var(--text-3); font-size: 12px; display: flex; gap: 6px; }
.ms-nav { display: flex; flex-direction: column; gap: 2px; }
.ms-nav a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: var(--text-2); font-weight: 600; }
.ms-nav a i { font-style: normal; width: 16px; text-align: center; }
.ms-nav a.active { background: white; color: var(--primary-dark); box-shadow: 0 1px 2px rgba(13,61,53,.06); }
.ms-card { margin-top: auto; background: white; border: 1px solid var(--border-soft); border-radius: 10px; padding: 12px; }
.ms-card-h { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); font-weight: 700; margin-bottom: 8px; }
.ms-card-r { display: flex; justify-content: space-between; padding: 4px 0; font-size: 12px; }
.ms-card-r b { font-size: 13px; }

.mock-main { padding: 18px 20px; }
.mm-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.mm-head h3 { margin: 0; font-size: 17px; font-weight: 800; }
.mm-actions { display: flex; gap: 6px; }
.mm-btn { height: 30px; padding: 0 10px; border-radius: 7px; border: 1px solid var(--border-soft); background: white; font-size: 12px; font-weight: 600; color: var(--text-2); }
.mm-btn.primary { background: var(--primary); color: white; border-color: var(--primary); }

.mm-grid {
  display: grid;
  grid-template-columns: 50px repeat(5, 1fr);
  grid-auto-rows: 44px;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
}
.mg-corner { background: white; }
.mg-day { background: #f7fbfa; padding: 8px; font-weight: 700; font-size: 11px; text-align: center; color: var(--text-2); }
.mg-hour { background: white; padding: 4px 8px; font-size: 10px; color: var(--text-3); display: flex; align-items: flex-start; justify-content: flex-end; }
.mg-cell { background: white; }
.mg-appt {
  position: relative; padding: 6px 8px; border-radius: 6px; margin: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 2;
}
.mg-appt.c-teal { background: linear-gradient(135deg, #d8f3ec, #b9e7da); border-left: 3px solid var(--primary); color: var(--primary-darker); }
.mg-appt.c-blue { background: linear-gradient(135deg, #dbe9f5, #c0d6ee); border-left: 3px solid #4a7bbd; color: #1f3d6d; }
.mg-appt.c-amber { background: linear-gradient(135deg, #f8e9c8, #f5dca0); border-left: 3px solid #c89028; color: #5a3f10; }
.appt-time { font-size: 10px; opacity: .7; font-weight: 700; }
.appt-name { font-weight: 700; font-size: 12px; }
.appt-type { font-size: 11px; opacity: .8; }

/* WhatsApp mock */
.mock-whats { display: grid; grid-template-columns: 1fr 240px; min-height: 520px; padding: 20px; gap: 20px; align-items: stretch; background: #f7fbfa; }
.wa-phone { background: linear-gradient(180deg, #ece5dd, #d8e5e1); border-radius: 18px; padding: 14px; display: flex; flex-direction: column; box-shadow: inset 0 0 0 1px var(--border-soft); }
.wa-head { display: flex; align-items: center; gap: 10px; padding: 6px 4px 12px; border-bottom: 1px solid rgba(0,0,0,.08); }
.wa-back { font-size: 18px; color: var(--text-2); }
.wa-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; display: grid; place-items: center; font-weight: 700; font-size: 12px; }
.wa-name { font-weight: 700; font-size: 13px; }
.wa-status { font-size: 11px; color: var(--primary-dark); }
.wa-thread { display: flex; flex-direction: column; gap: 8px; padding: 12px 4px; flex: 1; }
.wa-msg { max-width: 80%; padding: 8px 12px; border-radius: 12px; font-size: 12px; line-height: 1.45; }
.wa-msg.in { background: white; align-self: flex-start; border-bottom-left-radius: 4px; }
.wa-msg.out { background: #d8f1c8; align-self: flex-end; border-bottom-right-radius: 4px; }
.wa-msg.good { background: #d8f1c8; }
.wa-quick { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.wa-quick span { background: #f0f7e8; color: var(--primary-dark); border: 1px solid #c9e6b4; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.wa-typing { align-self: flex-start; background: white; padding: 8px 12px; border-radius: 12px; display: flex; gap: 3px; }
.wa-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: typing 1.2s infinite; }
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.wa-side { display: flex; flex-direction: column; gap: 12px; }
.wa-stat { background: white; border: 1px solid var(--border-soft); border-radius: 12px; padding: 14px; }
.wa-stat-num { font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.wa-stat-lbl { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.wa-tip { background: var(--primary-light); border-radius: 12px; padding: 12px; display: flex; gap: 10px; align-items: center; font-size: 11px; color: var(--primary-darker); margin-top: auto; }

/* Prontuario */
.mock-pront { display: grid; grid-template-columns: 280px 1fr; min-height: 520px; }
.pr-side { background: #f7fbfa; border-right: 1px solid var(--border-soft); padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.pr-pat { display: flex; gap: 10px; align-items: center; padding: 8px; background: white; border-radius: 10px; border: 1px solid var(--border-soft); }
.pr-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.pr-name { font-weight: 700; font-size: 13px; }
.pr-meta { font-size: 11px; color: var(--text-3); }
.pr-tabs { display: flex; gap: 4px; padding: 4px; background: white; border-radius: 8px; border: 1px solid var(--border-soft); }
.pr-tabs span { flex: 1; text-align: center; padding: 6px 4px; border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--text-3); }
.pr-tabs span.active { background: var(--primary-light); color: var(--primary-dark); }
.pr-list { display: flex; flex-direction: column; gap: 4px; }
.pr-item { display: flex; gap: 10px; padding: 10px; border-radius: 8px; cursor: pointer; }
.pr-item.active { background: white; border: 1px solid var(--border-soft); box-shadow: 0 1px 2px rgba(13,61,53,.04); }
.pr-date { font-size: 11px; font-weight: 700; color: var(--text-3); width: 40px; flex-shrink: 0; }
.pr-title { font-weight: 700; font-size: 12px; }
.pr-txt { font-size: 11px; color: var(--text-3); margin-top: 2px; line-height: 1.4; }

.pr-main { padding: 20px; }
.pr-h { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.pr-h h3 { margin: 0; font-size: 17px; font-weight: 800; }
.pr-card { background: white; border: 1px solid var(--border-soft); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.pr-card label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); font-weight: 700; }
.pr-field { padding: 10px 12px; background: #f7fbfa; border-radius: 8px; font-size: 12px; line-height: 1.5; border: 1px solid var(--border-soft); margin-bottom: 4px; }
.pr-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 8px; }
.pr-vita { font-size: 22px; font-weight: 800; color: var(--primary-dark); letter-spacing: -0.02em; }
.pr-vita small { font-size: 12px; color: var(--text-3); font-weight: 600; margin-left: 2px; }

/* Financeiro */
.mock-fin { padding: 20px; min-height: 520px; display: flex; flex-direction: column; gap: 14px; }
.fin-head { display: flex; justify-content: space-between; align-items: flex-start; }
.fin-head h3 { margin: 0; font-size: 17px; font-weight: 800; }
.fin-period { display: flex; padding: 4px; background: #f7fbfa; border-radius: 8px; border: 1px solid var(--border-soft); gap: 2px; }
.fin-period span { padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--text-3); cursor: pointer; }
.fin-period span.active { background: white; color: var(--primary-dark); box-shadow: 0 1px 2px rgba(13,61,53,.05); }

.fin-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.fin-card { background: white; border: 1px solid var(--border-soft); border-radius: 12px; padding: 14px; }
.fin-card.primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-color: transparent; }
.fc-lbl { font-size: 11px; opacity: .7; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.fin-card.primary .fc-lbl { opacity: .85; }
.fc-val { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 4px 0; }
.fc-tag { font-size: 11px; font-weight: 700; }
.fc-tag.up { color: var(--primary); } .fc-tag.down { color: #c84e3b; }
.fin-card.primary .fc-tag { color: rgba(255,255,255,.85); }

.fin-chart { background: white; border: 1px solid var(--border-soft); border-radius: 12px; padding: 14px; }
.fc-h { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 12px; }
.fc-leg { display: flex; gap: 14px; font-size: 11px; color: var(--text-3); align-items: center; }
.fc-leg .d { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-right: 4px; vertical-align: -1px; }
.fc-leg .teal { background: var(--primary); } .fc-leg .gray { background: #cbd9d6; }
.fc-bars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: end; height: 110px; padding: 0 10px; }
.fc-col { display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; }
.fc-stack { display: flex; gap: 4px; align-items: end; height: 100%; }
.fc-bar { width: 14px; border-radius: 4px 4px 0 0; }
.fc-bar.teal { background: var(--primary); }
.fc-bar.gray { background: #cbd9d6; }
.fc-lab { font-size: 11px; color: var(--text-3); font-weight: 600; }

.fin-tx { background: white; border: 1px solid var(--border-soft); border-radius: 12px; padding: 6px 14px; }
.ft-h { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--text-3); padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.ft-r { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; padding: 8px 0; font-size: 12px; border-bottom: 1px solid var(--border-soft); }
.ft-r:last-child { border-bottom: none; }
.ft-date { color: var(--text-3); font-weight: 600; }
.ft-name { color: var(--text-1); }
.ft-val { font-weight: 700; }
.ft-val.in { color: var(--primary); } .ft-val.out { color: #c84e3b; }

/* ---------- Social proof ---------- */
.social { padding: 80px 0 60px; background: var(--surface); position: relative; }
.social-eyebrow { text-align: center; font-size: 13px; font-weight: 700; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px; }
.logo-strip { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); padding: 14px 0; }
.logo-track { display: flex; gap: 14px; animation: marquee 40s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 12px;
  background: white; border: 1px solid var(--border-soft);
  font-weight: 700; font-size: 14px; color: var(--text-2);
}
.lc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  margin-top: 48px; padding: 32px;
  background: white; border-radius: 20px; border: 1px solid var(--border-soft);
}
.stat { text-align: center; }
.stat-num {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary), #2dd4bf);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-lbl { color: var(--text-3); font-size: 14px; margin-top: 4px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Sticky feature ---------- */
.section-eyebrow { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.section-eyebrow.center { text-align: center; }
.section-title {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.05; margin: 0 0 18px;
}
.section-title.center { text-align: center; }
.section-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary), #2dd4bf);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-sub { font-size: 18px; color: var(--text-2); line-height: 1.55; max-width: 480px; }

.features { position: relative; background: var(--surface); }
.features-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; padding: 60px 0;
}
.features-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 380px 1fr; gap: 60px; width: 100%; align-items: center;
}
.features-list { max-width: 420px; }
.feat-items { display: flex; flex-direction: column; gap: 6px; margin-top: 28px; }
.feat-item {
  text-align: left; background: transparent; border: none;
  padding: 18px 16px; border-radius: 12px;
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  position: relative;
  transition: background .3s, opacity .3s;
  opacity: .5;
}
.feat-item.active { background: white; opacity: 1; box-shadow: 0 1px 0 var(--border-soft), 0 8px 24px -10px rgba(13,61,53,.1); }
.fi-icon { font-size: 22px; }
.fi-title { font-weight: 800; font-size: 17px; }
.fi-desc { font-size: 14px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }
.feat-item:not(.active) .fi-desc { display: none; }
.fi-bullets { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--text-2); }
.fi-bullets li::before { content: '✓'; color: var(--primary); font-weight: 700; margin-right: 8px; }
.fi-bar { position: absolute; left: 16px; right: 16px; bottom: 0; height: 2px; background: var(--border-soft); border-radius: 2px; overflow: hidden; }
.fi-bar span { display: block; height: 100%; background: var(--primary); transition: width .3s linear; }
.feat-item:not(.active) .fi-bar { display: none; }

.features-stage { position: relative; height: 550px; }
.stage-window {
  position: relative; height: 100%; border-radius: 16px; overflow: hidden;
  background: white; border: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 80px -20px rgba(13,61,53,.3),
    0 8px 20px -8px rgba(13,61,53,.18);
}
.stage-slide {
  position: absolute; inset: 0; transition: opacity .6s, transform .6s cubic-bezier(.2,.9,.2,1);
  opacity: 0; pointer-events: none;
}
.stage-slide.in { opacity: 1; transform: translateX(0); pointer-events: auto; }
.stage-slide.out-l { opacity: 0; transform: translateX(-30px); }
.stage-slide.out-r { opacity: 0; transform: translateX(30px); }
.stage-mascot { position: absolute; bottom: -10px; right: -10px; z-index: 5; filter: drop-shadow(0 12px 24px rgba(13,61,53,.18)); }
@media (max-width: 980px) {
  .features { height: auto !important; }
  .features-sticky { position: static; height: auto; padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .features-stage { height: 460px; }
}

/* ---------- Steps ---------- */
.steps-section { padding: 120px 0; background: linear-gradient(180deg, #fafcfb, #effbf7); }
.steps {
  position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 80px;
}
.steps-line { position: absolute; top: 60px; left: 0; right: 0; width: 100%; height: 80px; pointer-events: none; }
.steps-line path { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.steps-line path.draw { animation: draw 2s 0.4s forwards cubic-bezier(.2,.9,.2,1); }
@keyframes draw { to { stroke-dashoffset: 0; } }

.step {
  text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s, transform .8s cubic-bezier(.2,.9,.2,1);
  position: relative; z-index: 2;
}
.step.in { opacity: 1; transform: translateY(0); }
.step-num {
  font-size: 120px; font-weight: 800; letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--primary), transparent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: -20px; opacity: .55; transition: transform .1s linear;
}
.step-mascot { display: flex; justify-content: center; margin: -10px 0 4px; }
.step-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 8px; }
.step-desc { color: var(--text-2); font-size: 15px; line-height: 1.55; max-width: 320px; margin: 0 auto; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 60px; } .steps-line { display: none; } }

/* ---------- Testimonials ---------- */
.testi-section { padding: 120px 0; background: linear-gradient(180deg, #effbf7, var(--surface)); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.testi {
  background: white; border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 28px; position: relative;
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s, transform .8s cubic-bezier(.2,.9,.2,1);
  box-shadow: 0 1px 0 var(--border-soft);
}
.testi.in { opacity: 1; transform: translateY(0); }
.testi:hover { box-shadow: 0 12px 30px -10px rgba(13,61,53,.18); transform: translateY(-3px); }
.quote-mark { color: var(--primary); opacity: .25; }
.testi blockquote { margin: 0; font-size: 17px; line-height: 1.5; color: var(--text-1); font-weight: 500; flex: 1; }
.testi figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: white; font-size: 15px; }
.avatar.c-teal { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.avatar.c-blue { background: linear-gradient(135deg, #5b8cd1, #2c5694); }
.avatar.c-amber { background: linear-gradient(135deg, #e8a847, #b97516); }
.t-name { font-weight: 700; font-size: 14px; }
.t-role { font-size: 12px; color: var(--text-3); }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing-section { padding: 120px 0; background: var(--surface); }
.price-toggle {
  position: relative; display: inline-flex; padding: 4px;
  background: white; border: 1px solid var(--border-soft); border-radius: 999px;
  margin: 28px auto 56px; left: 50%; transform: translateX(-50%);
}
.price-toggle button {
  position: relative; z-index: 2;
  flex: 1; white-space: nowrap;
  width: 140px; height: 40px; padding: 0 0px; border: none; background: transparent;
  font-weight: 700; font-size: 14px; color: var(--text-3); border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: color .3s;
}
.price-toggle button.active { color: white; }
.toggle-thumb {
  position: absolute; top: 4px; left: 4px; width: calc(50% - 4px); height: 40px;
  background: var(--primary); border-radius: 999px;
  transition: transform .35s cubic-bezier(.4,1.4,.5,1);
  z-index: 1;
}
.off-badge { background: rgba(255,255,255,.25); padding: 2px 6px; border-radius: 999px; font-size: 11px; }
.price-toggle button:not(.active) .off-badge { background: var(--primary-light); color: var(--primary-dark); }

.price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1180px; margin: 0 auto; align-items: stretch;
}
.price {
  background: white; border: 1px solid var(--border-soft); border-radius: 22px;
  padding: 32px 26px; position: relative; display: flex; flex-direction: column; gap: 18px;
}
.price.pro {
  background: linear-gradient(180deg, white, #f4fbf9);
  border: 1px solid var(--primary); box-shadow: 0 0 0 3px rgba(26,170,148,.12), 0 30px 60px -20px rgba(13,61,53,.18);
  position: relative;
}
.price.multi {
  background: linear-gradient(180deg, white, #f7f4fb);
  border: 1px solid #b89df0;
}
.price.multi .check { background: #ede4ff; color: #6d40c8; }
.p-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 12px -4px rgba(26,170,148,.5);
}
.p-h h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.p-h p { margin: 0; color: var(--text-3); font-size: 14px; }
.p-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.p-curr { color: var(--text-3); font-size: 18px; font-weight: 700; }
.p-val { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.p-per { color: var(--text-3); font-size: 14px; }
.p-save { width: 100%; font-size: 12px; color: var(--primary-dark); font-weight: 700; margin-top: 4px; }
.p-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.p-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.check { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--primary-light); color: var(--primary-dark); flex-shrink: 0; }
.price.pro .check { background: var(--primary); color: white; }
.p-extra { font-size: 12px; color: var(--text-3); margin-top: -6px; }

.price-note { text-align: center; color: var(--text-3); font-size: 14px; margin-top: 32px; }

@media (max-width: 1024px) {
  .price-cards { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---------- FAQ ---------- */
.faq-section { padding: 120px 0; background: linear-gradient(180deg, var(--surface), #effbf7); }
.faqs { display: flex; flex-direction: column; gap: 8px; margin-top: 48px; }
.faq {
  background: white; border: 1px solid var(--border-soft); border-radius: 14px;
  overflow: hidden; transition: box-shadow .3s, border-color .3s;
}
.faq.open { border-color: var(--primary); box-shadow: 0 12px 24px -10px rgba(13,61,53,.12); }
.faq-q {
  width: 100%; background: none; border: none; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 16px; color: var(--text-1); text-align: left;
}
.faq-plus {
  width: 32px; height: 32px; border-radius: 50%; background: var(--primary-light); color: var(--primary-dark);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq.open .faq-plus { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.9,.2,1);
}
.faq.open .faq-a { max-height: 240px; }
.faq-a-inner { padding: 0 24px 24px; color: var(--text-2); line-height: 1.6; font-size: 15px; }

/* ---------- Final CTA ---------- */
.cta-section {
  position: relative; padding: 140px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-darker), #0a2e28 60%, var(--primary-darker));
  color: white; text-align: center;
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(45, 220, 195, .8); box-shadow: 0 0 12px rgba(45, 220, 195, .8);
  animation: rise 10s linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: .8; }
  100% { transform: translateY(-200px) scale(1.2); opacity: 0; }
}
.cta-mascot { display: flex; justify-content: center; margin-bottom: 18px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.cta-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 18px;
  text-wrap: balance;
}
.cta-sub { font-size: 18px; color: rgba(255,255,255,.75); margin: 0 auto 36px; max-width: 600px; line-height: 1.55; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-ghost { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: white; }
.cta-meta { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 24px; }

/* ---------- Footer ---------- */
.footer { padding: 80px 0 40px; background: #0a1410; color: rgba(255,255,255,.7); }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-logo { display: flex; align-items: center; gap: 10px; color: white; font-size: 18px; }
.foot-tag { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.55; margin: 14px 0; max-width: 260px; }
.foot-social { display: flex; gap: 8px; margin-top: 14px; }
.foot-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); display: grid; place-items: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); transition: background .2s; }
.foot-social a:hover { background: var(--primary); color: white; }
.foot-h { color: white; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.footer .foot-grid > div > a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer .foot-grid > div > a:hover { color: var(--primary); }
.foot-bot {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 12px;
}
.foot-heart { display: flex; align-items: center; gap: 6px; }
.mini-heart { display: inline-flex; }
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; }
}
