/* ============================================================
   VOCATEL · Novo site · Design system
   Paleta oficial: navy #0d2340 · lima #c9f227 · verde #7ab800
   ============================================================ */

:root {
  --navy-950: #060f1d;
  --navy-900: #081627;
  --navy-850: #0a1c33;
  --navy-800: #0d2340;
  --navy-700: #143156;
  --navy-600: #1c4173;
  --lime: #c9f227;
  --lime-soft: #e2fb7a;
  --green: #7ab800;
  --green-700: #659c00;
  --ink: #0d2340;
  --slate: #46586f;
  --muted: #64748b;
  --line: #e3e9f2;
  --bg: #f6f8fb;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px -6px rgba(13, 35, 64, 0.10);
  --shadow-lg: 0 28px 70px -18px rgba(13, 35, 64, 0.24);
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --topbar-h: 78px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* html + body travados na largura da tela: sem isso o celular "encolhe" o site
   inteiro quando qualquer elemento vaza para a direita */
html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}
main { overflow-x: clip; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--lime); color: var(--navy-800); }

.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }

/* Entrega por partes: item visível no menu, mas sem clique */
.link-off { pointer-events: none; cursor: default; }

/* Chips de confiança em linha única (heroes com espaço apertado) */
.trust-compact { flex-wrap: nowrap; }
.trust-compact .chip { font-size: 0.8rem; padding: 0.42rem 0.8rem; white-space: nowrap; }
@media (max-width: 760px) {
  .trust-compact { flex-wrap: wrap; }
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--lime); color: var(--navy-800); padding: 0.6rem 1rem; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-lime {
  background: var(--lime); color: var(--navy-800);
  box-shadow: 0 0 0 0 rgba(201, 242, 39, 0);
}
.btn-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(201, 242, 39, 0.55);
}

.btn-ghost {
  color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-sm { padding: 0.7rem 1.15rem; font-size: 0.9rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; color: var(--green-700);
}
.link-arrow svg { transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Cabeçalhos de seção ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--lime); }

.section { padding: 6rem 0; }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; margin-bottom: 1rem; }
.section-head p { font-size: 1.12rem; color: var(--slate); }

.grad-text {
  background: linear-gradient(92deg, var(--green) 0%, var(--lime) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--topbar-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(8, 22, 39, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.topbar-inner { display: flex; align-items: center; gap: 2rem; height: 100%; }

.brand { flex-shrink: 0; }
.brand img {
  width: 320px; height: auto;
  transform: translateY(20px);
  transition: width 0.35s ease, transform 0.35s ease;
}
.topbar.scrolled .brand img { width: 172px; transform: translateY(0); }

.nav { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; }

.nav-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85); font-weight: 500; font-size: 0.96rem;
  padding: 0.55rem 0.9rem; border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--lime); background: rgba(255, 255, 255, 0.06); }

.topbar-actions { display: flex; align-items: center; gap: 0.8rem; }

/* Dropdowns */
.nav-item { position: relative; }
.drop {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 300px;
  background: rgba(10, 28, 51, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 0.5rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.drop-right { left: auto; right: 0; }
.nav-item.open .drop, .nav-item:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.open .chev, .nav-item:hover .chev { transform: rotate(180deg); }
.chev { transition: transform 0.2s ease; }

.drop-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 0.9rem; border-radius: 11px;
  color: var(--white);
  transition: background 0.18s ease;
}
.drop-item:hover { background: rgba(201, 242, 39, 0.1); }
.drop-item strong { display: block; font-size: 0.95rem; font-weight: 600; }
.drop-item small { display: block; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

.drop-ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  background: rgba(201, 242, 39, 0.12);
  position: relative;
}
.drop-ico::after {
  content: ''; position: absolute; inset: 0;
  background-color: var(--lime);
  -webkit-mask: var(--ico) center / 20px 20px no-repeat;
  mask: var(--ico) center / 20px 20px no-repeat;
}
.ico-chat { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E"); }
.ico-pabx { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.ico-sac { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l3 3 8-8'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E"); }
.ico-api { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M8 21H3v-5'/%3E%3Cpath d='M21 3l-7 7'/%3E%3Cpath d='M3 21l7-7'/%3E%3C/svg%3E"); }

.ico-doc { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7l-5-5z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M9 13h6M9 17h4'/%3E%3C/svg%3E"); }
.ico-hand { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 12V6a2 2 0 0 1 4 0v5'/%3E%3Cpath d='M12 11V5a2 2 0 0 1 4 0v6'/%3E%3Cpath d='M16 11.5V7a2 2 0 0 1 4 0v7a7 7 0 0 1-7 7h-1c-3 0-5-1.5-6.6-4.2L3.2 13a1.8 1.8 0 0 1 3-1.9L8 13'/%3E%3C/svg%3E"); }
.ico-brain { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4M4.9 4.9l2.8 2.8M16.3 16.3l2.8 2.8M19.1 4.9l-2.8 2.8M7.7 16.3l-2.8 2.8'/%3E%3C/svg%3E"); }
.ico-swap { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3l4 4-4 4'/%3E%3Cpath d='M21 7H8'/%3E%3Cpath d='M7 21l-4-4 4-4'/%3E%3Cpath d='M3 17h13'/%3E%3C/svg%3E"); }
.ico-eye { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.ico-task { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='3'/%3E%3Cpath d='M8 10l2.5 2.5L15 8'/%3E%3Cpath d='M8 16h8'/%3E%3C/svg%3E"); }
.ico-chart { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20h18'/%3E%3Cpath d='M6 20V10M12 20V4M18 20v-8'/%3E%3C/svg%3E"); }
.ico-shield2 { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 4.5-3 8-7 9-4-1-7-4.5-7-9V7l7-4z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
.ico-gauge { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21a9 9 0 1 1 9-9'/%3E%3Cpath d='M12 12l5-3'/%3E%3C/svg%3E"); }
.ico-star { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.7 5.6 6.3.9-4.5 4.4 1 6.1-5.5-2.9-5.5 2.9 1-6.1L3 9.5l6.3-.9L12 3z'/%3E%3C/svg%3E"); }

/* Menu mobile */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.6rem; }
.menu-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--topbar-h) 0 0 0; z-index: 99;
  background: var(--navy-900);
  padding: 2rem 1.5rem 3rem;
  overflow-y: auto;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu a { color: var(--white); font-size: 1.15rem; font-weight: 500; padding: 0.7rem 0.4rem; border-radius: 8px; }
.mobile-menu a:hover { color: var(--lime); }
.mm-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4); margin: 1.4rem 0 0.3rem 0.4rem;
}
.mm-cta { margin-top: 2rem; text-align: center; color: var(--navy-800) !important; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 242, 39, 0.13), transparent 60%),
    radial-gradient(700px 600px at -10% 40%, rgba(28, 65, 115, 0.55), transparent 65%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-850) 100%);
  color: var(--white);
  padding: calc(var(--topbar-h) + 5rem) 0 6.5rem;
  overflow: hidden;
}

.hero::before {
  /* grade sutil */
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
  will-change: transform;
}
.orb-lime { width: 420px; height: 420px; right: -80px; top: -120px; background: rgba(201, 242, 39, 0.16); }
.orb-blue { width: 520px; height: 520px; left: -180px; bottom: -220px; background: rgba(28, 65, 115, 0.5); }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: 1.18rem; color: rgba(255, 255, 255, 0.78);
  max-width: 540px; margin-bottom: 2.2rem;
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.4rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.95rem; border-radius: 999px;
}
.chip svg { color: var(--lime); flex-shrink: 0; }

/* ---------- Composição de mockups ---------- */

.hero-visual { position: relative; min-height: 560px; }
.hero-visual [data-depth] { will-change: transform; }

.mock {
  position: absolute;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.55);
}
.feature-visual .mock, .mock-phone { max-width: 100%; }

/* Chat (peça principal) */
.mock-chat {
  width: 340px; right: 24px; top: 40px;
  background: var(--white); color: var(--ink);
  padding: 1.1rem;
  transform: rotate(2deg);
  animation: float-a 7s ease-in-out infinite;
  z-index: 3;
}
.mock-chat-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line); margin-bottom: 0.9rem;
}
.mock-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, #ffd08a, #ffa02e 55%, #e07a00);
  border: 2.5px solid var(--navy-800);
}
.mock-chat-head strong { display: block; font-size: 0.92rem; }
.mock-chat-head small { display: flex; align-items: center; gap: 0.35rem; font-size: 0.76rem; color: var(--green-700); font-weight: 600; }
.dot-on { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; display: inline-block; }

.bubble {
  max-width: 85%; font-size: 0.85rem; line-height: 1.45;
  padding: 0.65rem 0.85rem; border-radius: 14px; margin-bottom: 0.55rem;
}
.bubble-in { background: #eef2f7; border-bottom-left-radius: 4px; }
.bubble-out {
  background: linear-gradient(135deg, #f3fcd4, #e8f9b0);
  border-bottom-right-radius: 4px; margin-left: auto;
}
.bubble-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--green-700); background: rgba(122, 184, 0, 0.14);
  padding: 0.14rem 0.45rem; border-radius: 999px; margin-bottom: 0.3rem;
}
.typing { display: inline-flex; gap: 4px; padding: 0.7rem 0.9rem; background: #eef2f7; border-radius: 14px; border-bottom-left-radius: 4px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #9fb0c4; animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.2s; }
.typing i:nth-child(3) { animation-delay: 0.4s; }

.mock-input {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 0.9rem; padding: 0.6rem 0.9rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.8rem; color: var(--muted);
}
.mock-input .send {
  width: 26px; height: 26px; border-radius: 50%; margin-left: auto; flex-shrink: 0;
  background: var(--navy-800);
  position: relative;
}
.mock-input .send::after {
  content: ''; position: absolute; inset: 0;
  background: var(--lime);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 13px 13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 13px 13px no-repeat;
}

/* Chamada ativa */
.mock-call {
  width: 250px; left: 0; top: 0;
  background: rgba(10, 28, 51, 0.92); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.1rem;
  transform: rotate(-3deg);
  animation: float-b 8s ease-in-out infinite;
  z-index: 2;
}
.mock-call-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.mock-call-top small { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); }
.mock-call-timer { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); font-variant-numeric: tabular-nums; }
.mock-call strong { display: block; font-size: 0.95rem; margin-bottom: 0.8rem; }

.wave { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin-bottom: 0.9rem; }
.wave i { flex: 1; background: linear-gradient(180deg, var(--lime), var(--green)); border-radius: 3px; animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(odd) { animation-delay: 0.15s; }
.wave i:nth-child(3n) { animation-delay: 0.3s; }
.wave i:nth-child(4n) { animation-delay: 0.45s; }

.mock-call-actions { display: flex; gap: 0.5rem; }
.call-btn {
  flex: 1; height: 34px; border-radius: 9px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1);
}
.call-btn.end { background: #e5484d; border-color: #e5484d; }

/* Kanban */
.mock-kanban {
  width: 300px; left: 16px; bottom: 10px;
  background: var(--white); color: var(--ink);
  padding: 1rem;
  transform: rotate(-2deg);
  animation: float-a 9s ease-in-out infinite reverse;
  z-index: 4;
}
.mock-kanban-title { font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.7rem; }
.kanban-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.kanban-col small { display: block; font-size: 0.64rem; font-weight: 700; color: var(--muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.kanban-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 0.45rem 0.5rem; margin-bottom: 0.4rem;
}
.kanban-card i { display: block; height: 5px; border-radius: 3px; background: #d4dce8; margin-bottom: 4px; }
.kanban-card i:last-child { width: 60%; margin-bottom: 0; }
.kanban-card.hot { border-color: rgba(122, 184, 0, 0.5); background: #f6fce3; }
.kanban-card.hot i:first-child { background: var(--green); width: 40%; }

/* Chips flutuantes de métrica */
.float-chip {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white); color: var(--ink);
  border-radius: 14px; padding: 0.65rem 0.95rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem; font-weight: 600;
  animation: float-b 6.5s ease-in-out infinite;
}
.float-chip .fc-ico {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: rgba(122, 184, 0, 0.15);
  display: grid; place-items: center; color: var(--green-700);
}
.float-chip strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.float-chip small { color: var(--muted); font-weight: 500; font-size: 0.72rem; }
.fc-uptime { right: 0; bottom: 84px; animation-delay: 0.8s; }
.fc-calls { right: 208px; top: -18px; animation-delay: 1.6s; }

@keyframes float-a { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes float-b { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes blink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }
@keyframes wave { 0%, 100% { height: 22%; } 50% { height: 100%; } }
.wave i { height: 30%; }

/* ============================================================
   FAIXA DE NÚMEROS
   ============================================================ */

.stats {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 260px at 15% 0%, rgba(201, 242, 39, 0.09), transparent 65%),
    radial-gradient(600px 300px at 90% 100%, rgba(28, 65, 115, 0.5), transparent 70%),
    var(--navy-950);
  color: var(--white); padding: 4.2rem 0;
}
.stats::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 85% 90% at 50% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 40%, #000 30%, transparent 85%);
}

/* Limões da logo rolando pelo fundo */
.stats-lemons { position: absolute; inset: 0; pointer-events: none; }
.lemon { position: absolute; will-change: transform; }
.lemon-a {
  bottom: -140px; left: 0; opacity: 0.16;
  animation: lemon-roll 40s linear infinite alternate;
}
.lemon-b {
  top: -70px; left: 0; opacity: 0.1;
  animation: lemon-roll-b 30s linear infinite alternate-reverse;
}
@keyframes lemon-roll {
  0% { transform: translateX(4vw) rotate(0deg); }
  100% { transform: translateX(76vw) rotate(720deg); }
}
@keyframes lemon-roll-b {
  0% { transform: translateX(10vw) rotate(0deg); }
  100% { transform: translateX(82vw) rotate(-540deg); }
}

.stats .container { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }

.stat-card {
  position: relative;
  background: rgba(8, 22, 39, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1.25rem 1.4rem 1.1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 242, 39, 0.35);
  background: rgba(8, 22, 39, 0.75);
}

.stat-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.45rem; }
.stat-ico {
  display: grid; place-items: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(201, 242, 39, 0.12);
  color: var(--lime);
}
.stat-ring { background: none; width: 40px; height: 40px; }
.ring-bg { stroke: rgba(255, 255, 255, 0.12); }
.ring-fill {
  stroke: var(--lime);
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
  filter: drop-shadow(0 0 5px rgba(201, 242, 39, 0.6));
}
.stat-card.go .ring-fill { stroke-dashoffset: 0.15; }

.stat-num {
  display: flex; align-items: baseline; gap: 0.3rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.05;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat-num .plus, .stat-num .unit { color: var(--lime); }
.stat-num .unit { font-size: 0.55em; font-weight: 700; }
.stat-label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); }

/* Odômetro: cada dígito rola como caça-níquel */
.odo-col { display: inline-block; overflow: hidden; height: 1.05em; vertical-align: bottom; }
.odo-strip {
  display: flex; flex-direction: column;
  transform: translateY(0);
  transition: transform 1.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo-strip i { display: block; height: 1.05em; line-height: 1.05; font-style: normal; }
.odo-sep { display: inline-block; }

/* Visualizações por card */
.viz { margin-top: 0.85rem; }

.viz-line .viz-track {
  display: block; height: 5px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.1); overflow: hidden;
}
.viz-line .viz-track i {
  display: block; height: 100%; width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.stat-card.go .viz-line .viz-track i { width: 100%; }
.viz-legend { display: flex; justify-content: space-between; margin-top: 0.4rem; }
.viz-legend em { font-style: normal; font-size: 0.68rem; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.08em; text-transform: uppercase; }

.viz-eq { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.viz-eq i {
  flex: 1; border-radius: 2px;
  background: linear-gradient(180deg, var(--lime), var(--green));
  opacity: 0.75;
  animation: eq-bar 1.3s ease-in-out infinite;
}
.viz-eq i:nth-child(2n) { animation-delay: 0.18s; }
.viz-eq i:nth-child(3n) { animation-delay: 0.34s; }
.viz-eq i:nth-child(5n) { animation-delay: 0.5s; }
@keyframes eq-bar { 0%, 100% { height: 25%; } 50% { height: 100%; } }
.viz-eq i { height: 30%; }

.viz-dots { display: flex; gap: 6px; align-items: center; height: 26px; }
.viz-dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201, 242, 39, 0.35);
  animation: dot-pulse 1.8s ease-in-out infinite;
}
.viz-dots i:nth-child(2) { animation-delay: 0.15s; }
.viz-dots i:nth-child(3) { animation-delay: 0.3s; }
.viz-dots i:nth-child(4) { animation-delay: 0.45s; }
.viz-dots i:nth-child(5) { animation-delay: 0.6s; }
.viz-dots i:nth-child(6) { animation-delay: 0.75s; }
.viz-dots i:nth-child(7) { animation-delay: 0.9s; }
.viz-dots i:nth-child(8) { animation-delay: 1.05s; }
.viz-dots i:nth-child(9) { animation-delay: 1.2s; }
.viz-dots i:nth-child(10) { animation-delay: 1.35s; }
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); background: rgba(201, 242, 39, 0.35); }
  50% { transform: scale(1.5); background: var(--lime); }
}

