/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
.wa-float svg { display: block; }

/* ─── EXIT INTENT POPUP ─── */
.ei-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,15,41,.65);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.ei-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.ei-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px 40px;
  max-width: 500px;
  width: calc(100% - 32px);
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(.97);
  transition: transform .3s;
  box-shadow: 0 24px 64px rgba(9,15,41,.18);
}
.ei-overlay.open .ei-box {
  transform: translateY(0) scale(1);
}
.ei-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.ei-close:hover { background: #f3f4f6; color: #374151; }
.ei-badge {
  display: inline-block;
  background: #fef9c3;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ei-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 12px;
}
.ei-sub {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.ei-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
  text-align: left;
}
.ei-benefit {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.ei-cta {
  display: block;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity .2s, transform .2s;
}
.ei-cta:hover { opacity: .88; transform: translateY(-1px); }
.ei-skip {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.ei-skip:hover { color: var(--text); }

/* ─── TOKENS ─── */
:root {
  --bg:     #f6f5ff;
  --white:  #ffffff;
  --dark:   #090f29;
  --text:   #4e5573;
  --blue:   #0000fe;
  --border: #f0f0f0;
  --font:   'Plus Jakarta Sans', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ─── ANNOUNCEMENT BAR ─── */
.ann-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 200;
  animation: slideDown .5s ease both;
}
.ann-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; opacity: .85; transition: opacity .2s; }
.ann-bar a:hover { opacity: 1; }
.ann-bar .ann-pill {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ─── NAVBAR ─── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown .4s .1s ease both;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 64px;
}

/* ── Hamburger button ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 6px; border-radius: 8px; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu drawer ── */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 24px 24px;
  box-shadow: 0 8px 24px rgba(9,15,41,.08);
}
nav.nav-open .nav-mobile { display: flex; }
.nav-mobile > a {
  font-size: 15px; font-weight: 500; color: var(--dark);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  transition: color .15s;
}
.nav-mobile > a:hover { color: var(--blue); }
.nav-mobile-cta {
  display: flex; flex-direction: column; gap: 8px; margin-top: 16px;
}
.nav-mobile-cta .btn { justify-content: center; }
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-img { height: 30px; width: auto; display: block; }
.footer-logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo-box {
  width: 36px; height: 36px; background: var(--dark); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.logo-box span { font-size: 17px; font-weight: 800; color: #fff; font-style: italic; }
.logo-name { font-size: 17px; font-weight: 700; color: var(--dark); }
.logo-name small { font-weight: 400; color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 3px; }
.nav-links a:hover { color: var(--dark); }
.nav-links a.has-arr::after { content: '↓'; font-size: 11px; opacity: .5; }
.nav-new-tag {
  font-size: 10px; font-weight: 700;
  color: var(--blue); background: rgba(0,0,254,.1);
  border: 1px solid rgba(0,0,254,.2);
  border-radius: 100px; padding: 1px 7px;
  line-height: 1.6; letter-spacing: .02em;
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px; border-radius: 100px; font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all .2s ease; white-space: nowrap; }
.btn-outline { background: var(--white); color: var(--dark); border: 1px solid var(--border); }
.btn-outline:hover { border-color: #d0d0e0; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #111828; transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1a1afe; box-shadow: 0 6px 20px rgba(0,0,254,.3); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-lg-outline { padding: 13px 28px; font-size: 16px; background: var(--white); color: var(--dark); border: 1px solid var(--border); }
.btn-lg-outline:hover { border-color: #c8c8dc; box-shadow: 0 4px 14px rgba(0,0,0,.07); }

/* ─── HERO ─── */
#hero {
  padding: 72px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,0,254,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,0,254,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,254,.07); border: 1px solid rgba(0,0,254,.15);
  border-radius: 100px; padding: 6px 14px 6px 6px;
  font-size: 13px; font-weight: 500; color: var(--dark);
  margin-bottom: 32px; text-decoration: none;
  animation: fadeUp .5s .2s ease both;
  transition: background .2s;
}
.hero-pill:hover { background: rgba(0,0,254,.11); }
.hero-pill .pill-badge {
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: .03em;
}
.hero-pill .pill-arr { color: var(--blue); font-size: 13px; }

.hero-h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 22px;
  letter-spacing: -.02em;
  animation: fadeUp .55s .3s ease both;
}
.hero-h1 .blue { color: var(--blue); }
.hero-h1 .muted { color: var(--text); font-weight: 600; }

.hero-sub {
  font-size: 17px; color: var(--text); line-height: 1.75;
  max-width: 520px; margin: 0 auto 38px;
  animation: fadeUp .55s .4s ease both;
}
.hero-sub strong { color: var(--dark); font-weight: 600; }

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 44px; flex-wrap: wrap;
  animation: fadeUp .55s .5s ease both;
}

/* ─── HERO TABS ─── */
.hero-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  animation: fadeUp .55s .6s ease both;
}
.hero-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  overflow: hidden;
}
.hero-tab:hover { color: var(--dark); border-color: rgba(0,0,0,.15); }
.hero-tab.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
/* progress bar */
.tab-prog {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  border-radius: 0 0 100px 100px;
}
.hero-tab.active .tab-prog {
  animation: tabProgress var(--tab-duration, 5s) linear forwards;
}
@keyframes tabProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* ─── HERO SCREENS ─── */
.hero-screens { position: relative; }