.viz-ticks { display: flex; gap: 3px; align-items: flex-end; height: 26px; }
.viz-ticks i {
  flex: 1; height: 60%; border-radius: 2px;
  background: rgba(201, 242, 39, 0.55);
  opacity: 0; transform: scaleY(0.3); transform-origin: bottom;
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.viz-ticks i:nth-child(odd) { height: 78%; }
.stat-card.go .viz-ticks i { opacity: 1; transform: scaleY(1); }
.viz-ticks i:nth-child(n) { transition-delay: 0.05s; }
.viz-ticks i:nth-child(n+5) { transition-delay: 0.18s; }
.viz-ticks i:nth-child(n+9) { transition-delay: 0.32s; }
.viz-ticks i:nth-child(n+13) { transition-delay: 0.46s; }
.viz-ticks i:nth-child(n+17) { transition-delay: 0.6s; }
.viz-ticks i:nth-child(n+21) { transition-delay: 0.74s; }
.viz-ticks i:nth-child(n+24) { transition-delay: 0.88s; }

/* ============================================================
   PRODUTOS
   ============================================================ */

.products { background: var(--bg); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.product-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 1.6rem; right: 1.6rem; height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card::after {
  content: ''; position: absolute; right: -46px; bottom: -46px; width: 190px; height: 190px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 124 124'%3E%3Ccircle cx='62' cy='62' r='44' fill='none' stroke='%230d2340' stroke-width='7'/%3E%3Ccircle cx='62' cy='62' r='33' fill='none' stroke='%230d2340' stroke-width='5'/%3E%3Cg stroke='%230d2340' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M62 62 L92 62'/%3E%3Cpath d='M62 62 L62 92'/%3E%3Cpath d='M62 62 L32 62'/%3E%3Cpath d='M62 62 L62 32'/%3E%3Cpath d='M62 62 L83 83'/%3E%3Cpath d='M62 62 L41 83'/%3E%3Cpath d='M62 62 L83 41'/%3E%3Cpath d='M62 62 L41 41'/%3E%3C/g%3E%3C/svg%3E") ;
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.05;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122, 184, 0, 0.4);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover::after { transform: rotate(24deg) scale(1.06); opacity: 0.08; }
.product-card img.logo {
  height: 82px; width: auto; margin-bottom: 1.4rem; align-self: flex-start;
  transition: transform 0.3s ease;
}
.product-card:hover img.logo { transform: scale(1.04); transform-origin: left center; }
.product-card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.product-card > p { color: var(--slate); font-size: 0.98rem; margin-bottom: 1.2rem; }

.feat-list { margin-bottom: 1.6rem; display: grid; gap: 0.5rem; }
.feat-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.97rem; color: var(--slate); }
.feat-list .check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  background: rgba(201, 242, 39, 0.35);
  display: grid; place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.product-card:hover .feat-list .check { background: var(--lime); transform: scale(1.1); }
.feat-list .check::after {
  content: ''; width: 10px; height: 10px;
  background: var(--green-700);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.product-card .link-arrow { margin-top: auto; }

/* Banner de integrações */
.integr-banner {
  position: relative; overflow: hidden;
  margin-top: 1.6rem;
  background:
    radial-gradient(600px 200px at 90% 50%, rgba(201, 242, 39, 0.14), transparent 70%),
    linear-gradient(120deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2.6rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.integr-banner h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.integr-banner p { color: rgba(255, 255, 255, 0.72); max-width: 560px; }
.integr-banner .btn { margin-left: auto; }
.ib-copy, .integr-banner > .btn { position: relative; z-index: 2; }

/* Limões do banner: um gira atrás do botão, outro espia de baixo */
.ib-lemons { position: absolute; inset: 0; pointer-events: none; }
.ib-lemon { display: block; }

.ib-spin-wrap {
  position: absolute; right: -70px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.14;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.ib-spin-wrap .ib-lemon { animation: ib-spin 26s linear infinite; }
@keyframes ib-spin { to { transform: rotate(360deg); } }
.integr-banner:hover .ib-spin-wrap {
  transform: translateY(-50%) translateX(-30px) scale(1.14);
  opacity: 0.2;
}

.ib-peek-wrap {
  position: absolute; bottom: -6px;
  transform: translateY(160px);
}

/* Espião clássico: sobe logo, se ajeita e volta */
@keyframes ib-peek {
  0%, 16% { transform: translateY(160px) rotate(-14deg); }
  28% { transform: translateY(34px) rotate(8deg); }
  38% { transform: translateY(42px) rotate(-4deg); }
  50% { transform: translateY(36px) rotate(2deg); }
  62% { transform: translateY(40px) rotate(-2deg); }
  76%, 100% { transform: translateY(160px) rotate(-14deg); }
}

/* Espião afobado: pula, some e dá uma segunda espiadinha */
@keyframes ib-peek-pop {
  0%, 12% { transform: translateY(160px) rotate(-10deg); }
  20% { transform: translateY(14px) rotate(6deg); }
  26% { transform: translateY(40px) rotate(-3deg); }
  32% { transform: translateY(28px) rotate(1deg); }
  44% { transform: translateY(160px) rotate(-10deg); }
  56% { transform: translateY(24px) rotate(4deg); }
  64% { transform: translateY(38px) rotate(-2deg); }
  76%, 100% { transform: translateY(160px) rotate(-10deg); }
}

/* Espião curioso: sobe cedo e fica balançando de um lado pro outro */
@keyframes ib-peek-wobble {
  0%, 14% { transform: translateY(160px) rotate(0deg); }
  24% { transform: translateY(44px) rotate(-9deg); }
  32% { transform: translateY(36px) rotate(9deg); }
  40% { transform: translateY(40px) rotate(-7deg); }
  48% { transform: translateY(36px) rotate(5deg); }
  56% { transform: translateY(40px) rotate(-3deg); }
  64% { transform: translateY(37px) rotate(2deg); }
  78%, 100% { transform: translateY(160px) rotate(0deg); }
}

/* ============================================================
   SEÇÕES DE DESTAQUE (LemonChat / LemonPABX)
   ============================================================ */

.feature { padding: 6.5rem 0; }
.feature-inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 4rem; align-items: center; }
.feature-inner.reverse .feature-copy { order: 2; }
.feature-inner.reverse .feature-visual { order: 1; }

.feature-copy .logo-line { height: 92px; width: auto; margin-bottom: 1.6rem; }
.feature-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.feature-copy > p { font-size: 1.08rem; color: var(--slate); margin-bottom: 1.8rem; }

.feature-bullets { display: grid; gap: 1.1rem; margin-bottom: 2.2rem; }
.feature-bullets li { display: flex; gap: 1rem; }
.fb-ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 242, 39, 0.35), rgba(122, 184, 0, 0.18));
  position: relative;
}
.fb-ico::after {
  content: ''; position: absolute; inset: 0;
  background: var(--navy-800);
  -webkit-mask: var(--ico) center / 22px 22px no-repeat;
  mask: var(--ico) center / 22px 22px no-repeat;
}
.ico-bot { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='8' width='16' height='12' rx='3'/%3E%3Cpath d='M12 8V4M8 4h8'/%3E%3Ccircle cx='9' cy='14' r='1' fill='%23000'/%3E%3Ccircle cx='15' cy='14' r='1' fill='%23000'/%3E%3C/svg%3E"); }
.ico-team { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3.2'/%3E%3Cpath d='M2.5 20c.8-3.2 3.4-5 6.5-5s5.7 1.8 6.5 5'/%3E%3Ccircle cx='17' cy='9' r='2.4'/%3E%3Cpath d='M16.5 15.2c2.4.3 4.2 1.8 5 4.3'/%3E%3C/svg%3E"); }
.ico-funnel { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4h18l-7 8v6l-4 2v-8L3 4z'/%3E%3C/svg%3E"); }
.ico-mega { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11v3l9 4V7l-9 4z'/%3E%3Cpath d='M12 7l8-4v18l-8-4'/%3E%3C/svg%3E"); }
.ico-ura { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='3'/%3E%3Ccircle cx='9' cy='9' r='0.6' fill='%23000'/%3E%3Ccircle cx='12' cy='9' r='0.6' fill='%23000'/%3E%3Ccircle cx='15' cy='9' r='0.6' fill='%23000'/%3E%3Ccircle cx='9' cy='13' r='0.6' fill='%23000'/%3E%3Ccircle cx='12' cy='13' r='0.6' fill='%23000'/%3E%3Ccircle cx='15' cy='13' r='0.6' fill='%23000'/%3E%3C/svg%3E"); }
.ico-rec { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='3.4' fill='%23000'/%3E%3C/svg%3E"); }
.ico-dial { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v3M18.4 5.6l-2.1 2.1M21 12h-3M5.6 5.6l2.1 2.1M3 12h3'/%3E%3Cpath d='M8 21a8 8 0 0 1 8 0'/%3E%3Ccircle cx='12' cy='14' r='3'/%3E%3C/svg%3E"); }
.ico-infinity { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 8a4 4 0 1 0 0 8c3 0 5-8 8-8a4 4 0 1 1 0 8c-3 0-5-8-8-8z'/%3E%3C/svg%3E"); }

.feature-bullets strong { display: block; font-size: 1.02rem; margin-bottom: 0.15rem; }
.feature-bullets p { font-size: 0.99rem; color: var(--slate); }

.feature-visual { position: relative; display: flex; justify-content: center; }

/* Softphone (mock PABX) */
.mock-phone {
  width: 380px;
  background: linear-gradient(165deg, var(--navy-850), var(--navy-800));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px; color: var(--white);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.mock-phone-status {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1rem;
}
.mock-phone-number { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.2rem; }
.mock-phone-name { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 1.2rem; }
.dialpad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; margin-bottom: 1.2rem; }
.dialpad span {
  height: 44px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px; font-weight: 600; font-size: 0.95rem;
}
.mock-phone .wave { margin-bottom: 0; height: 26px; }

.phone-side-card {
  position: absolute; z-index: 3;
  background: var(--white); color: var(--ink);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  animation: float-b 7s ease-in-out infinite;
}
.psc-rec { right: 6%; top: 8%; display: flex; align-items: center; gap: 0.5rem; }
.psc-rec .rec-dot { width: 9px; height: 9px; border-radius: 50%; background: #e5484d; animation: blink 1.4s infinite; }
.psc-queue { left: 4%; bottom: 12%; }
.psc-queue strong { font-family: var(--font-display); color: var(--green-700); }

/* ============================================================
   DUO (LemonSAC + Integrações)
   ============================================================ */

.duo { background: var(--bg); }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.duo-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.duo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.4); }
.duo-card img.logo { height: 58px; width: auto; margin-bottom: 1.3rem; }
.duo-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.duo-card > p { color: var(--slate); margin-bottom: 1.3rem; }
.duo-card .feat-list { margin-bottom: 1.8rem; }
.duo-ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  position: relative;
}
.duo-ico::after {
  content: ''; position: absolute; inset: 0;
  background: var(--lime);
  -webkit-mask: var(--ico) center / 26px 26px no-repeat;
  mask: var(--ico) center / 26px 26px no-repeat;
}

/* ============================================================
   ECOSSISTEMA (órbita de integrações)
   ============================================================ */

/* trilho do ticker do hero (mantido aqui) */
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.ecosystem {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(201, 242, 39, 0.07), transparent 65%),
    radial-gradient(700px 500px at 5% 90%, rgba(28, 65, 115, 0.55), transparent 70%),
    var(--navy-900);
  color: var(--white);
  padding: 6rem 0;
}
.ecosystem::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 85% at 60% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 60% 45%, #000 25%, transparent 80%);
}

.ecosystem-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3rem;
  align-items: center;
}

.eco-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; margin-bottom: 1rem; }
.eco-copy > p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); max-width: 480px; margin-bottom: 1.8rem; }
.eco-bullets { margin-bottom: 2.2rem; }
.eco-bullets .fb-ico { background: rgba(201, 242, 39, 0.13); }
.eco-bullets .fb-ico::after { background: var(--lime); }
.eco-bullets strong { color: var(--white); }
.eco-bullets p { color: rgba(255, 255, 255, 0.6); }

/* Órbita */
.eco-orbit { position: relative; height: 560px; }

.eco-hub {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 118px; height: 118px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--navy-700), var(--navy-900) 75%);
  border: 1px solid rgba(201, 242, 39, 0.4);
  box-shadow: 0 0 60px rgba(201, 242, 39, 0.25), inset 0 0 24px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.eco-hub svg { animation: ib-spin 46s linear infinite; }

.eco-ripple {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 118px; height: 118px; border-radius: 50%;
  border: 1.5px solid rgba(201, 242, 39, 0.35);
  animation: eco-ripple 4.5s ease-out infinite;
  pointer-events: none;
}
.eco-ripple.r2 { animation-delay: 2.25s; }
@keyframes eco-ripple {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(4.4); opacity: 0; }
}

.orbit-ring {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}
.ring-1 { width: 300px; height: 300px; animation: ring-spin 60s linear infinite; }
.ring-2 { width: 480px; height: 480px; animation: ring-spin 95s linear infinite reverse; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

.eco-node {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1));
  z-index: 2;
}
.eco-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(10, 28, 51, 0.88);
  border: 1px solid rgba(201, 242, 39, 0.28);
  padding: 0.5rem 0.9rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: eco-bob 4.5s ease-in-out infinite;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.eco-chip:hover { border-color: var(--lime); transform: scale(1.08); }
.eco-chip i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(201, 242, 39, 0.9);
}
@keyframes eco-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* Ícones extras (máscaras) */
.ico-sac2 { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 3'/%3E%3C/svg%3E"); }
.ico-box { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8l-9-5-9 5v8l9 5 9-5V8z'/%3E%3Cpath d='M3 8l9 5 9-5'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E"); }
.ico-chat2 { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E"); }
.ico-api2 { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M8 21H3v-5'/%3E%3Cpath d='M21 3l-7 7'/%3E%3Cpath d='M3 21l7-7'/%3E%3C/svg%3E"); }
.ico-plug { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 7V3M15 7V3'/%3E%3Cpath d='M6 7h12v5a6 6 0 0 1-12 0V7z'/%3E%3Cpath d='M12 18v3'/%3E%3C/svg%3E"); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.testimonials { background: var(--white); }

/* ---------- Carrossel de depoimentos ---------- */
.testi-carousel { position: relative; }
.testi-viewport { overflow: hidden; padding: 0.5rem 0 1rem; }
.testi-track {
  display: flex; gap: 1.6rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc((100% - 3.2rem) / 3);
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem 1.8rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122, 184, 0, 0.4);
  background: var(--white);
}
.testi-mark {
  font-family: var(--font-display); font-size: 4.4rem; line-height: 1;
  color: rgba(122, 184, 0, 0.28);
  position: absolute; top: 1.1rem; left: 1.6rem;
  transition: color 0.35s ease;
}
.testi-card:hover .testi-mark { color: rgba(122, 184, 0, 0.55); }
.testi-card blockquote { font-size: 0.95rem; color: var(--slate); font-style: italic; margin: 2rem 0 1.6rem; flex: 1; }

.testi-prod {
  display: inline-block; margin-top: 0.3rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-700); background: rgba(122, 184, 0, 0.13);
  padding: 0.22rem 0.55rem; border-radius: 999px;
}

.testi-ui {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-top: 1.6rem;
}
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dots button {
  width: 32px; height: 5px; border-radius: 999px;
  background: var(--line);
  transition: background 0.25s ease, width 0.25s ease;
}
.testi-dots button:hover { background: #c3cddb; }
.testi-dots button.active { background: linear-gradient(90deg, var(--green), var(--lime)); width: 48px; }

.testi-arrows { display: flex; gap: 0.6rem; }
.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy-700);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.testi-arrow:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.testi-arrow:active { transform: scale(0.94); }
.testi-arrow[disabled] { opacity: 0.35; pointer-events: none; }
.testi-who { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  display: block; font-size: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 124 124'%3E%3Ccircle cx='62' cy='62' r='44' fill='%23C9F227' stroke='%230D2340' stroke-width='7'/%3E%3Ccircle cx='62' cy='62' r='33' fill='none' stroke='%23FFFFFF' stroke-width='6'/%3E%3Cg stroke='%23FFFFFF' stroke-width='5' stroke-linecap='round'%3E%3Cpath d='M62 62 L92 62'/%3E%3Cpath d='M62 62 L62 92'/%3E%3Cpath d='M62 62 L32 62'/%3E%3Cpath d='M62 62 L62 32'/%3E%3Cpath d='M62 62 L83 83'/%3E%3Cpath d='M62 62 L41 83'/%3E%3Cpath d='M62 62 L83 41'/%3E%3Cpath d='M62 62 L41 41'/%3E%3C/g%3E%3Ccircle cx='62' cy='62' r='5' fill='%23FFFFFF'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.testi-card:hover .testi-avatar { transform: rotate(90deg); }
.testi-who strong { display: block; font-size: 0.95rem; }
.testi-who small { display: block; color: var(--muted); font-size: 0.82rem; }

/* ---------- Carrossel de logos de clientes ---------- */
.logos-carousel { position: relative; overflow: hidden; margin-bottom: 3.2rem; }
.logos-carousel::before, .logos-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logos-carousel::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.logos-carousel::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.logos-track {
  display: flex; gap: 1rem; width: max-content;
  animation: logos-roll 32s linear infinite;
}
.logos-carousel:hover .logos-track { animation-play-state: paused; }
@keyframes logos-roll { to { transform: translateX(-50%); } }
.client-logo {
  display: grid; place-items: center;
  width: 178px; height: 66px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 13px;
  background: var(--bg);
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.1em; color: #aab7c7;
  filter: grayscale(1);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.client-logo:hover {
  color: var(--navy-700); border-color: rgba(122, 184, 0, 0.45);
  transform: translateY(-4px); filter: grayscale(0);
  box-shadow: var(--shadow-sm);
}
.client-logo img {
  max-height: 44px; max-width: 160px;
  width: auto; height: auto;
  object-fit: contain;
}

/* Fileira estática enquanto houver poucas logos */
.logos-still::before, .logos-still::after { display: none; }
.logos-static {
  animation: none;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.logos-static .client-logo { width: 230px; height: 96px; }
.logos-static .client-logo img { max-height: 58px; max-width: 180px; }

/* ============================================================
   BLOG (prévia na home)
   ============================================================ */

.blog-prev { background: var(--bg); }
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 2.6rem; flex-wrap: wrap;
}
.blog-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.blog-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.4); }

.blog-cover {
  position: relative; height: 186px; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--navy-800);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-cover { transform: scale(1.06); }
.blog-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 39, 0.5) 0%, rgba(8, 22, 39, 0.12) 45%, rgba(8, 22, 39, 0.55) 100%);
  transition: opacity 0.35s ease;
}
.blog-card:hover .blog-cover::after { opacity: 0.75; }