/* Dashboard iframe mockup */
.db-iframe-wrap {
  width: 100%;
  height: 540px;
  overflow: hidden;
  position: relative;
}
.db-iframe {
  width: 1440px;
  height: 780px;
  border: none;
  transform: scale(0.708);
  transform-origin: top left;
  pointer-events: none;
}
.hero-screen {
  display: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-screen.active {
  display: block;
  opacity: 1;
}
.hero-screen.fade-in { animation: screenFade .35s ease forwards; }
@keyframes screenFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HTML mockup shared layout ── */
.hs-wrap {
  display: flex;
  min-height: 420px;
  background: #f8f9fc;
  font-family: 'Inter', var(--font);
}
.hs-sidebar {
  width: 52px;
  background: #090f29;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
  flex-shrink: 0;
}
.hs-sb-logo {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 8px;
  margin-bottom: 8px;
}
.hs-sb-item {
  width: 32px; height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
}
.hs-sb-item.active { background: rgba(255,255,255,.7); }
.hs-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

/* topbar */
.hs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f4;
  flex-shrink: 0;
}
.hs-page-title { font-size: 14px; font-weight: 700; color: #090f29; }
.hs-topbar-actions { display: flex; align-items: center; gap: 8px; }
.hs-view-btn {
  font-size: 11px; font-weight: 600; color: #6b7280;
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
  border: 1px solid #e5e7eb;
}
.hs-view-btn.active { background: #090f29; color: #fff; border-color: #090f29; }
.hs-new-btn {
  font-size: 11px; font-weight: 700; color: #fff;
  background: #0000fe; padding: 5px 12px; border-radius: 6px; cursor: pointer;
  white-space: nowrap;
}
.hs-search-box {
  font-size: 11px; color: #9ca3af;
  background: #f3f4f6; border: 1px solid #e5e7eb;
  padding: 5px 12px; border-radius: 6px;
}

/* calendar */
.hs-cal { flex: 1; display: flex; flex-direction: column; padding: 10px; gap: 6px; overflow: hidden; }
.hs-cal-head { display: flex; gap: 4px; }
.hs-cal-day-h {
  flex: 1; text-align: center;
  font-size: 10px; font-weight: 600; color: #6b7280;
  padding: 4px; line-height: 1.4;
}
.hs-cal-day-h span { font-size: 14px; font-weight: 800; color: #090f29; display: block; }
.hs-cal-day-h.today span {
  background: #0000fe; color: #fff;
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin: 0 auto;
}
.hs-cal-body { display: flex; gap: 4px; flex: 1; }
.hs-cal-col { flex: 1; position: relative; background: #fff; border-radius: 6px; border: 1px solid #f0f0f4; min-height: 280px; }
.hs-cal-col.today-col { border-color: rgba(0,0,254,.2); background: rgba(0,0,254,.02); }
.hs-event {
  position: absolute; left: 4px; right: 4px;
  border-radius: 4px; padding: 4px 6px;
  overflow: hidden;
}
.hs-ev-name { font-size: 9px; font-weight: 700; color: #090f29; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-ev-svc { font-size: 8px; color: #6b7280; margin-top: 1px; }

/* client list */
.hs-client-list { flex: 1; overflow: hidden; }
.hs-client-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr .8fr;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid #f0f0f4;
  font-size: 12px;
  color: #374151;
  gap: 8px;
}
.hs-client-row.header {
  font-size: 10px; font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .05em;
  background: #f9fafb;
}
.hs-client-name { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #090f29; }
.hs-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; flex-shrink: 0;
}
.hs-badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 100px;
}
.hs-badge.green { background: #dcfce7; color: #16a34a; }
.hs-badge.gray  { background: #f3f4f6; color: #6b7280; }
.hs-badge.yellow { background: #fef9c3; color: #854d0e; }

/* NFS-e */
.hs-nf-stats {
  display: flex; gap: 10px; padding: 12px 16px;
  background: #fff; border-bottom: 1px solid #f0f0f4;
}
.hs-nf-stat-card {
  flex: 1; padding: 10px 12px;
  background: #f9fafb; border-radius: 8px;
  border-left: 3px solid #e5e7eb;
}
.hs-nf-val { font-size: 16px; font-weight: 800; color: #090f29; }
.hs-nf-label { font-size: 10px; color: #6b7280; margin-top: 2px; }
.hs-nf-list { flex: 1; overflow: hidden; }

/* WhatsApp */
.hs-wa-stats {
  display: flex; gap: 0;
  background: #fff; border-bottom: 1px solid #f0f0f4;
}
.hs-wa-stat {
  flex: 1; padding: 12px 16px;
  border-right: 1px solid #f0f0f4;
  text-align: center;
}
.hs-wa-stat:last-child { border-right: none; }
.hs-wa-val { font-size: 20px; font-weight: 800; color: #090f29; }
.hs-wa-label { font-size: 10px; color: #6b7280; margin-top: 2px; }
.hs-wa-list { flex: 1; overflow: hidden; background: #fff; }
.hs-wa-msg {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 16px; border-bottom: 1px solid #f0f0f4;
}
.hs-wa-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.hs-wa-body { flex: 1; min-width: 0; }
.hs-wa-top { display: flex; justify-content: space-between; margin-bottom: 3px; }
.hs-wa-name { font-size: 12px; font-weight: 700; color: #090f29; }
.hs-wa-time { font-size: 10px; color: #9ca3af; }
.hs-wa-text { font-size: 11px; color: #6b7280; line-height: 1.45; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-wa-msg .hs-badge { flex-shrink: 0; align-self: center; }

/* ─── MOCKUP (hero preview) ─── */
.mockup-wrap {
  position: relative;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  animation: fadeUp .7s .7s ease both;
}
.mockup-wrap::before {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 120px;
  background: radial-gradient(ellipse, rgba(0,0,254,.12) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.mockup-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(9,15,41,.08), 0 0 0 1px rgba(9,15,41,.04);
}

/* Browser chrome */
.browser-bar {
  background: #f8f8fc;
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  display: block;
}
.browser-dots .d1 { background: #ff5f57; }
.browser-dots .d2 { background: #febc2e; }
.browser-dots .d3 { background: #28c840; }
.browser-addr {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 12px;
  font-size: 12px; color: var(--text);
  display: flex; align-items: center; gap: 6px;
  max-width: 360px; margin: 0 auto;
}
.browser-addr svg { opacity: .4; flex-shrink: 0; }
.browser-addr span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* ─── MINI DASHBOARD (dentro do mockup do hero) ─── */
.mock-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 420px;
  background: #fafafe;
}
.mock-sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 18px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mock-sidebar-logo .s-icon {
  width: 28px; height: 28px; background: var(--dark); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.mock-sidebar-logo .s-icon span { font-size: 13px; font-weight: 800; color: #fff; font-style: italic; }
.mock-sidebar-logo .s-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.s-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px; font-size: 13px; color: var(--text);
  cursor: default; transition: background .15s;
  margin: 0 8px; border-radius: 8px;
}
.s-item:hover { background: var(--bg); }
.s-item.active { background: rgba(0,0,254,.07); color: var(--blue); font-weight: 600; }
.s-item svg { opacity: .6; flex-shrink: 0; }
.s-item.active svg { opacity: 1; }
.mock-main { padding: 24px 28px; overflow: hidden; }
.mock-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.mock-topbar-title { font-size: 15px; font-weight: 700; color: var(--dark); }
.mock-topbar-right { display: flex; align-items: center; gap: 8px; }
.mock-tab {
  padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--border); color: var(--text); cursor: default;
  background: var(--white);
}
.mock-tab.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.mock-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px;
}
.mock-stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px;
}
.mock-stat-label { font-size: 11px; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.mock-stat-val { font-size: 22px; font-weight: 700; color: var(--dark); }
.mock-stat-sub { font-size: 11px; color: #1d9a1d; margin-top: 2px; }
.mock-cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-cal {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px;
}
.mock-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-cal-month { font-size: 13px; font-weight: 600; color: var(--dark); }
.mock-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.mock-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text); border-radius: 6px; cursor: default;
}
.mock-cal-day.hd { color: #b0b4c8; font-size: 10px; font-weight: 600; }
.mock-cal-day.today { background: var(--blue); color: #fff; font-weight: 700; }
.mock-cal-day.has { background: rgba(0,0,254,.07); color: var(--blue); font-weight: 600; }
.mock-agenda {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px;
}
.mock-agenda-head { font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.mock-agenda-head span { font-size: 11px; color: var(--blue); font-weight: 500; cursor: default; }
.mock-appt {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.mock-appt:last-child { border-bottom: none; }
.mock-appt-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-appt-time { font-size: 11px; color: var(--text); width: 36px; flex-shrink: 0; }
.mock-appt-name { font-size: 12px; font-weight: 600; color: var(--dark); }
.mock-appt-service { font-size: 11px; color: var(--text); }
.mock-appt-badge {
  margin-left: auto; font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 100px;
}
.mock-appt-badge.conf { background: #e8fce8; color: #1a7a1a; }
.mock-appt-badge.pend { background: #fff8e0; color: #a07000; }
.mockup-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ─── DASH SHELL (mockup do hero — versão compacta do app) ─── */
.dash-shell { display:flex; background:#f8f9fa; min-height:440px; }
.dash-sidebar { width:156px; background:#fff; border-right:1px solid #e5e7eb; display:flex; flex-direction:column; flex-shrink:0; }
.dash-logo { padding:12px 10px; border-bottom:1px solid #e5e7eb; display:flex; align-items:center; gap:6px; }
.dash-logo-g { width:24px;height:24px;background:#0066ff;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:800;color:#fff;font-style:italic;flex-shrink:0; }
.dash-logo-txt { font-size:12px;font-weight:700;color:#111827;line-height:1.1; }
.dash-logo-txt small { display:block;font-size:9px;font-weight:400;color:#6b7280; }
.dash-nav { padding:8px 6px; display:flex; flex-direction:column; gap:1px; flex:1; }
.dash-item { display:flex;align-items:center;gap:6px;padding:7px 8px;border-radius:7px;font-size:11px;font-weight:500;color:#6b7280;cursor:default; }
.dash-item:hover { background:#f8f9fa; }
.dash-item.active { background:#0066ff;color:#fff; }
.dash-item.active svg { opacity:1; }
.dash-item svg { opacity:.5;flex-shrink:0; }
.dash-item.danger { color:#ef4444; }
.dash-item.danger svg { opacity:.7; }
.dash-sec-label { font-size:9px;font-weight:700;color:#6b7280;opacity:.5;text-transform:uppercase;letter-spacing:.1em;padding:8px 8px 3px; }
.dash-main { flex:1; display:flex; flex-direction:column; min-width:0; }
.dash-topbar { background:#fff;border-bottom:1px solid #e5e7eb;height:40px;display:flex;align-items:center;justify-content:space-between;padding:0 16px;flex-shrink:0; }
.dash-burger { display:flex;flex-direction:column;gap:3px; }
.dash-burger span { width:14px;height:1.5px;background:#6b7280;border-radius:2px;display:block; }
.dash-user { display:flex;align-items:center;gap:6px;font-size:11px;font-weight:600;color:#111827; }
.dash-av { width:24px;height:24px;border-radius:50%;background:#0066ff;color:#fff;display:flex;align-items:center;justify-content:center;font-size:9px;font-weight:700; }
.dash-content { padding:16px 18px; display:flex; flex-direction:column; gap:14px; overflow:hidden; }
.dash-header-row { display:flex;align-items:flex-start;justify-content:space-between; }
.dash-greeting { font-size:14px;font-weight:700;color:#111827;display:flex;align-items:center;gap:4px; }
.dash-greeting-sub { font-size:10px;color:#6b7280;margin-top:1px; }
.dash-link-btn { display:inline-flex;align-items:center;gap:4px;padding:5px 10px;border-radius:6px;border:1px solid #e5e7eb;background:#fff;font-size:10px;font-weight:600;color:#0066ff;cursor:default; }
.dash-stats { display:grid;grid-template-columns:repeat(4,1fr);gap:10px; }
.dash-stat { border-radius:10px;padding:13px 14px;display:flex;align-items:center;justify-content:space-between;min-height:70px; }
.ds-info { display:flex;flex-direction:column;gap:2px; }
.ds-val { font-size:18px;font-weight:800;color:#fff;line-height:1; }
.ds-label { font-size:10px;font-weight:500;color:rgba(255,255,255,.85); }
.ds-ico { width:28px;height:28px;background:rgba(255,255,255,.18);border-radius:7px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.dash-bottom { display:grid;grid-template-columns:1fr 220px;gap:12px;align-items:start; }
.dash-card { background:#fff;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden; }
.dash-card-head { padding:10px 14px;border-bottom:1px solid #e5e7eb;display:flex;align-items:center;justify-content:space-between; }
.dash-card-title { display:flex;align-items:center;gap:6px;font-size:11px;font-weight:700;color:#111827; }
.dash-ver-todos { font-size:10px;font-weight:600;color:#0066ff;display:flex;align-items:center;gap:2px;cursor:default; }
.dash-empty { display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;padding:28px 16px;text-align:center; }
.dash-empty-ico { width:38px;height:38px;background:#f8f9fa;border-radius:9px;display:flex;align-items:center;justify-content:center; }
.dash-empty-title { font-size:12px;font-weight:700;color:#111827; }
.dash-empty-sub { font-size:11px;color:#6b7280; }
.dash-quick { background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:14px; }
.dash-quick-head { display:flex;align-items:center;gap:6px;font-size:11px;font-weight:700;color:#111827;margin-bottom:10px; }
.dash-qa-list { display:flex;flex-direction:column;gap:6px; }
.dqa { display:flex;align-items:center;justify-content:center;gap:6px;padding:8px 12px;border-radius:6px;font-size:11px;font-weight:600;cursor:default;width:100%; }
.dqa.primary { background:#0066ff;color:#fff; }
.dqa.outline { background:#fff;color:#0066ff;border:1.5px solid #0066ff; }
.dqa.green { background:#10b981;color:#fff; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(9,15,41,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 24px;
  width: 100%; max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 24px 80px rgba(9,15,41,.2);
  transform: translateY(20px) scale(.97);
  transition: transform .35s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text); z-index: 10;
  transition: all .2s;
}
.modal-close:hover { background: var(--bg); color: var(--dark); }
.modal-left {
  background: var(--bg);
  border-radius: 24px 0 0 24px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  border-right: 1px solid var(--border);
}
.modal-logo { display: flex; align-items: center; gap: 10px; }
.modal-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); line-height: 1.25; }
.modal-sub { font-size: 14px; color: var(--text); line-height: 1.7; margin-top: -8px; }
.modal-benefits { display: flex; flex-direction: column; gap: 16px; }
.modal-benefit { display: flex; align-items: flex-start; gap: 12px; }
.benefit-ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.benefit-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.benefit-desc { font-size: 13px; color: var(--text); line-height: 1.55; }
.modal-social { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.modal-avatars { display: flex; }
.m-av {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--white);
  margin-left: -8px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--dark);
}
.m-av:first-child { margin-left: 0; }
.modal-social span { font-size: 13px; color: var(--text); font-weight: 500; }
.modal-right { padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; }
.modal-form-head { display: flex; flex-direction: column; gap: 6px; }
.modal-step-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,254,.07); border: 1px solid rgba(0,0,254,.15);
  border-radius: 100px; padding: 3px 12px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  width: fit-content;
}
.modal-step-badge::before { content: '⚡'; }
.modal-form-head h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.modal-form-head p { font-size: 13px; color: var(--text); }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mf-group { display: flex; flex-direction: column; gap: 5px; }
.mf-group label { font-size: 12px; font-weight: 600; color: var(--dark); }
.req { color: var(--blue); }
.mf-group input,
.mf-group select {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px;
  font-family: var(--font); font-size: 14px; color: var(--dark);
  outline: none; transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.mf-group input:focus, .mf-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,0,254,.08);
}
.mf-group input::placeholder { color: #bbbdd0; }
.time-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.time-chip {
  padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); color: var(--text); cursor: pointer;
  background: var(--white); transition: all .2s; user-select: none;
}
.time-chip.selected { background: var(--blue); color: #fff; border-color: var(--blue); }
.time-chip:hover:not(.selected) { border-color: #c0c0d0; }
.modal-privacy {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text); opacity: .7;
  justify-content: center; margin-top: -4px;
}
.modal-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 10px;
  flex: 1; padding: 20px 0;
}
.modal-success.show { display: flex; }
.success-ico { font-size: 52px; }
.modal-success h4 { font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.modal-success p { font-size: 15px; color: var(--text); line-height: 1.7; max-width: 300px; }

/* ─── ANIMAÇÕES ─── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 800px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-burger { display: flex; }
  .hero-h1 { font-size: 2.2rem; }
  .mock-sidebar { display: none; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 0 20px; }
}
@media (max-width: 700px) {
  .modal-box { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-left { display: none; }
  .modal-right { padding: 32px 24px; }
  .mf-row { grid-template-columns: 1fr; }
  .modal-box { border-radius: 20px; }
}
@media (max-width: 520px) {
  .hero-h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .integrations { gap: 6px; }
  .mock-cal-wrap { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SEÇÕES ABAIXO DO HERO
══════════════════════════════════════════ */

/* ─── SHARED ─── */
.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 40px;
}
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,0,254,.06);
  border: 1px solid rgba(0,0,254,.15);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-intro { margin-bottom: 56px; }
.section-intro.center { text-align: center; }
.section-h2 { font-size: 38px; font-weight: 800; color: var(--dark); line-height: 1.15; margin: 0 0 12px; }
.section-sub { font-size: 16px; color: var(--text); line-height: 1.65; max-width: 560px; }
.section-intro.center .section-sub { margin: 0 auto; }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 36px;
  color: #9ca3af;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.marquee-item:last-child { border-right: none; }
.marquee-item svg { display: block; }
.marquee-label { font-size: 12px; font-weight: 500; white-space: nowrap; }

/* ─── FUNCIONALIDADES ─── */
#funcionalidades { background: var(--bg); }

.ft-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 20px;
}
.ft-header-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  text-decoration: none; white-space: nowrap; padding-bottom: 6px;
  transition: gap .2s;
}
.ft-header-link:hover { gap: 10px; }

/* Bento grid */
.ft-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.ft-bento-card {
  background: #f8f9fa; border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 22px 26px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit; position: relative;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.ft-bento-card:hover { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.ft-bento-card.featured {
  grid-column: 1 / 3; grid-row: 1;
  background: var(--white); gap: 14px; padding: 32px 32px 36px;
}
.ft-bento-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.ft-bento-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.ft-bento-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.ft-bento-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.ft-bento-ind {
  position: absolute; top: 18px; right: 20px;
  font-size: 16px; color: var(--text); opacity: .35; line-height: 1;
}
.ft-bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ft-bento-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-top: 4px; }
.ft-bento-card.featured .ft-bento-name { font-size: 22px; font-weight: 800; }
.ft-bento-desc { font-size: 13px; color: var(--text); line-height: 1.65; flex: 1; }
.ft-bento-card.featured .ft-bento-desc { font-size: 14px; max-width: 480px; }
.ft-bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  margin-top: 10px; transition: gap .2s;
}
.ft-bento-card:hover .ft-bento-link { gap: 10px; }

/* ─── DESTAQUE TOOL ─── */
#destaque-ft { background: var(--white); }
#destaque-ft .section-wrap { padding: 120px 40px; }
.dft-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.dft-mockup-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(0,0,0,.10);
}
.dft-screen { overflow: hidden; }
.dft-pill {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--blue); border-radius: 12px;
  padding: 12px 18px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 6px 20px rgba(0,102,255,.35);
}
.dft-pill-val { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.dft-pill-label { font-size: 11px; color: rgba(255,255,255,.8); line-height: 1.4; }
.dft-content { display: flex; flex-direction: column; gap: 20px; }
.dft-title { font-size: 32px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.dft-list { display: flex; flex-direction: column; gap: 18px; }
.dft-list-item { display: flex; align-items: flex-start; gap: 12px; }
.dft-list-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,102,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; color: var(--blue);
}
.dft-list-text { display: flex; flex-direction: column; gap: 2px; }
.dft-list-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.dft-list-desc { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ── Week calendar mockup ── */
.cal-mockup-container { width: 100%; }
.dft-mockup-outer { position: relative; min-width: 480px; }

.cal-week { background: var(--white); }
.cal-week-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--white);
}
.cal-week-title { font-size: 12px; font-weight: 700; color: var(--dark); letter-spacing: -.01em; }
.cal-week-navs { display: flex; gap: 4px; }
.cal-week-btn {
  padding: 5px 11px; border: 1px solid var(--border); border-radius: 7px;
  font-size: 11px; font-weight: 600; color: var(--text); background: var(--white);
  font-family: inherit; cursor: default;
}
.cal-week-btn:hover { background: var(--bg); color: var(--dark); }
.cal-week-grid {
  display: grid;
  grid-template-columns: 44px repeat(6, 1fr);
}
.cal-week-th {
  padding: 10px 4px 8px; text-align: center;
  border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb;
  background: #f8f9fa;
}
.cal-week-th:last-child { border-right: none; }
.cal-week-th .th-day {
  font-size: 9px; font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 3px;
}
.cal-week-th .th-num {
  font-size: 17px; font-weight: 800; color: #111827;
  display: block; line-height: 1; letter-spacing: -.02em;
}
.cal-week-th.today { background: #f0f4ff; }
.cal-week-th.today .th-num {
  color: #fff; background: var(--blue);
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; margin: 0 auto;
}
.cal-week-th.th-empty { background: #f8f9fa; }
.cal-tl {
  padding: 6px 8px 0; text-align: right; font-size: 9px; font-weight: 600; color: #9ca3af;
  border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb;
  background: #f8f9fa; white-space: nowrap; letter-spacing: -.01em;
}
.cal-cell {
  border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb;
  padding: 4px; min-height: 52px; position: relative;
}
.cal-cell:last-child { border-right: none; }
.cal-cell.today { background: #f8faff; }
.cal-appt {
  border-radius: 6px; padding: 5px 8px; height: calc(100% - 2px);
  display: flex; flex-direction: column; gap: 2px;
  border-left: 3px solid; overflow: hidden;
}
.cal-appt.c { background: rgba(0,102,255,.08); border-left-color: var(--blue); }
.cal-appt.a { background: rgba(16,185,129,.10); border-left-color: #10b981; }
.cal-appt.r { background: rgba(124,58,237,.09); border-left-color: #7c3aed; }
.cal-appt-hr { font-size: 9px; font-weight: 700; letter-spacing: .01em; }
.cal-appt.c .cal-appt-hr { color: var(--blue); }
.cal-appt.a .cal-appt-hr { color: #059669; }
.cal-appt.r .cal-appt-hr { color: #6d28d9; }
.cal-appt-nm { font-size: 10px; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -.01em; }
.cal-appt-tp { font-size: 9px; color: var(--text); font-weight: 500; }
/* Now line */
.cal-cell.today.now::after {
  content: ''; position: absolute; left: 0; right: 0;
  top: 62%; height: 1.5px; background: #ef4444; z-index: 2;
}
.cal-cell.today.now::before {
  content: ''; position: absolute; left: -1px;
  top: calc(62% - 4px); width: 8px; height: 8px;
  background: #ef4444; border-radius: 50%; z-index: 3;
}
/* Legend */
.cal-week-legend {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 8px 14px; border-top: 1px solid var(--border); background: var(--white);
}
.cal-week-legend span { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 500; color: var(--text); }
.cal-ldot { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
/* Floating notification */
.cal-notif {
  position: absolute; bottom: 16px; right: -32px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  border: 1px solid #e5e7eb;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  width: 220px; z-index: 10;
  opacity: 0;
  animation: notifIn .7s 1.6s cubic-bezier(.22,.68,0,1.2) forwards;
}
@keyframes notifIn {
  0%   { opacity: 0; transform: translateX(16px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0); }
}
.cal-notif-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: #25d366; display: flex; align-items: center; justify-content: center;
}
.cal-notif-body { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.cal-notif-title { font-size: 11px; font-weight: 700; color: var(--dark); letter-spacing: -.01em; }
.cal-notif-sub { font-size: 10px; color: var(--text); font-weight: 500; }
.cal-notif-live {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
  animation: livePulse 2s 2.5s ease infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.6); }
}
/* Stat callout in text content */
.dft-stat {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(0,102,255,.06); border: 1px solid rgba(0,102,255,.15);
  border-radius: 10px; padding: 10px 16px;
}
.dft-stat-val { font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.dft-stat-label { font-size: 12px; font-weight: 600; color: var(--dark); }

/* ─── COMPARATIVO ─── */
#comparativo { background: var(--bg); }
.comp-intro { text-align: center; margin-bottom: 48px; }
.comp-intro .section-sub { margin: 0 auto; }
.comp-table {
  max-width: 780px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.comp-head {
  display: grid; grid-template-columns: 1fr 180px 180px;
  background: var(--white);
}
.comp-head-feat { padding: 16px 24px; }
.comp-head-guru {
  padding: 16px 12px; text-align: center;
  background: var(--blue); display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.comp-head-guru-name { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.comp-head-guru-sub { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.75); }
.comp-head-others {
  padding: 16px 12px; text-align: center;
  background: #f8f9fa; display: flex; flex-direction: column; align-items: center; gap: 3px;
  border-left: 1px solid var(--border);
}
.comp-head-others-name { font-size: 13px; font-weight: 700; color: #6b7280; }
.comp-head-others-sub { font-size: 10px; font-weight: 500; color: #9ca3af; }
.comp-row {
  display: grid; grid-template-columns: 1fr 180px 180px;
  background: var(--white); border-top: 1px solid var(--border);
}
.comp-row:nth-child(even) { background: #fafafa; }
.comp-feat {
  padding: 14px 24px; display: flex; flex-direction: column; gap: 2px;
}
.comp-feat-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.comp-feat-desc { font-size: 11px; color: var(--text); font-weight: 400; }
.comp-cell {
  padding: 14px 12px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border);
}
.comp-cell.guru { background: rgba(0,102,255,.03); }
.comp-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(16,185,129,.12);
}
.comp-yes svg { stroke: #059669; }
.comp-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(239,68,68,.08);
}
.comp-no svg { stroke: #ef4444; }
.comp-partial {
  font-size: 11px; font-weight: 600; color: #f59e0b;
  background: rgba(245,158,11,.08); border-radius: 20px;
  padding: 3px 10px; white-space: nowrap;
}
.comp-foot {
  padding: 20px 24px; background: var(--white);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.comp-foot-note { font-size: 12px; color: var(--text); }
.comp-foot-note strong { color: var(--dark); font-weight: 700; }

/* ─── SEGMENTOS HOME ─── */
#segmentos-home { background: var(--white); }
.segh-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 20px;
}
.segh-track {
  display: flex; gap: 16px;
  overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.segh-track::-webkit-scrollbar { height: 4px; }
.segh-track::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.segh-track::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
.segh-card {
  flex-shrink: 0; width: 180px; height: 240px;
  border-radius: 16px; overflow: hidden;
  position: relative; display: block;
  scroll-snap-align: start; text-decoration: none;
  box-shadow: 0 2px 12px rgba(9,15,41,.08);
  transition: transform .3s, box-shadow .3s;
}
.segh-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(9,15,41,.14); }
.segh-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.segh-card:hover img { transform: scale(1.06); }
.segh-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(9,15,41,.75) 0%, transparent 100%);
  color: #fff; font-size: 13px; font-weight: 700;
  font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
}

/* ─── HIGHLIGHT SECTIONS ─── */
.section-highlight { background: var(--bg); }
.section-highlight--alt { background: var(--white); }
.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.highlight-inner--reverse { direction: rtl; }
.highlight-inner--reverse > * { direction: ltr; }
.highlight-text { display: flex; flex-direction: column; gap: 20px; }
.highlight-h2 { font-size: 34px; font-weight: 800; color: var(--dark); line-height: 1.2; margin: 0; }
.highlight-text p { font-size: 16px; color: var(--text); line-height: 1.65; margin: 0; }
.highlight-visual { display: flex; align-items: center; justify-content: center; }

/* NF Preview card */
.nf-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(9,15,41,.08);
}
.nf-preview-header {
  background: rgba(245,158,11,.08);
  border-bottom: 1px solid rgba(245,158,11,.2);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--dark);
}
.nf-status-badge {
  margin-left: auto;
  background: rgba(245,158,11,.15);
  color: #b45309;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.nf-preview-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.nf-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.nf-row span { color: var(--text); }
.nf-row strong { color: var(--dark); font-weight: 600; }
.nf-preview-footer {
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text);
}

/* Central Preview card */
.central-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px;
  width: 100%; max-width: 340px;
  box-shadow: 0 8px 32px rgba(9,15,41,.08);
  display: flex; flex-direction: column; gap: 4px;
}
.central-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px; font-weight: 600; color: var(--dark);
  background: var(--bg);
}
.central-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-blue   { background: rgba(0,102,255,.12); color: #0066ff; }
.ci-orange { background: rgba(245,158,11,.12); color: #d97706; }
.ci-green  { background: rgba(16,185,129,.12); color: #059669; }
.ci-purple { background: rgba(102,126,234,.12); color: #667eea; }
.central-badge {
  text-align: center;
  font-size: 12px; font-weight: 700;
  color: var(--blue);
  background: rgba(0,0,254,.06);
  border: 1px solid rgba(0,0,254,.15);
  border-radius: 100px;
  padding: 8px 16px;
  margin: 4px 8px 8px;
}

/* ─── SEGURANÇA / LGPD ─── */
#lgpd { background: #0f1117; }
#lgpd .section-label { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.12); }
#lgpd .section-h2 { color: #fff; }
#lgpd .section-sub { color: rgba(255,255,255,.5); }
.sec-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.sec-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid #818cf8;
  border-radius: 14px;
  padding: 24px 20px;
}
.sec-card-icon { color: #818cf8; margin-bottom: 16px; }
.sec-card-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sec-card-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0; }

/* ─── DEPOIMENTOS ─── */
#depoimentos { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.test-stars { display: flex; gap: 3px; }
.test-star { color: #f59e0b; font-size: 13px; }
.test-quote {
  font-size: 14px; color: var(--dark); line-height: 1.7; flex: 1; margin: 0;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.test-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.test-role { font-size: 12px; color: var(--text); }

/* ─── PLANOS ─── */
#planos { background: var(--white); }
.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.billing-toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px; gap: 4px;
}
.billing-btn {
  padding: 8px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; background: none; border: none;
  color: var(--text); transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.billing-btn.active { background: var(--white); color: var(--dark); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.billing-badge {
  background: rgba(0,0,254,.1); color: var(--blue);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.plan-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.plan-card--featured {
  background: var(--dark);
  border-color: var(--dark);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-header { display: flex; flex-direction: column; gap: 4px; }
.plan-name { font-size: 18px; font-weight: 800; color: var(--dark); }
.plan-card--featured .plan-name { color: #fff; }
.plan-desc { font-size: 13px; color: var(--text); }
.plan-card--featured .plan-desc { color: rgba(255,255,255,.55); }
.plan-price { display: flex; align-items: baseline; gap: 3px; }
.plan-price-currency { font-size: 18px; font-weight: 700; color: var(--dark); }
.plan-card--featured .plan-price-currency { color: #fff; }
.plan-price-val { font-size: 44px; font-weight: 800; color: var(--dark); line-height: 1; }
.plan-card--featured .plan-price-val { color: #fff; }
.plan-price-period { font-size: 13px; color: var(--text); align-self: flex-end; padding-bottom: 6px; }
.plan-card--featured .plan-price-period { color: rgba(255,255,255,.55); }
.plan-annual-note { font-size: 12px; color: var(--text); margin-top: -12px; }
.plan-card--featured .plan-annual-note { color: rgba(255,255,255,.5); }
.plan-annual-note.hidden { display: none; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text); line-height: 1.45;
}
.plan-card--featured .plan-features li { color: rgba(255,255,255,.75); }
.plan-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%;
  background: rgba(0,0,254,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230000fe' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan-card--featured .plan-features li::before {
  background: rgba(255,255,255,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan-btn { width: 100%; justify-content: center; padding: 13px 20px; border-radius: 12px !important; }

/* ─── FAQ ─── */
#faq { background: var(--bg); }
.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-intro .section-h2 { font-size: 32px; }
.faq-intro .section-sub { margin-top: 12px; }
.faq-list { display: flex; flex-direction: column; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-child { border-top: 1px solid var(--border); }
summary.faq-q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px;
  font-size: 15px; font-weight: 600; color: var(--dark);
  cursor: pointer; user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
.faq-q-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: transform .2s;
}
details[open] .faq-q-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text); line-height: 1.65; padding: 0 4px 18px; margin: 0; }

/* ─── CTA FINAL ─── */
.section-cta { background: var(--white); }
.cta-box {
  background: var(--dark);
  border-radius: 24px;
  padding: 72px 64px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-box .section-label { color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.cta-box .section-h2 { color: #fff; }
.cta-box .section-sub { color: rgba(255,255,255,.65); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ─── FOOTER ─── */
footer { background: var(--dark); }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.footer-brand-bar {
  display: flex; align-items: center; gap: 32px;
  padding: 52px 0 40px; flex-wrap: wrap;
}
.footer-brand-bar .nav-logo { flex-shrink: 0; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.footer-soc {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s;
}
.footer-soc:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.25); }
.footer-divider { height: 1px; background: rgba(255,255,255,.08); }
.footer-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; padding: 48px 0; }
.footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-see-all { color: var(--blue) !important; font-weight: 500; }
.footer-see-all:hover { opacity: .8; }
.footer-logo-name { color: #fff !important; }
.footer-logo-name small { color: rgba(255,255,255,.45) !important; }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ─── RESPONSIVE (novas seções) ─── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .highlight-inner, .highlight-inner--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .sec-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-h2 { font-size: 30px; }
  .section-wrap { padding: 64px 24px; }
  .ft-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ft-bento { grid-template-columns: 1fr 1fr; }
  .ft-bento-card.featured { grid-column: 1 / 3; grid-row: auto; }
  .ft-bento-card:nth-child(2),
  .ft-bento-card:nth-child(3),
  .ft-bento-card:nth-child(4),
  .ft-bento-card:nth-child(5) { grid-column: auto; grid-row: auto; }
  .dft-inner { grid-template-columns: 1fr; gap: 40px; }
  .cal-mockup-container { overflow: hidden; }
  #destaque-ft .section-wrap { overflow-x: hidden; }
  .dft-title { font-size: 26px; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .sec-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-brand-bar { padding: 40px 0 28px; gap: 16px; }
  .footer-socials { margin-left: 0; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 36px 0; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
  .cta-box { padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .ft-bento { grid-template-columns: 1fr; }
  .ft-bento-card.featured { grid-column: 1; }
  .comp-head,
  .comp-row { grid-template-columns: 1fr 80px 80px; }
  .comp-head-feat { padding: 12px 14px; }
  .comp-feat { padding: 12px 14px; }
  .comp-cell { padding: 12px 8px; }
  .comp-head-guru,
  .comp-head-others { padding: 12px 6px; }
  .comp-head-guru-name,
  .comp-head-others-name { font-size: 11px; }
  .comp-partial { font-size: 10px; padding: 3px 6px; }
  .comp-foot { flex-direction: column; align-items: flex-start; }
}