.blog-cat {
  position: absolute; z-index: 2; top: 1rem; left: 1.1rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-800); background: var(--lime);
  padding: 0.32rem 0.7rem; border-radius: 999px;
}

.blog-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.5rem 1.4rem; }
.blog-body h3 { font-size: 1.08rem; line-height: 1.4; margin-bottom: 0.6rem; transition: color 0.22s ease; }
.blog-card:hover .blog-body h3 { color: var(--green-700); }
.blog-body p { font-size: 0.92rem; color: var(--slate); margin-bottom: 1.1rem; }
.blog-meta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
}
.blog-meta::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 6px rgba(201, 242, 39, 0.8);
}

/* ============================================================
   INSTITUCIONAL
   ============================================================ */

.about { background: var(--white); padding-top: 0; }
.about-inner {
  border-top: 1px solid var(--line);
  padding-top: 6rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.1rem; }
.about-copy p { font-size: 1.06rem; color: var(--slate); margin-bottom: 1.6rem; max-width: 560px; }

.about-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.chip-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.84rem; font-weight: 600; color: var(--slate);
  border: 1px solid var(--line); background: var(--bg);
  padding: 0.5rem 0.95rem; border-radius: 999px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.chip-light svg { color: var(--green-700); flex-shrink: 0; }
.chip-light:hover { border-color: rgba(122, 184, 0, 0.5); transform: translateY(-2px); }

.brand-family { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.brand-family::before {
  content: ''; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 340px; height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 124 124'%3E%3Ccircle cx='62' cy='62' r='44' fill='none' stroke='%230d2340' stroke-width='7'/%3E%3Ccircle cx='62' cy='62' r='33' fill='none' stroke='%230d2340' stroke-width='5'/%3E%3Cg stroke='%230d2340' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M62 62 L92 62'/%3E%3Cpath d='M62 62 L62 92'/%3E%3Cpath d='M62 62 L32 62'/%3E%3Cpath d='M62 62 L62 32'/%3E%3Cpath d='M62 62 L83 83'/%3E%3Cpath d='M62 62 L41 83'/%3E%3Cpath d='M62 62 L83 41'/%3E%3Cpath d='M62 62 L41 41'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.05;
  animation: ib-spin 80s linear infinite;
  pointer-events: none;
}
.bf-card {
  position: relative; overflow: hidden;
  background: rgba(246, 248, 251, 0.9); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem;
  display: grid; place-items: center; min-height: 112px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.28s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: bf-bob 6.5s ease-in-out infinite;
}
.bf-card:nth-child(2) { animation-delay: 1.2s; }
.bf-card:nth-child(3) { animation-delay: 2.4s; }
.bf-card:nth-child(4) { animation-delay: 3.6s; }
@keyframes bf-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}
.bf-card::before {
  content: ''; position: absolute; top: 0; left: 1.1rem; right: 1.1rem; height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.45); }
.bf-card:hover::before { transform: scaleX(1); }
.bf-card img { height: 48px; width: auto; transition: transform 0.3s ease; }
.bf-card:hover img { transform: scale(1.06); }
.bf-card.bf-navy {
  background: radial-gradient(140px 90px at 30% 20%, rgba(201, 242, 39, 0.14), transparent 70%), var(--navy-800);
  border-color: var(--navy-800);
  box-shadow: 0 14px 34px -14px rgba(13, 35, 64, 0.55);
}
.bf-card.bf-navy img { height: 52px; }

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  padding: 6.5rem 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  background-color: rgba(8, 22, 39, 0.66);
  background-blend-mode: multiply;
}
@media (max-width: 1100px), (pointer: coarse) {
  .cta-bg { background-attachment: scroll; }
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 340px at 50% -20%, rgba(201, 242, 39, 0.18), transparent 70%),
    linear-gradient(160deg, rgba(8, 22, 39, 0.82), rgba(13, 35, 64, 0.72));
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; margin-bottom: 1.1rem; }
.cta-final p { font-size: 1.15rem; color: rgba(255, 255, 255, 0.75); max-width: 620px; margin: 0 auto 2.4rem; }
.cta-final .btn-row { justify-content: center; }
.cta-final .hero-trust { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 340px at 8% 0%, rgba(201, 242, 39, 0.06), transparent 65%),
    var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 5.5rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-mark {
  position: absolute; right: -30px; bottom: -46px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(120px, 16vw, 250px); line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.04);
  pointer-events: none; user-select: none;
}

.footer-lemon {
  position: absolute; left: -150px; bottom: -160px;
  opacity: 0.07; pointer-events: none;
}
.footer-lemon svg { display: block; animation: ib-spin 70s linear infinite; }

.footer-inner { position: relative; z-index: 2; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 1fr 1.35fr;
  gap: 2.6rem;
  padding-bottom: 3.4rem;
}

.footer-brand img { width: 200px; margin-bottom: 1.4rem; }
.fb-desc { font-size: 0.94rem; line-height: 1.7; max-width: 340px; margin-bottom: 1.5rem; }

.footer-badges { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.7rem; }
.fbadge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500; color: rgba(255, 255, 255, 0.78);
}
.fbadge svg { color: var(--lime); flex-shrink: 0; }

.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.footer-social a:hover {
  border-color: var(--lime); color: var(--lime);
  background: rgba(201, 242, 39, 0.08);
  transform: translateY(-3px);
}

.footer-title {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.3rem;
}
.footer-title::before {
  content: ''; width: 18px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime));
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.footer-col > a:not(.fc-item) {
  position: relative;
  font-size: 0.95rem; padding: 0.34rem 0;
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.footer-col > a:not(.fc-item)::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  transform: translate(-4px, -50%) scale(0);
  transition: transform 0.22s ease;
}
.footer-col > a:not(.fc-item):hover { color: var(--lime); padding-left: 14px; }
.footer-col > a:not(.fc-item):hover::before { transform: translate(0, -50%) scale(1); }

/* Coluna de contato */
.footer-contact { gap: 0.9rem; }
.fc-item { display: flex; align-items: center; gap: 0.85rem; transition: transform 0.22s ease; }
.fc-item:hover { transform: translateX(4px); }
.fc-ico {
  display: grid; place-items: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(201, 242, 39, 0.1);
  color: var(--lime);
}
.fc-item small {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.fc-item strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); }
.fc-item:hover strong { color: var(--lime); }
.fc-city {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.5); margin-top: 0.4rem;
}
.fc-city svg { color: var(--lime); flex-shrink: 0; }

/* Barra final */
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem; color: rgba(255, 255, 255, 0.45);
}
.footer-made { margin-right: auto; transition: color 0.22s ease; }
a.footer-made:hover { color: var(--lime); }
.footer-bottom > span:first-child { margin-right: 0; }
.fb-link { transition: color 0.22s ease; }
a.fb-link:hover { color: var(--lime); }

/* ---------- Sobre Nós: história + citação ---------- */
.story-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem; align-items: center;
}
.story-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 0.5rem 0 1.2rem; }
.story-copy p { color: var(--slate); font-size: 1.02rem; margin-bottom: 1.1rem; }
.story-quote {
  position: relative;
  background: linear-gradient(145deg, var(--navy-800), #16355c);
  border-radius: var(--radius);
  padding: 3rem 2.6rem 2.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-quote::after {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 242, 39, 0.22), transparent 65%);
}
.sq-mark {
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--lime); opacity: 0.85;
  display: block; margin-bottom: 0.4rem;
}
.story-quote blockquote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem); line-height: 1.4;
  color: #fff; margin-bottom: 1.4rem;
  position: relative; z-index: 1;
}
.sq-by { display: block; font-size: 0.84rem; color: rgba(255, 255, 255, 0.62); position: relative; z-index: 1; }

/* ---------- Sobre Nós: segmentos ---------- */
.seg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem; }
.seg-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.seg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.4); }
.seg-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(122, 184, 0, 0.12); color: var(--green-700);
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.seg-card:hover .seg-ico { background: var(--navy-800); color: var(--lime); transform: rotate(-6deg) scale(1.06); }
.seg-card strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.4rem; }
.seg-card p { font-size: 0.86rem; color: var(--slate); }
a.seg-card { display: block; color: inherit; }
a.seg-card:hover strong { color: var(--green-700); }

.back-top {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lime); color: var(--navy-800);
  box-shadow: 0 10px 26px -10px rgba(201, 242, 39, 0.6);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.back-top:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -10px rgba(201, 242, 39, 0.8); }
.back-top:active { transform: translateY(0) scale(0.94); }

/* ============================================================
   PÁGINAS DE PRODUTO (componentes compartilhados)
   ============================================================ */

/* ---------- Hero de produto ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 242, 39, 0.12), transparent 60%),
    radial-gradient(700px 600px at -10% 60%, rgba(28, 65, 115, 0.55), transparent 65%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-850) 100%);
  color: var(--white);
  padding: calc(var(--topbar-h) + 4.2rem) 0 5.4rem;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}
.ph-orb {
  position: absolute; width: 460px; height: 460px; right: -100px; top: -140px;
  border-radius: 50%; filter: blur(100px);
  background: rgba(201, 242, 39, 0.14);
  pointer-events: none;
}
.page-hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center;
}
.page-hero h1 { font-size: clamp(2.3rem, 3.9vw, 3.4rem); font-weight: 800; margin-bottom: 1.3rem; }

.crumbs { display: flex; gap: 0.6rem; align-items: center; font-size: 0.82rem; margin-bottom: 1.6rem; color: rgba(255, 255, 255, 0.5); }
.crumbs a { transition: color 0.2s ease; }
.crumbs a:hover { color: var(--lime); }
.crumbs strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }

.ph-visual { position: relative; display: flex; justify-content: center; }
.ph-chat { position: relative !important; width: 420px; transform: rotate(1.5deg); animation: float-a 8s ease-in-out infinite; }
.ph-chip-1 { left: -4%; bottom: 60px; }
.ph-chip-2 { right: -2%; top: 10px; }

/* bolha de áudio e anexos do chat */
.bubble-audio { display: flex; align-items: center; gap: 0.6rem; max-width: 75%; }
.audio-play {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-800); position: relative;
}
.audio-play::after {
  content: ''; position: absolute; left: 55%; top: 50%; translate: -50% -50%;
  border-style: solid; border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--lime);
}
.audio-wave { display: flex; align-items: center; gap: 2px; height: 18px; }
.audio-wave i {
  width: 3px; border-radius: 2px; background: #9fb0c4;
  height: 40%;
}
.audio-wave i:nth-child(2n) { height: 90%; }
.audio-wave i:nth-child(3n) { height: 60%; }
.audio-wave i:nth-child(5n) { height: 100%; }
.bubble-audio small { font-size: 0.7rem; color: var(--muted); }

.bubble-img, .bubble-doc {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy-700);
}
.bubble-doc {
  background: rgba(13, 35, 64, 0.07); border-radius: 8px;
  padding: 0.4rem 0.6rem; margin-bottom: 0.35rem;
}
.bubble-img svg, .bubble-doc svg { color: var(--green-700); flex-shrink: 0; }

/* ---------- Cards de dor ---------- */
.pains { background: var(--white); }
.pains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pain-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(224, 122, 0, 0.35); }
.pain-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(255, 160, 46, 0.14);
  color: #d97a00;
  margin-bottom: 1.1rem;
}
.pain-card h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
.pain-card p { font-size: 0.99rem; color: var(--slate); }

/* ---------- Mock: equipe/multiatendimento ---------- */
.team-mock {
  position: relative; width: 430px; max-width: 100%;
  background: var(--white); color: var(--ink);
  padding: 1.2rem 1.2rem 1rem;
  border-radius: var(--radius);
  animation: float-a 8s ease-in-out infinite;
}
.team-row {
  display: flex; align-items: center; gap: 0.8rem;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 0.65rem 0.8rem; margin-bottom: 0.5rem;
}
.tm-av {
  display: grid; place-items: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--lime); font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
}
.tm-av.av2 { background: linear-gradient(135deg, #d97a00, #a35b00); color: #fff; }
.tm-av.av3 { background: linear-gradient(135deg, var(--green), var(--green-700)); color: #fff; }
.tm-av.av4 { background: linear-gradient(135deg, var(--lime), var(--green)); color: var(--navy-800); }
.team-row strong { display: block; font-size: 0.9rem; }
.team-row small { font-size: 0.76rem; color: var(--muted); }
.tm-st {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.28rem 0.6rem; border-radius: 999px;
}
.tm-st.on { background: rgba(122, 184, 0, 0.14); color: var(--green-700); }
.tm-st.pause { background: rgba(224, 154, 0, 0.14); color: #a26b00; }
.tm-st.ia { background: rgba(13, 35, 64, 0.08); color: var(--navy-700); }
.team-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted);
  padding: 0.6rem 0.2rem 0;
  border-top: 1px solid var(--line); margin-top: 0.6rem;
}
.team-foot strong { color: var(--green-700); }

/* ---------- Mock: kanban completo ---------- */
.kanban-full {
  position: relative; width: 470px; max-width: 100%;
  background: var(--white); color: var(--ink);
  padding: 1.2rem;
  border-radius: var(--radius);
  animation: float-a 9s ease-in-out infinite;
}
.kf-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; gap: 0.6rem; }
.kf-head .mock-kanban-title { margin-bottom: 0; }
.kf-total { font-size: 0.74rem; font-weight: 700; color: var(--green-700); background: rgba(122, 184, 0, 0.12); padding: 0.3rem 0.6rem; border-radius: 999px; white-space: nowrap; }
.kf-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; }
.kf-col small { display: flex; justify-content: space-between; font-size: 0.66rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.45rem; }
.kf-col small b { color: var(--navy-700); }
.kf-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.55rem 0.6rem; margin-bottom: 0.45rem;
}
.kf-card strong { display: block; font-size: 0.74rem; line-height: 1.3; }
.kf-card span { display: block; font-size: 0.72rem; color: var(--slate); margin: 2px 0 4px; }
.kf-card em {
  display: inline-block; font-style: normal; font-size: 0.6rem; font-weight: 700;
  padding: 0.14rem 0.4rem; border-radius: 999px;
}
.t-blue { background: rgba(28, 65, 115, 0.12); color: var(--navy-600); }
.t-green { background: rgba(122, 184, 0, 0.14); color: var(--green-700); }
.t-amber { background: rgba(224, 154, 0, 0.16); color: #a26b00; }
.t-lime { background: var(--lime); color: var(--navy-800); }
.kf-card.dragging {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 14px 30px -10px rgba(13, 35, 64, 0.35);
  border-color: rgba(122, 184, 0, 0.5);
  background: var(--white);
}
.kf-card.won { background: #f4fbe1; border-color: rgba(122, 184, 0, 0.35); }

/* ---------- Mock: campanha ---------- */
.camp-mock {
  position: relative; width: 430px; max-width: 100%;
  background: var(--white); color: var(--ink);
  padding: 1.3rem;
  border-radius: var(--radius);
  animation: float-a 8s ease-in-out infinite;
}
.camp-head { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.camp-head .mock-kanban-title { margin-bottom: 0; }
.camp-status {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green-700); background: rgba(122, 184, 0, 0.13);
  padding: 0.3rem 0.65rem; border-radius: 999px;
  animation: blink 1.6s infinite;
}
.camp-bar { height: 8px; border-radius: 999px; background: var(--bg); overflow: hidden; border: 1px solid var(--line); }
.camp-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--lime)); }
.camp-sub { font-size: 0.78rem; color: var(--muted); margin: 0.5rem 0 1rem; }
.camp-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; margin-bottom: 1rem; }
.camp-metrics div { background: var(--bg); border: 1px solid var(--line); border-radius: 11px; padding: 0.6rem 0.5rem; text-align: center; }
.camp-metrics strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.camp-metrics small { font-size: 0.7rem; color: var(--muted); }
.camp-foot { text-align: center; }

/* ---------- Mock: dashboard ---------- */
.dash-mock {
  position: relative; width: 450px; max-width: 100%;
  background: var(--white); color: var(--ink);
  padding: 1.3rem;
  border-radius: var(--radius);
  animation: float-a 9s ease-in-out infinite;
}
.dash-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; margin: 0.8rem 0 1.1rem; }
.dash-kpis div { background: var(--bg); border: 1px solid var(--line); border-radius: 11px; padding: 0.6rem 0.65rem; }
.dash-kpis small { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.dash-kpis strong { font-family: var(--font-display); font-size: 1.02rem; }
.dash-kpis em { display: block; font-style: normal; font-size: 0.68rem; font-weight: 700; }
.dash-kpis em.up { color: var(--green-700); }
.dash-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 110px; padding-top: 0.4rem;
  border-top: 1px solid var(--line);
}
.dc-bar {
  flex: 1; position: relative;
  height: var(--h);
  background: linear-gradient(180deg, rgba(122, 184, 0, 0.55), rgba(122, 184, 0, 0.25));
  border-radius: 6px 6px 2px 2px;
}
.dc-bar.hot { background: linear-gradient(180deg, var(--lime), var(--green)); }
.dc-bar span {
  position: absolute; bottom: -20px; left: 50%; translate: -50%;
  font-size: 0.62rem; color: var(--muted); text-transform: uppercase;
}
.dash-chart { margin-bottom: 20px; }

/* ---------- Faixa de integrações do produto ---------- */
.lc-integr {
  background:
    radial-gradient(700px 300px at 85% 30%, rgba(201, 242, 39, 0.08), transparent 65%),
    var(--navy-900);
  color: var(--white);
  padding: 4.6rem 0;
}
/* Seção escura com foto de fundo em parallax fixo */
.lc-integr.has-parallax { position: relative; overflow: hidden; background: var(--navy-900); }
.lc-integr.has-parallax > .container { position: relative; z-index: 2; }

.lc-integr-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.lc-integr h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 0.8rem; }
.lc-integr p { color: rgba(255, 255, 255, 0.68); max-width: 520px; }
.lc-integr-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: flex-end; }

/* ---------- Planos ---------- */
.lc-plans { background: var(--white); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.4); }
.plan-card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.plan-desc { font-size: 0.88rem; color: var(--slate); margin-bottom: 1.1rem; min-height: 2.6em; }
.plan-card .feat-list { margin-bottom: 1.5rem; }
.plan-btn { margin-top: auto; width: 100%; }
.plan-card.destaque {
  border-color: rgba(122, 184, 0, 0.55);
  box-shadow: 0 22px 50px -20px rgba(122, 184, 0, 0.35);
  background: linear-gradient(180deg, rgba(201, 242, 39, 0.07), transparent 40%), var(--white);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; translate: -50%;
  background: var(--lime); color: var(--navy-800);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(122, 184, 0, 0.6);
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3.5rem; align-items: start; }
.faq-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.9rem; }
.faq-copy p { color: var(--slate); margin-bottom: 1.6rem; }
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: rgba(122, 184, 0, 0.45); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 0.99rem;
  padding: 1.05rem 1.3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico {
  position: relative; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(122, 184, 0, 0.13);
  transition: background 0.25s ease, transform 0.3s ease;
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--green-700); border-radius: 2px;
  transition: opacity 0.25s ease;
}
.faq-ico::before { width: 11px; height: 2.4px; }
.faq-ico::after { width: 2.4px; height: 11px; }
.faq-item[open] .faq-ico { transform: rotate(180deg); background: var(--lime); }
.faq-item[open] .faq-ico::after { opacity: 0; }
.faq-item > p {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.94rem; line-height: 1.65; color: var(--slate);
}

/* ============================================================
   COMPONENTES DAS PÁGINAS INTERNAS
   ============================================================ */

/* ---------- Grid de recursos (tiles) ---------- */
.recur-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.recur-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.3rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.recur-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(122, 184, 0, 0.4); }
.recur-tile .fb-ico { margin-bottom: 0.85rem; }
.recur-tile strong { display: block; font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 0.3rem; }
.recur-tile p { font-size: 0.95rem; color: var(--slate); }

/* ---------- Passos (como funciona) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem 1.3rem 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(122, 184, 0, 0.4); }
.step-num {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--navy-800); color: var(--lime);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.step-card strong { display: block; font-family: var(--font-display); font-size: 1.07rem; margin-bottom: 0.35rem; }
.step-card p { font-size: 0.95rem; color: var(--slate); }

/* ---------- Tabela comparativa ---------- */
.cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white);
}
.cmp { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 0.96rem; }
.cmp th, .cmp td { padding: 0.9rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line); }
.cmp th:first-child, .cmp td:first-child { text-align: left; }
.cmp thead th {
  font-family: var(--font-display); font-size: 0.9rem;
  background: var(--bg);
}
.cmp thead th.dest { background: rgba(201, 242, 39, 0.3); position: relative; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody tr { transition: background 0.18s ease; }
.cmp tbody tr:hover { background: rgba(246, 248, 251, 0.8); }
.cmp td:first-child { color: var(--slate); font-weight: 500; }
.cmp .ok, .cmp .no { font-size: 0; }
.cmp .ok::before {
  content: ''; display: inline-block; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201, 242, 39, 0.4) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23659c00' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.cmp .no::before {
  content: ''; display: inline-block; width: 14px; height: 2.5px; border-radius: 2px;
  background: #cbd5e1; vertical-align: middle;
}

/* ---------- Linha do tempo ---------- */
.tl { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.tl::before {
  content: ''; position: absolute; left: 2%; right: 2%; top: 26px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime));
}
.tl-item { position: relative; padding-top: 58px; }
.tl-dot {
  position: absolute; top: 15px; left: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 5px solid var(--green);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.tl-item:hover .tl-dot { border-color: var(--navy-800); transform: scale(1.15); }
.tl-year { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--green-700); margin-bottom: 0.3rem; }
.tl-item strong { display: block; font-family: var(--font-display); font-size: 0.99rem; margin-bottom: 0.3rem; }
.tl-item p { font-size: 0.88rem; color: var(--slate); }

/* ---------- Canais de contato ---------- */
.chan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.chan-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.chan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(122, 184, 0, 0.4); }
.chan-card .fb-ico { margin-bottom: 0.85rem; }
.chan-card small { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.chan-card strong { font-family: var(--font-display); font-size: 1.07rem; }
.chan-card span { font-size: 0.92rem; color: var(--slate); margin-top: 0.25rem; }

/* ---------- Formulário em página clara ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 2rem 1.7rem;
  box-shadow: var(--shadow-lg);
}
.form-card .lead-field input, .form-card .lead-field select, .form-card .lead-field textarea {
  background: var(--bg);
}
.form-card .lead-field textarea {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink);
  border: 1.5px solid rgba(203, 214, 229, 0.55); border-radius: 10px;
  padding: 0.6rem 0.8rem; resize: vertical; min-height: 104px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-card .lead-field textarea:focus {
  outline: none; border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 184, 0, 0.16);
}

/* ---------- Mock: discador ---------- */
.dial-mock {
  position: relative; width: 440px; max-width: 100%;
  background: var(--white); color: var(--ink);
  padding: 1.3rem;
  border-radius: var(--radius);
  animation: float-a 8s ease-in-out infinite;
}
.dial-head { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.dial-head .mock-kanban-title { margin-bottom: 0; }
.dial-row {
  display: flex; align-items: center; gap: 0.8rem;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 0.6rem 0.8rem; margin-bottom: 0.5rem;
}
.dial-row strong { display: block; font-size: 0.86rem; }
.dial-row small { font-size: 0.74rem; color: var(--muted); }
.dial-st { margin-left: auto; flex-shrink: 0; font-size: 0.66rem; font-weight: 700; padding: 0.28rem 0.6rem; border-radius: 999px; }
.dial-st.ligando { background: rgba(224, 154, 0, 0.15); color: #a26b00; animation: blink 1.4s infinite; }
.dial-st.falando { background: rgba(122, 184, 0, 0.15); color: var(--green-700); }
.dial-st.fim { background: rgba(13, 35, 64, 0.08); color: var(--navy-700); }
.dial-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted);
  padding-top: 0.65rem; border-top: 1px solid var(--line); margin-top: 0.6rem;
}
.dial-foot strong { color: var(--green-700); }

/* ---------- Numeração e portabilidade ---------- */
.numbers-band { background: var(--white); }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.num-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.num-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.45); }
.num-big {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.3rem; line-height: 1; letter-spacing: -0.01em;
  color: var(--navy-800);
  padding-bottom: 0.5rem; margin-bottom: 0.8rem;
  position: relative;
}
.num-big::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 42px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.num-card:hover .num-big::after { width: 100%; }
.num-card strong { display: block; font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 0.35rem; }
.num-card p { font-size: 0.98rem; color: var(--slate); }
.num-card.destaque {
  border-color: rgba(122, 184, 0, 0.55);
  background: linear-gradient(180deg, rgba(201, 242, 39, 0.08), transparent 45%), var(--white);
  box-shadow: 0 18px 44px -18px rgba(122, 184, 0, 0.4);
}
.num-new {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-800); background: var(--lime);
  padding: 0.3rem 0.65rem; border-radius: 999px;
  animation: num-pulse 2.2s ease-in-out infinite;
}
@keyframes num-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 242, 39, 0.55); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(201, 242, 39, 0); }
}
.num-cta { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 2.4rem; }
.num-cta .chip-light { cursor: default; }

/* chips de numeração dentro da seção PABX da home */
.port-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.4rem; }
.port-chips .chip-light { font-size: 0.8rem; padding: 0.42rem 0.85rem; }

/* ---------- Artigo do blog ---------- */
.post-hero { padding-bottom: 7.5rem; }
.post-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; margin-top: 1.2rem; }
.post-meta .chip { font-size: 0.8rem; }

.post-cover-wrap { position: relative; z-index: 3; margin-top: -6rem; }
.post-cover-img {
  width: 100%; max-width: 900px; margin: 0 auto; display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.post-body { max-width: 760px; margin: 0 auto; padding: 3.2rem 0 1rem; font-size: 1.04rem; color: #33465e; }
.post-body h2 {
  font-size: 1.55rem; color: var(--ink);
  margin: 2.4rem 0 0.9rem;
}
.post-body h3 { font-size: 1.18rem; color: var(--ink); margin: 1.8rem 0 0.6rem; }
.post-body p { line-height: 1.8; margin-bottom: 1.15rem; }
.post-body ul, .post-body ol { margin: 0 0 1.15rem 1.3rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 0.45rem; line-height: 1.7; }
.post-body li::marker { color: var(--green-700); }
.post-body strong { color: var(--ink); }
.post-body a { color: var(--green-700); font-weight: 600; }
.post-body a:hover { text-decoration: underline; }

.post-quote {
  position: relative;
  background: var(--bg); border-left: 4px solid var(--lime); border-radius: 0 14px 14px 0;
  padding: 1.4rem 1.6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; line-height: 1.55;
  color: var(--navy-700);
  margin: 1.8rem 0;
}

.post-cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(420px 160px at 90% 40%, rgba(201, 242, 39, 0.16), transparent 70%),
    linear-gradient(120deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin: 2.4rem 0;
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
}
.post-cta strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.25rem; }
.post-cta p { color: rgba(255, 255, 255, 0.72); margin: 0; font-size: 0.94rem; }
.post-cta .btn { margin-left: auto; flex-shrink: 0; }

.post-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid var(--line);
  max-width: 760px; margin: 2.5rem auto 0; padding-top: 1.6rem;
}
.post-author .mock-avatar {
  width: 48px; height: 48px; border: 0; border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 124 124'%3E%3Ccircle cx='62' cy='62' r='44' fill='%23C9F227' stroke='%230D2340' stroke-width='7'/%3E%3Ccircle cx='62' cy='62' r='33' fill='none' stroke='%23FFFFFF' stroke-width='6'/%3E%3Cg stroke='%23FFFFFF' stroke-width='5' stroke-linecap='round'%3E%3Cpath d='M62 62 L92 62'/%3E%3Cpath d='M62 62 L62 92'/%3E%3Cpath d='M62 62 L32 62'/%3E%3Cpath d='M62 62 L62 32'/%3E%3Cpath d='M62 62 L83 83'/%3E%3Cpath d='M62 62 L41 83'/%3E%3Cpath d='M62 62 L83 41'/%3E%3Cpath d='M62 62 L41 41'/%3E%3C/g%3E%3Ccircle cx='62' cy='62' r='5' fill='%23FFFFFF'/%3E%3C/svg%3E") center / contain no-repeat;
}
.post-author strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.post-author small { color: var(--muted); font-size: 0.84rem; }

.post-related { background: var(--bg); }

/* ---------- Barra de progresso de leitura ---------- */
.read-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: 3px; background: transparent; pointer-events: none;
}
.read-progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--lime));
  box-shadow: 0 0 10px rgba(201, 242, 39, 0.7);
  transition: width 0.1s linear;
}

/* ---------- Layout do artigo com coluna lateral ---------- */
.post-shell {
  display: grid; grid-template-columns: 210px minmax(0, 1fr);
  gap: 3rem; align-items: start;
  max-width: 1060px;
}
.post-shell .post-body { max-width: none; padding-top: 3.2rem; }
.post-main { min-width: 0; }

.post-aside {
  position: sticky; top: calc(var(--topbar-h) + 2rem);
  padding-top: 3.4rem;
}
.toc-title {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.8rem;
}
.post-toc nav { display: flex; flex-direction: column; gap: 0.1rem; border-left: 2px solid var(--line); }
.toc-link {
  position: relative;
  font-size: 0.84rem; line-height: 1.4; color: var(--slate);
  padding: 0.42rem 0 0.42rem 0.85rem; margin-left: -2px;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.toc-link:hover { color: var(--green-700); }
.toc-link.active { color: var(--navy-800); font-weight: 600; border-left-color: var(--lime); }

.post-share { margin-top: 2rem; }
.share-row { display: flex; gap: 0.5rem; }
.share-btn {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.share-btn:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-3px); }
.share-ok { display: block; margin-top: 0.6rem; font-size: 0.76rem; color: var(--green-700); font-weight: 600; }
[hidden] { display: none !important; }

.post-cta-final { margin-top: 2.6rem; }

/* ---------- Hub: artigo em destaque ---------- */
.post-featured {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.post-featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 184, 0, 0.4); }
.pf-cover {
  position: relative; min-height: 320px;
  background-size: cover; background-position: center;
  background-color: var(--navy-800);
}
.pf-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 39, 0.45) 0%, rgba(8, 22, 39, 0.1) 50%, rgba(8, 22, 39, 0.4) 100%);
}
.pf-body { padding: 2.4rem 2.4rem 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.pf-tag {
  display: inline-block; align-self: flex-start;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-700); background: rgba(122, 184, 0, 0.13);
  padding: 0.35rem 0.75rem; border-radius: 999px; margin-bottom: 1rem;
}
.pf-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.28; margin-bottom: 0.8rem; }
.post-featured:hover .pf-body h2 { color: var(--green-700); }
.pf-body > p { font-size: 1rem; color: var(--slate); margin-bottom: 1.1rem; }
.pf-meta { display: flex; gap: 1.2rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 1.4rem; }
.pf-meta span { position: relative; }
.pf-meta span + span::before {
  content: ''; position: absolute; left: -0.7rem; top: 50%; translate: 0 -50%;
  width: 4px; height: 4px; border-radius: 50%; background: var(--lime);
}

/* ---------- Filtros por categoria ---------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  font-size: 0.85rem; font-weight: 600;
  color: var(--slate); background: var(--white);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.05rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.filter-btn:hover { border-color: rgba(122, 184, 0, 0.5); color: var(--green-700); transform: translateY(-2px); }
.filter-btn.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--lime); }

.blog-card.oculto { display: none; }
.blog-empty { text-align: center; color: var(--muted); padding: 2.5rem 0; }

/* ---------- Selo Meta Business Partner ---------- */
.meta-mark { flex-shrink: 0; display: inline-block; }
.chip-meta { gap: 0.6rem; font-weight: 600; }
.chip-meta .meta-mark { color: #0081fb; background: var(--white); border-radius: 7px; padding: 3px 5px; }
.fbadge-meta { gap: 0.6rem; }
.fbadge-meta .meta-mark { color: #ffffff; }
.meta-badge-wrap { display: flex; justify-content: center; margin-top: 1.5rem; }
.meta-badge {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.65rem 1.4rem 0.65rem 1rem;
  box-shadow: var(--shadow-sm);
}
.meta-badge .meta-mark { color: #0081fb; width: 34px; height: 23px; }
.meta-badge small { display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.meta-badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--ink); line-height: 1.25; }

/* ---------- Card de blog "em breve" ---------- */
.blog-card.soon { pointer-events: none; }
.soon-tag {
  position: absolute; z-index: 2; top: 1rem; right: 1.1rem;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #a26b00; background: #ffe9c4;
  padding: 0.32rem 0.7rem; border-radius: 999px;
}

/* ============================================================
   PÁGINAS EM CONSTRUÇÃO (stubs)
   ============================================================ */

.stub-hero {
  min-height: 100vh;
  display: grid; align-items: center;
  background:
    radial-gradient(800px 440px at 80% 0%, rgba(201, 242, 39, 0.12), transparent 65%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-850) 100%);
  color: var(--white);
  padding: calc(var(--topbar-h) + 3rem) 0 4rem;
}
.stub-inner { max-width: 720px; }
.stub-logo { height: 64px; width: auto; margin-bottom: 2.2rem; background: var(--white); padding: 0.8rem 1.2rem; border-radius: 14px; }
.stub-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 1.2rem; }
.stub-hero p { font-size: 1.12rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 2.2rem; }

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

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

/* ============================================================
   MEGA MENU
   ============================================================ */

.has-mega { position: static; }

.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(8, 22, 39, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.2rem 0 2.4rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.has-mega.open .mega, .has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.has-mega.open .chev, .has-mega:hover .chev { transform: rotate(180deg); }

.mega-inner { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }

.mega-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.mega-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: rgba(255, 255, 255, 0.9); color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px; padding: 1.4rem 1.5rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.mega-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.5); background: rgba(255, 255, 255, 0.97); }
.mega-card img { height: 62px; width: auto; margin-bottom: 0.9rem; }
.mega-card-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.5; margin-bottom: 0.7rem; }
.mega-feats { display: grid; gap: 0.25rem; margin-bottom: 0.9rem; }
.mega-feats li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.82rem; color: var(--slate);
}
.mega-feats li::before {
  content: ''; position: absolute; left: 0; top: 0.42em;
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: rgba(122, 184, 0, 0.25);
  box-shadow: inset 0 0 0 2px var(--green);
}
.mega-card .link-arrow { font-size: 0.88rem; margin-top: auto; }

.mega-dev-title {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  margin-bottom: 0.8rem; min-height: 44px;
}
.mega-card-dev .drop-ico { background: rgba(122, 184, 0, 0.14); }
.mega-card-dev .drop-ico::after { background-color: var(--green-700); }

.mega-side { display: flex; flex-direction: column; }
.mega-side-title {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45); margin-bottom: 0.9rem;
}
.mega-stats { display: grid; gap: 0.65rem; margin-bottom: 1.4rem; }
.mega-stats li { display: flex; align-items: baseline; gap: 0.5rem; }
.mega-stats strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--lime); white-space: nowrap; }
.mega-stats span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.mega-cta { justify-content: center; margin-bottom: 0.6rem; }
.mega-side-login { margin-top: 1rem; }
.mega-login {
  display: block; font-size: 0.92rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.78); padding: 0.35rem 0;
}
.mega-login:hover { color: var(--lime); }

/* ============================================================
   HERO SLIDER (fundo de imagem + formulário + ticker)
   ============================================================ */

.hero-slider {
  display: flex; flex-direction: column;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  padding: calc(var(--topbar-h) + 2.2rem) 0 112px;
}

.hero-bgs, .hero-arts {
  position: absolute; inset: 0;
  will-change: transform;
  transition: transform 0.45s ease-out;
}
.hero-bgs { transform-style: preserve-3d; }

.hero-bgs { perspective: 1400px; }
.hero-arts { perspective: 1200px; }

.hero-bg, .hero-art {
  position: absolute; inset: 0; overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1s ease, transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Transição 3D: a foto entra girando de um lado, a arte do outro */
.hero-bg { transform: scale(1.1) rotateY(5deg) translate3d(3%, 0, 0); }
.hero-art { transform: scale(1.08) rotateY(-5deg) translate3d(-3%, 0, 0); }
.hero-bg.active, .hero-art.active { opacity: 1; transform: none; }

/* Camada 1: foto (Ken Burns lento, tratada em navy) */
.bg-photo {
  position: absolute; inset: -4%;
  display: block;
  background-size: cover; background-position: center;
  background-color: rgba(8, 22, 39, 0.62);
  background-blend-mode: multiply;
  will-change: transform;
}
.hero-bg.active .bg-photo { animation: kenburns 14s ease-out forwards; }
@keyframes kenburns {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(-1.4%, -1%, 0); }
}

/* Camada 2: arte abstrata (deriva contínua, independente da foto) */
.art-img {
  position: absolute; inset: -4%;
  display: block;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-art.active .art-img { animation: artdrift 22s ease-in-out infinite alternate; }
@keyframes artdrift {
  0% { transform: translate3d(0, 0, 0) scale(1.05); }
  100% { transform: translate3d(-2%, -1.5%, 0) scale(1.12); }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 15, 29, 0.88) 0%, transparent 32%),
    linear-gradient(90deg, rgba(6, 15, 29, 0.88) 0%, rgba(6, 15, 29, 0.55) 50%, rgba(6, 15, 29, 0.22) 100%);
}

.hero-grid {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 4rem;
  align-items: center;
}

.hero-texts {
  display: grid; align-content: center;
  perspective: 1000px;
  will-change: transform; transition: transform 0.45s ease-out;
}
@media (min-width: 1101px) {
  .hero-texts { margin-top: 3.2rem; }
}
.hero-texts .slide {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  transform: translateX(52px) rotateY(7deg);
  transform-origin: left center;
  transition: opacity 0.65s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
  pointer-events: none;
}
.hero-texts .slide.active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

/* Entrada em camadas: cada elemento do texto chega com um micro-atraso */
.hero-texts .slide .eyebrow,
.hero-texts .slide h1,
.hero-texts .slide .slide-title,
.hero-texts .slide .hero-sub,
.hero-texts .slide .btn-row {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-texts .slide.active .eyebrow { opacity: 1; transform: none; transition-delay: 0.2s; }
.hero-texts .slide.active h1,
.hero-texts .slide.active .slide-title { opacity: 1; transform: none; transition-delay: 0.32s; }
.hero-texts .slide.active .hero-sub { opacity: 1; transform: none; transition-delay: 0.46s; }
.hero-texts .slide.active .btn-row { opacity: 1; transform: none; transition-delay: 0.58s; }

.slide-title {
  font-size: clamp(2.5rem, 4.1vw, 3.7rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-slider h1 { font-size: clamp(2.6rem, 4.3vw, 4rem); }
.hero-texts .eyebrow { font-size: 0.92rem; letter-spacing: 0.2em; }
.hero-slider .hero-sub { font-size: 1.28rem; max-width: 620px; }
.hero-slider .btn-row .btn { padding: 1.1rem 1.85rem; font-size: 1.05rem; }
.slide-logo {
  display: inline-block; background: var(--white);
  padding: 0.6rem 1rem; border-radius: 13px;
  margin-bottom: 1.4rem;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.5);
}
.slide-logo img { height: 42px; width: auto; }

/* Formulário de captação */
.lead-card {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 1.7rem 1.7rem 1.4rem;
  box-shadow: 0 44px 90px -26px rgba(0, 0, 0, 0.65);
  max-width: 410px; justify-self: end; width: 100%;
  will-change: transform; transition: transform 0.45s ease-out;
}
.lead-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1.2; color: var(--ink); }
.lead-sub { font-size: 0.92rem; color: #3c4e66; margin: 0.25rem 0 1.05rem; }
.lead-field { margin-bottom: 0.8rem; }
.lead-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: #33465e; margin-bottom: 0.3rem;
}
.lead-field input, .lead-field select {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink);
  border: 1.5px solid rgba(203, 214, 229, 0.55); border-radius: 10px;
  padding: 0.6rem 0.8rem; background: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lead-field input:focus, .lead-field select:focus {
  outline: none; border-color: var(--green);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(122, 184, 0, 0.16);
}
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.lead-submit { width: 100%; margin-top: 0.45rem; padding: 0.9rem 1.2rem; font-size: 0.98rem; }
.lead-lgpd { display: block; text-align: center; font-size: 0.76rem; color: var(--ink); opacity: 0.8; font-weight: 500; margin-top: 0.65rem; }

/* Ticker de tags no rodapé do hero */
.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(6, 15, 29, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
}
.ticker-track { gap: 2.4rem; animation-duration: 46s; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); white-space: nowrap;
}
.ticker-item i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

/* Controles do slider */
.slider-ui {
  grid-area: 2 / 1;
  position: relative; z-index: 5;
  display: flex; align-items: center; gap: 1.8rem;
  margin-top: 2.4rem;
}
.slider-dots { display: flex; gap: 0.55rem; }
.slider-dots button {
  position: relative; overflow: hidden;
  width: 38px; height: 5px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.25s ease, width 0.25s ease;
}
.slider-dots button:hover { background: rgba(255, 255, 255, 0.45); }
.slider-dots button::after {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  background: var(--lime);
  transform: scaleX(0); transform-origin: left center;
}
.slider-dots button.active { background: rgba(255, 255, 255, 0.32); width: 58px; }
.slider-dots button.active::after { animation: dotfill 9s linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }

.slider-arrows { display: flex; gap: 0.6rem; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.slider-arrow:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.slider-arrow:active { transform: scale(0.94); }

/* Altura inteligente: a faixa de tags sempre fecha a primeira dobra */
@media (min-width: 1101px) and (max-height: 960px) {
  .hero-slider { padding-top: calc(var(--topbar-h) + 1.2rem); padding-bottom: 92px; }
  .hero-slider h1, .slide-title { font-size: clamp(2.2rem, 3.6vw, 3.2rem); margin-bottom: 1rem; }
  .hero-slider .hero-sub { font-size: 1.14rem; margin-bottom: 1.5rem; }
  .slider-ui { margin-top: 1.5rem; }
  .lead-card { padding: 1.4rem 1.5rem 1.15rem; }
  .lead-title { font-size: 1.18rem; }
  .lead-sub { margin: 0.2rem 0 0.85rem; font-size: 0.85rem; }
  .lead-field { margin-bottom: 0.65rem; }
  .lead-field label { font-size: 0.76rem; margin-bottom: 0.26rem; }
  .lead-field input, .lead-field select { padding: 0.52rem 0.75rem; font-size: 0.9rem; }
  .lead-submit { padding: 0.8rem 1.1rem; font-size: 0.93rem; }
  .lead-lgpd { font-size: 0.72rem; margin-top: 0.55rem; }
  .hero-ticker { padding: 0.78rem 0; }
  .ticker-item { font-size: 0.7rem; }
}
@media (min-width: 1101px) and (max-height: 800px) {
  .hero-slider h1, .slide-title { font-size: clamp(1.9rem, 3vw, 2.7rem); margin-bottom: 0.8rem; }
  .hero-slider .hero-sub { font-size: 1.04rem; margin-bottom: 1.2rem; }
  .hero-slider .btn-row .btn { padding: 0.95rem 1.5rem; font-size: 0.96rem; }
  .lead-lgpd { font-size: 0.68rem; margin-top: 0.45rem; }
  .hero-slider .eyebrow { margin-bottom: 0.6rem; }
}

/* Select premium (seta própria, sem aparência nativa) */
.lead-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2340' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 13px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.lead-field select:invalid { color: var(--muted); }
.lead-field input:hover, .lead-field select:hover { border-color: #b9c6d8; }

/* Botão premium: gradiente, brilho que atravessa e glow */
.lead-submit {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--lime-soft) 0%, var(--lime) 45%, #a8d81f 100%);
  box-shadow: 0 12px 28px -12px rgba(122, 184, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.lead-submit::after {
  content: ''; position: absolute; top: -4px; bottom: -4px; left: -70%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(122, 184, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.lead-submit:hover::after { left: 125%; }
.lead-submit:active { transform: translateY(0) scale(0.98); }

/* Mock de chamados (reuso futuro na página LemonSAC) */
.mock-tickets {
  position: relative; width: 400px; max-width: 100%;
  background: var(--white); color: var(--ink);
  padding: 1.2rem 1.2rem 1rem;
  border-radius: var(--radius);
}
.ticket {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  border: 1px solid var(--line); border-radius: 11px;
  padding: 0.7rem 0.85rem; margin-bottom: 0.55rem;
}
.ticket strong { display: block; font-size: 0.84rem; font-weight: 600; }
.ticket small { font-size: 0.74rem; color: var(--muted); }
.ticket-warn { border-color: rgba(224, 154, 0, 0.45); background: #fffaf0; }
.pill {
  flex-shrink: 0; font-size: 0.68rem; font-weight: 700;
  padding: 0.3rem 0.6rem; border-radius: 999px; white-space: nowrap;
}
.pill-green { background: rgba(122, 184, 0, 0.16); color: var(--green-700); }
.pill-amber { background: rgba(224, 154, 0, 0.16); color: #a26b00; }
.pill-navy { background: rgba(13, 35, 64, 0.09); color: var(--navy-700); }

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .topbar-actions { margin-left: auto; }
  .topbar-actions .has-drop { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .lead-card { justify-self: start; max-width: 560px; }
  .hero-slider { height: auto; min-height: 0; padding-bottom: 0; }
  .hero-ticker { position: static; margin-top: 3.2rem; }
  .feature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-inner.reverse .feature-copy { order: 1; }
  .feature-inner.reverse .feature-visual { order: 2; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex-basis: calc((100% - 1.6rem) / 2); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pains-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .story-quote { max-width: 560px; }
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .post-shell { grid-template-columns: 1fr; gap: 0; max-width: 780px; }
  .post-aside { position: static; padding-top: 2.4rem; display: flex; gap: 2.5rem; flex-wrap: wrap; }
  .post-toc { flex: 1; min-width: 260px; }
  .post-share { margin-top: 0; }
  .post-shell .post-body { padding-top: 2.2rem; }
  .post-featured { grid-template-columns: 1fr; }
  .pf-cover { min-height: 240px; }
  .recur-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .chan-grid { grid-template-columns: 1fr 1fr; }
  .tl { grid-template-columns: 1fr; gap: 0.4rem; }
  .tl::before { left: 11px; right: auto; top: 2%; bottom: 2%; width: 3px; height: auto; background: linear-gradient(180deg, var(--green), var(--lime)); }
  .tl-item { padding-top: 0; padding-left: 48px; padding-bottom: 1.2rem; }
  .tl-dot { top: 2px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lc-integr-inner { grid-template-columns: 1fr; }
  .lc-integr-chips { justify-content: flex-start; }
  .eco-orbit { margin: 0 auto; width: 100%; max-width: 560px; }
}

@media (max-width: 760px) {
  .section { padding: 4.2rem 0; }
  .feature { padding: 4.5rem 0; }

  /* Topbar: nada pode passar da borda */
  .topbar-inner { gap: 0.8rem; }
  .topbar-actions { gap: 0.5rem; }
  .topbar-actions .btn-lime { display: none; }
  .brand img { width: 200px; transform: translateY(8px); }
  .topbar.scrolled .brand img { width: 150px; }

  /* Decorações absolutas que vazavam para a direita */
  .ph-orb { width: 300px; height: 300px; right: -150px; top: -120px; }
  .page-hero { overflow: hidden; }

  /* Mockups: nunca mais largos que a coluna, e sem os offsets absolutos do desktop */
  .mock, .kanban-full, .mock-tickets, .mock-phone, .mock-chat, .mock-kanban { width: 100% !important; max-width: 100% !important; transform: none !important; }
  .ph-chat, .ph-chat.mock-chat { left: auto; right: auto; top: auto; bottom: auto; }
  .feature-visual { width: 100%; max-width: 100%; min-width: 0; }
  .feature-visual > * { max-width: 100%; }
  .kf-head { flex-wrap: wrap; gap: 0.5rem; }
  .kf-cols { grid-template-columns: 1fr 1fr; }
  .kf-col:last-child { display: none; }
  .kf-card.dragging { transform: none; }

  /* Faixas com animação: viewport recortado, trilho livre */
  .hero-ticker, .logos-carousel, .testi-viewport { max-width: 100%; overflow: hidden; }

  /* Tabelas comparativas: rolam dentro da própria caixa */
  .cmp-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp { min-width: 560px; font-size: 0.9rem; }

  /* Textos: tamanhos legíveis no celular */
  body { font-size: 1.02rem; }
  p, li { font-size: 1rem; }
  .hero-sub, .section-sub { font-size: 1.05rem; }
  .eyebrow { font-size: 0.74rem; }
  .btn { font-size: 0.98rem; padding: 0.95rem 1.4rem; }
  .lead-card label, .lead-card small, .lead-lgpd { font-size: 0.86rem; }
  .lead-card input, .lead-card select, .lead-card textarea { font-size: 1rem; }
  .footer-col a, .footer-col p, .fc-item { font-size: 0.98rem; }
  .footer-bottom { font-size: 0.86rem; }

  /* Artigos: leitura longa pede corpo maior no celular */
  .post-body { font-size: 1.1rem; line-height: 1.75; }
  .post-body p, .post-body li { font-size: 1.1rem; }
  .post-body h2 { font-size: 1.5rem; }
  .post-body h3 { font-size: 1.22rem; }
  .post-quote { font-size: 1.08rem; }
  .toc-link { font-size: 0.95rem; padding: 0.5rem 0 0.5rem 0.85rem; }
  .blog-card h3, .pf-body h2 { font-size: 1.2rem; }
  .blog-card p { font-size: 0.98rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1rem; }
  .stat + .stat::before { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .duo-grid { grid-template-columns: 1fr; }
  .seg-grid { grid-template-columns: 1fr; }
  .testi-card { flex-basis: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .recur-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr; }
  .chan-grid { grid-template-columns: 1fr; }
  .ph-chat { width: 100%; transform: none; }
  .ph-chip-1, .ph-chip-2 { display: none; }
  .brand-family { grid-template-columns: 1fr 1fr; }

  .integr-banner { padding: 2rem 1.6rem; }
  .integr-banner .btn { margin-left: 0; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .eco-orbit { transform: scale(0.6); transform-origin: 50% 42%; height: 360px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-mark { font-size: 90px; right: -10px; }
  .footer { overflow: hidden; }

  .hero-slider { padding-top: calc(var(--topbar-h) + 2.4rem); }
  .lead-card { max-width: none; padding: 1.5rem 1.3rem 1.2rem; }
  .lead-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .container { width: min(1200px, 100% - 2rem); }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .section { padding: 3.4rem 0; }
  .feature { padding: 3.8rem 0; }
  .kf-cols { grid-template-columns: 1fr 1fr; }
  .kf-col:last-child { display: none; }
  .camp-metrics { grid-template-columns: 1fr 1fr 1fr; gap: 0.4rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .brand-family { grid-template-columns: 1fr; }
  .slider-ui { margin-top: 1.6rem; gap: 1rem; }
  .slide-logo img { height: 34px; }
  .mock-kanban { bottom: -6px; }
  .fc-calls { display: none; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .topbar-actions .btn-sm { display: none; }
}
