/* =============================================================================
   Anna — Landing Page  (estilos migrados 1:1 do index.html original)
   -----------------------------------------------------------------------------
   • TODOS os seletores estão escopados sob `.site` → não vazam pro app
     nem sofrem interferência do globals.css.
   • As variáveis de tema (claro/escuro) vivem no container via `data-theme`,
     trocadas pelo landing.script.ts (chave localStorage "anna-theme").
   • A cor brand herda do seu design system: `--primary: #2c91f5`.
   • Fonte Plus Jakarta Sans importada abaixo (era um <link> no <head> original).
   ============================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ----- Destrava o layout global do app enquanto a landing está na tela -----
   O <body> do painel usa flex/center/altura travada e bg-nexBackground (feito
   pra centralizar o app). A landing precisa rolar a página inteira, então o
   wrapper .site ocupa 100% e o body recebe estes ajustes via :has(). */
body:has(.site) {
  display: block !important;
  align-items: initial !important;
  justify-content: initial !important;
  height: auto !important;
  min-height: 100dvh !important;
  overflow-y: auto !important;
  background: var(--bg) !important;
}
.site {
  width: 100%;
  min-height: 100dvh;
}

/* =============================================================================
   Anna — Landing Page v2
   Fiel à identidade do app (telas do CRM): azul-escuro profundo, painéis suaves,
   azul #2c91f5 como único destaque. ZERO amarelo. CSS puro, sem dependências.
   ============================================================================= */

/* ----------------------------- TOKENS (DARK) ------------------------------ */
.site,
.site[data-theme="dark"],
.site {
  --primary: #2c91f5;
  --primary-600: #1f6fd0;
  --primary-700: #155bb1;
  --primary-300: #6fb4f8;
  --primary-soft: rgba(44, 145, 245, 0.14);
  --primary-softer: rgba(44, 145, 245, 0.08);

  --bg: #0c0f18;
  /* fundo geral, igual sidebar do app */
  --bg-2: #11151f;
  /* faixas alternadas */
  --surface: #161b27;
  /* cards */
  --surface-2: #1d2330;
  /* card hover / inner */
  --surface-3: #222a39;
  /* chips internos */
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-2: rgba(255, 255, 255, 0.05);

  --text: rgba(237, 241, 248, 0.92);
  --text-muted: rgba(166, 176, 194, 0.78);
  --text-dim: rgba(140, 150, 170, 0.6);
  --title: #ffffff;

  --grad-blue: linear-gradient(150deg, #2c91f5, #155bb1 90%);
  --grad-blue-soft: linear-gradient(
    150deg,
    rgba(44, 145, 245, 0.18),
    rgba(21, 91, 177, 0.05)
  );
  --grad-hero-phone: linear-gradient(165deg, #2c91f5 0%, #1559a8 75%);

  --shadow-1: 0 8px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 24px 60px -22px rgba(0, 0, 0, 0.7);
  --shadow-blue: 0 18px 50px -18px rgba(44, 145, 245, 0.5);

  --nav-bg: rgba(12, 15, 24, 0.72);
  --dot: rgba(255, 255, 255, 0.05);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
}

/* ----------------------------- TOKENS (LIGHT) ----------------------------- */
.site[data-theme="light"] {
  --primary: #2c91f5;
  --primary-600: #1f6fd0;
  --primary-700: #155bb1;
  --primary-300: #6fb4f8;
  --primary-soft: rgba(44, 145, 245, 0.12);
  --primary-softer: rgba(44, 145, 245, 0.06);

  --bg: #f7f9fc;
  --bg-2: #eef2f8;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --surface-3: #eaf0f8;
  --stroke: rgba(3, 12, 32, 0.09);
  --stroke-2: rgba(3, 12, 32, 0.05);

  --text: rgba(20, 28, 46, 0.82);
  --text-muted: rgba(70, 82, 104, 0.8);
  --text-dim: rgba(110, 122, 144, 0.7);
  --title: #0b1426;

  --grad-blue: linear-gradient(150deg, #2c91f5, #1559a8 90%);
  --grad-blue-soft: linear-gradient(
    150deg,
    rgba(44, 145, 245, 0.12),
    rgba(21, 91, 177, 0.03)
  );
  --grad-hero-phone: linear-gradient(165deg, #2c91f5 0%, #1559a8 75%);

  --shadow-1: 0 8px 30px -12px rgba(3, 12, 32, 0.16);
  --shadow-2: 0 24px 60px -24px rgba(3, 12, 32, 0.22);
  --shadow-blue: 0 18px 50px -20px rgba(44, 145, 245, 0.4);

  --nav-bg: rgba(247, 249, 252, 0.78);
  --dot: rgba(3, 12, 32, 0.06);
}

/* ------------------------------- RESET ------------------------------------ */
.site *,
.site *::before,
.site *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .site {
    scroll-behavior: auto;
  }

  .site *,
  .site *::before,
  .site *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.site {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.55s ease,
    color 0.55s ease;
}

.site a {
  color: inherit;
  text-decoration: none;
}

.site img {
  max-width: 100%;
  display: block;
}

.site button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.site ul {
  list-style: none;
}

.site section {
  position: relative;
}

.site .ic-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* tamanhos por contexto (antes vinham do font-size do Material Symbols) */
.site .kicker .ic-svg {
  width: 17px;
  height: 17px;
}

.site .hero-badge .pip .ic-svg {
  width: 14px;
  height: 14px;
}

.site .btn .ic-svg {
  width: 19px;
  height: 19px;
}

.site .icon-btn .ic-svg {
  width: 21px;
  height: 21px;
}

.site .hamb .ic-svg {
  width: 24px;
  height: 24px;
}

.site .logo-row .lg .ic-svg {
  width: 21px;
  height: 21px;
}

.site .pcard .ic .ic-svg,
.site .fcard .ic .ic-svg {
  width: 26px;
  height: 26px;
}

.site .fbadge .ic .ic-svg {
  width: 20px;
  height: 20px;
}

.site .tcard .stars .ic-svg {
  width: 17px;
  height: 17px;
}

.site .pr-feats .ck .ic-svg {
  width: 13px;
  height: 13px;
}

.site .social a .ic-svg {
  width: 20px;
  height: 20px;
}

.site .footer-col a .ic-svg {
  width: 16px;
  height: 16px;
}

/* ------------------------------ LAYOUT ------------------------------------ */
.site .container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.site .section-pad {
  padding: clamp(70px, 10vw, 140px) 0;
}

.site .text-center {
  text-align: center;
}

.site .mx-auto {
  margin-inline: auto;
}

/* tag de seção (autoral, discreta — linha + texto, nada de pílula chamativa) */
.site .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-300);
}

.site .kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.site .kicker .ms {
  font-size: 17px;
}

.site .h-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--title);
  letter-spacing: -0.025em;
}

.site .h-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
  max-width: 600px;
}

.site .accent {
  color: var(--primary);
}

.site .accentProblem {
  color: #b42222;
}

/* ------------------------ BACKGROUND (aurora + dots) ---------------------- */
.site .bg-decor {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

/* campo de pontos sutil (substitui o grid batido) */
.site .bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--dot) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #000 30%,
    transparent 95%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #000 30%,
    transparent 95%
  );
  opacity: 0.6;
}

/* auroras (blobs de luz suaves, animados) */
.site .aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  will-change: transform;
}

.site .aurora.a1 {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -160px;
  background: radial-gradient(
    circle,
    rgba(44, 145, 245, 0.55),
    transparent 68%
  );
}

.site .aurora.a2 {
  width: 520px;
  height: 520px;
  top: 28%;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(31, 111, 208, 0.45),
    transparent 66%
  );
  opacity: 0.4;
}

.site .aurora.a3 {
  width: 680px;
  height: 680px;
  bottom: -260px;
  left: 32%;
  background: radial-gradient(circle, rgba(44, 145, 245, 0.3), transparent 70%);
  opacity: 0.32;
}

.site[data-theme="light"] .aurora {
  opacity: 0.35;
}

.site[data-theme="light"] .aurora.a2 {
  opacity: 0.28;
}

.site[data-theme="light"] .aurora.a3 {
  opacity: 0.22;
}

/* reveal */
.site .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site .reveal.in {
  opacity: 1;
  transform: none;
}

.site .d1 {
  transition-delay: 0.07s;
}

.site .d2 {
  transition-delay: 0.14s;
}

.site .d3 {
  transition-delay: 0.21s;
}

.site .d4 {
  transition-delay: 0.28s;
}

.site .d5 {
  transition-delay: 0.35s;
}

.site .d6 {
  transition-delay: 0.42s;
}

.site .reveal.scale {
  transform: translateY(30px) scale(0.97);
}

.site .reveal.scale.in {
  transform: none;
}

/* ------------------------------- NAVBAR ----------------------------------- */
/* Barra flutuante em cápsula, descolada do topo */
.site .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.4s ease;
}

.site .nav.scrolled {
  padding: 10px 0;
}

.site .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

.site .nav.scrolled .nav-inner {
  background: var(--nav-bg);
  border-color: var(--stroke);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  box-shadow: var(--shadow-1);
}

.site .brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 21px;
  color: var(--title);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site .brand .logo-slot {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--grad-blue);
  box-shadow: var(--shadow-blue);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  overflow: hidden;
}

/* links centrais dentro de um trilho com pílula deslizante */
.site .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 5px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--stroke-2);
}

.site .nav-links a {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.3s;
  white-space: nowrap;
}

.site .nav-links a:hover {
  color: var(--title);
}

.site .nav-links a.active {
  color: #fff;
}

/* a "bolha" que desliza atrás do link ativo */
.site .nav-pill {
  position: absolute;
  z-index: 0;
  top: 5px;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: var(--grad-blue);
  box-shadow: 0 6px 16px -6px rgba(44, 145, 245, 0.6);
  transition:
    left 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    width 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.3s;
  opacity: 0;
  left: 0;
  width: 0;
}

.site .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------------------- TOGGLE switch (sol/lua deslizante) ---------------- */
.site .switch {
  --w: 60px;
  --h: 30px;
  --pad: 3px;
  width: var(--w);
  height: var(--h);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--stroke);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(120deg, #cfe6ff, #8fb8f0);
  transition:
    background 0.5s ease,
    border-color 0.4s;
}

.site[data-theme="dark"] .switch {
  background: linear-gradient(120deg, #1b2236, #0d1422);
}

.site .switch .knob {
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  width: calc(var(--h) - var(--pad) * 2 - 2px);
  height: calc(var(--h) - var(--pad) * 2 - 2px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  transition:
    left 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.4s;
  z-index: 2;
}

.site[data-theme="dark"] .switch .knob {
  left: calc(var(--w) - var(--h) + var(--pad) + 1px);
  background: #0f1729;
}

.site .switch .knob .ic-svg {
  width: 14px;
  height: 14px;
  transition:
    opacity 0.3s,
    transform 0.4s;
}

.site .switch .knob .s-sun {
  color: #f5a623;
}

.site .switch .knob .s-moon {
  color: #cdd6f4;
  position: absolute;
  opacity: 0;
  transform: rotate(-40deg);
}

.site[data-theme="dark"] .switch .knob .s-sun {
  opacity: 0;
  transform: rotate(40deg);
}

.site[data-theme="dark"] .switch .knob .s-moon {
  opacity: 1;
  transform: rotate(0);
}

/* estrelinhas/nuvens decorativas no trilho */
.site .switch .deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site .switch .deco .star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 0.5s;
}

.site .switch .deco .star.s1 {
  top: 7px;
  left: 10px;
}

.site .switch .deco .star.s2 {
  top: 15px;
  left: 16px;
  width: 2px;
  height: 2px;
}

.site .switch .deco .star.s3 {
  top: 9px;
  left: 21px;
  width: 2px;
  height: 2px;
}

.site[data-theme="dark"] .switch .deco .star {
  opacity: 0.9;
}

.site .switch .deco .cloud {
  position: absolute;
  right: 9px;
  top: 10px;
  width: 14px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transition: opacity 0.5s;
}

.site .switch .deco .cloud::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.site[data-theme="dark"] .switch .deco .cloud {
  opacity: 0;
}

.site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 12px;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s,
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.site .btn .ic-svg {
  width: 19px;
  height: 19px;
}

.site .btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.site .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -16px rgba(44, 145, 245, 0.62);
}

.site .btn-ghost {
  background: var(--surface);
  color: var(--title);
  border: 1px solid var(--stroke);
}

.site .btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  color: var(--primary);
}

.site .btn-pill {
  border-radius: 999px;
}

.site .btn-lg {
  padding: 16px 30px;
  font-size: 15.5px;
  border-radius: 14px;
}

.site .btn-block {
  width: 100%;
}

/* hambúrguer animado (vira X) */
.site .hamb {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--surface);
  position: relative;
  flex-shrink: 0;
}

.site .hamb span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--title);
  border-radius: 2px;
  transition:
    transform 0.35s,
    opacity 0.25s,
    top 0.35s;
}

.site .hamb span:nth-child(1) {
  top: 16px;
}

.site .hamb span:nth-child(2) {
  top: 21px;
}

.site .hamb span:nth-child(3) {
  top: 26px;
}

.site .hamb.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.site .hamb.active span:nth-child(2) {
  opacity: 0;
}

.site .hamb.active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* menu mobile (painel deslizante mais elegante) */
.site .mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  z-index: 99;
  background: var(--bg);
  border-left: 1px solid var(--stroke);
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  padding: 96px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -24px 0 70px -24px rgba(0, 0, 0, 0.6);
}

.site .mobile-menu.open {
  transform: none;
}

.site .mobile-menu .mtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 16px;
  margin-bottom: 8px;
}

.site .mobile-menu a.mlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text);
  transition:
    background 0.25s,
    color 0.25s,
    padding-left 0.25s;
}

.site .mobile-menu a.mlink:hover,
.site .mobile-menu a.mlink:active {
  background: var(--primary-soft);
  color: var(--primary);
  padding-left: 20px;
}

.site .mobile-menu a.mlink .ic-svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.site .mobile-menu .m-divider {
  height: 1px;
  background: var(--stroke);
  margin: 14px 8px;
}

.site .mobile-menu .m-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.site .mobile-menu .m-theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--stroke-2);
  margin-bottom: 4px;
}

.site .mobile-menu .m-theme span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.site .menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(4, 7, 14, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.site .menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* scroll progress (mantido, sem amarelo) */
.site .scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(
    90deg,
    var(--primary-700),
    var(--primary),
    var(--primary-300)
  );
  transition: width 0.1s linear;
}

/* --------------------------------- HERO ----------------------------------- */
.site .hero {
  padding-top: 130px;
  padding-bottom: 140px;
}

.site .hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

/* selo de status clean (sem pílula chamativa) */
.site .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.site .hero-badge .pip {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
}

.site .hero-badge .pip .ms {
  font-size: 14px;
}

.site .hero-badge b {
  color: var(--title);
  font-weight: 700;
}

.site .hero h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--title);
  margin-bottom: 20px;
}

.site .hero p.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 34px;
}

.site .hero-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.site .hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.site .avatars {
  display: flex;
}

.site .avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid var(--bg);
  background: var(--grad-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.site .avatars span:first-child {
  margin-left: 0;
}

.site .hero-trust .t-text {
  font-size: 14px;
  color: var(--text-muted);
}

.site .hero-trust .t-text b {
  color: var(--title);
}

/* phone mockup */
.site .hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  /* min-height: 580px; */
  perspective: 1400px;
}

.site .phone-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(44, 145, 245, 0.35),
    transparent 65%
  );
  filter: blur(50px);
}

.site .phone-stage {
  position: relative;
  z-index: 10;
  animation: floaty 6.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.site .phone {
  width: 300px;
  height: 610px;
  border-radius: 48px;
  position: relative;
  background: linear-gradient(155deg, #20262f, #2c3340);
  padding: 12px;
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
  transform: rotateY(-9deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  background: var(--grad-hero-phone);
  display: flex;
  flex-direction: column;
}

.site .phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0a0d14;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.site .phone-top {
  padding: 42px 18px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.12); */
}

.site .phone-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  overflow: hidden;
}

.site .phone-top .nm {
  font-weight: 700;
  font-size: 15px;
}

.site .phone-top .st {
  font-size: 11px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site .phone-top .st::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.site .phone-body {
  flex: 1;
  background: var(--crm-chat-bg);
  margin: 7px;
  border-radius: 26px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
}

.site .cb {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.45;
  opacity: 0;
  animation: cbin 0.5s forwards;
}

.site .cb.them {
  align-self: flex-start;
  background: var(--surface-2);
  color: var(--text);
  border-bottom-left-radius: 5px;
  box-shadow: 1px 1px 3px #0000005b;
}

.site .cb.me {
  align-self: flex-end;
  color: #fff;
  background: var(--grad-blue);
  border-bottom-right-radius: 5px;
  box-shadow: 0 6px 16px -8px rgba(44, 145, 245, 0.6);
  box-shadow: 1px 1px 3px #0000005b;
}

.site .cb:nth-of-type(1) {
  animation-delay: 0.7s;
}

.site .cb:nth-of-type(2) {
  animation-delay: 1.4s;
}

.site .cb:nth-of-type(3) {
  animation-delay: 2.1s;
}

.site .cb:nth-of-type(4) {
  animation-delay: 2.8s;
}

@keyframes cbin {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* fade ao trocar de cena no chat do hero */
.site .phone-body.swapping .cb,
.site .phone-body.swapping .typing {
  animation: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.site .typing {
  align-self: flex-start;
  background: var(--surface-2);
  padding: 12px 15px;
  border-radius: 16px;
  border-bottom-left-radius: 5px;
  display: flex;
  gap: 4px;
  opacity: 0;
  animation: cbin 0.4s 3.4s forwards;
}

.site .typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: blink 1.2s infinite;
}

.site .typing i:nth-child(2) {
  animation-delay: 0.2s;
}

.site .typing i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* badges flutuantes (glass refinado) — ancorados no .hero-visual */
.site .fbadge {
  position: absolute;
  z-index: 30;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 12px 15px;
  box-shadow:
    var(--shadow-2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}

/* aparecem em sequência depois que a tela carrega */
.site .fbadge.show {
  animation: fbIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fbIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.site .fbadge:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(44, 145, 245, 0.35);
  box-shadow:
    var(--shadow-2),
    0 16px 40px -16px rgba(44, 145, 245, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site .fbadge .ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 6px 16px -6px currentColor;
}

/* halo pulsante atrás do ícone */
.site .fbadge .ic::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: 0.55;
  z-index: -1;
  animation: fbPulse 2.6s ease-in-out infinite;
}

@keyframes fbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.site .fbadge .ic .ms {
  font-size: 20px;
}

.site .fbadge b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--title);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.site .fbadge small {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
  margin-top: 1px;
}

/* pontinho de status antes do texto secundário */
.site .fbadge small::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}

/* flutuação com leve balanço (rotação sutil), cada uma fora de fase */
.site .fbadge.f1 {
  top: 60px;
  right: 4px;
}

.site .fbadge.f2 {
  top: 47%;
  left: -14px;
}

.site .fbadge.f3 {
  bottom: 88px;
  right: 14px;
}

.site .fbadge.f1.show {
  animation:
    fbIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    fbFloat1 6s ease-in-out 0.7s infinite;
}

.site .fbadge.f2.show {
  animation:
    fbIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
    fbFloat2 6.8s ease-in-out 0.85s infinite;
}

.site .fbadge.f3.show {
  animation:
    fbIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards,
    fbFloat3 7.4s ease-in-out 1s infinite;
}

@keyframes fbFloat1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1.2deg);
  }
}

@keyframes fbFloat2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(1.4deg);
  }
}

@keyframes fbFloat3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

/* no hover, pausa a flutuação pra dar destaque */
.site .fbadge:hover {
  animation-play-state: paused !important;
}

/* ----------------------------- LOGO STRIP --------------------------------- */
.site .logos {
  padding: 64px 0 8px;
}

.site .logos p {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-weight: 600;
}

.site .logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  align-items: center;
}

.site .logo-row .lg {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 9px;
  transition:
    color 0.3s,
    transform 0.3s;
}

.site .logo-row .lg .ms {
  font-size: 22px;
}

.site .logo-row .lg:hover {
  color: var(--title);
  transform: translateY(-2px);
}

/* ----------------------- PROBLEMA (gargalos em escada) ----------- */
.site .prob-split {
  margin-top: 56px;
}

/* mock de WhatsApp "lotado / no caos" */
.site .chaos-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.site .chaos-stage .chaos-halo {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.18), transparent 68%);
  filter: blur(55px);
}

.site .chaos-phone {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-2);
}

/* topo do "app" */
.site .chaos-top {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--stroke);
}

.site .chaos-top .ct-ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(244, 63, 94, 0.14);
  color: #fb7185;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.site .chaos-top .ct-ic .ic-svg {
  width: 20px;
  height: 20px;
}

.site .chaos-top b {
  font-size: 14.5px;
  color: var(--title);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.site .chaos-top span {
  font-size: 12px;
  color: #fb7185;
  font-weight: 600;
}

.site .chaos-top .ct-count {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -2px rgba(239, 68, 68, 0.6);
  animation: chaosPulse 1.8s ease-in-out infinite;
}

@keyframes chaosPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

/* lista de conversas não respondidas */
.site .chaos-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg);
}

.site .chaos-conv {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 11px;
  border-radius: 13px;
  position: relative;
  transition: background 0.3s;
}

.site .chaos-conv:hover {
  background: var(--surface-2);
}

.site .chaos-conv .ca {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.site .chaos-conv .cc {
  flex: 1;
  min-width: 0;
}

.site .chaos-conv .cc b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site .chaos-conv .cc span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site .chaos-conv .cr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

/* tempo de espera (vermelho = urgente) */
.site .chaos-conv .wait {
  font-size: 10.5px;
  font-weight: 700;
  color: #fb7185;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.site .chaos-conv .wait .ic-svg {
  width: 11px;
  height: 11px;
}

/* badge de não-lidas */
.site .chaos-conv .unread {
  background: #ef4444;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

/* avatares variados */
.site .ca-1 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.site .ca-2 {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.site .ca-3 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.site .ca-4 {
  background: linear-gradient(135deg, #06b6d4, #0e7490);
}

.site .ca-5 {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

/* etiqueta inferior tipo "respondidas: 0" */
.site .chaos-foot {
  padding: 13px 16px;
  background: var(--surface-2);
  border-top: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.site .chaos-foot .ic-svg {
  width: 15px;
  height: 15px;
  color: #fb7185;
  flex-shrink: 0;
}

.site .chaos-foot b {
  color: var(--title);
  font-weight: 700;
}

/* lista de gargalos (substitui os 3 cards soltos) */
.site .pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* gargalos em escada: 01 esquerda, 02 centro, 03 direita */
.site .pain-stairs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site .pain-stairs .pain-item {
  width: min(680px, 92%);
}

.site .pain-stairs .pain-item:nth-child(1) {
  align-self: flex-start;
}

.site .pain-stairs .pain-item:nth-child(2) {
  align-self: center;
}

.site .pain-stairs .pain-item:nth-child(3) {
  align-self: flex-end;
}

@media (max-width: 768px) {
  .site .pain-stairs .pain-item {
    width: 100%;
    align-self: stretch;
  }
}

.site .pain-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}

.site .pain-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #fb7185, #ef4444);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}

.site .pain-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-1);
  border-color: rgba(244, 63, 94, 0.25);
}

.site .pain-item:hover::before {
  transform: scaleY(1);
}

.site .pain-item .pn-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(244, 63, 94, 0.12);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.18);
}

.site .pain-item .pn-ic .ic-svg {
  width: 25px;
  height: 25px;
}

.site .pain-item .pn-tx {
  flex: 1;
}

.site .pain-item h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.site .pain-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* numerozinho de fundo decorativo */
.site .pain-item .pn-num {
  position: absolute;
  right: 16px;
  top: 6px;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: var(--title);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

/* ----------------------- SOLUÇÃO (split + moldura 3D) --------------------- */
.site .split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

/* palco com perspectiva pra moldura 3D */
.site .sol-stage {
  perspective: 1600px;
  display: grid;
  place-items: center;
}

/* glow azul atrás da moldura */
.site .sol-stage .frame-halo {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, var(--primary-soft), transparent 68%);
  filter: blur(55px);
}

/* a moldura 3D em si */
.site .sol-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, #20262f, #11151f);
  padding: 12px;
  box-shadow:
    0 50px 100px -34px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.07);
  transform: rotateY(-11deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site[data-theme="light"] .sol-frame {
  background: linear-gradient(155deg, #dfe6f0, #c4cedd);
  box-shadow:
    0 50px 100px -36px rgba(3, 12, 32, 0.4),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
}

/* barrinha de janela no topo (estilo "tela de sistema") */
.site .sol-frame .frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px 12px;
}

.site .sol-frame .frame-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.site .sol-frame .frame-bar .d1 {
  background: #fb7185;
}

.site .sol-frame .frame-bar .d2 {
  background: #fbbf24;
}

.site .sol-frame .frame-bar .d3 {
  background: #4ade80;
}

.site .sol-frame .frame-bar .bar-label {
  margin-left: 10px;
  height: 18px;
  flex: 1;
  max-width: 220px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.site[data-theme="light"] .sol-frame .frame-bar .bar-label {
  background: rgba(3, 12, 32, 0.05);
  border-color: rgba(3, 12, 32, 0.06);
}

/* a "tela" — aqui entra a imagem do sistema */
.site .sol-frame .frame-screen {
  position: relative;
  border-radius: calc(var(--r-xl) - 14px);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  background: var(--crm-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.site[data-theme="light"] .sol-frame .frame-screen {
  border-color: rgba(3, 12, 32, 0.06);
}

/* ---- paleta do mini-CRM (espelha o CRM do app) ---- */
.site,
.site[data-theme="dark"],
.site {
  --crm-bg: #0e1420;
  --crm-side: rgba(15, 23, 42, 0.72);
  --crm-panel: #0c1322;
  --crm-line: rgba(255, 255, 255, 0.07);
  --crm-bubble-them: #1b2336;
  --crm-bubble-me: linear-gradient(150deg, #2c91f5, #1f6fd0);
  --crm-txt: #e8edf6;
  --crm-dim: #8b97ad;
  --crm-active: rgba(44, 145, 245, 0.16);
  --crm-chat-bg: rgba(34, 41, 58, 1);
  --input-bg: rgba(49, 57, 71, 1);
}

.site[data-theme="light"] {
  --crm-bg: #eef2f8;
  --crm-side: rgba(251, 251, 251, 1);
  --crm-panel: #f3f6fb;
  --crm-line: rgba(3, 12, 32, 0.08);
  --crm-bubble-them: #ffffff;
  --crm-bubble-me: linear-gradient(150deg, #2c91f5, #1f6fd0);
  --crm-txt: #0b1426;
  --crm-dim: #5a6678;
  --crm-active: rgba(44, 145, 245, 0.12);
  --crm-chat-bg: rgba(245, 245, 245, 1);
  --input-bg: rgba(238, 238, 238, 1);
}

/* layout do mock: sidebar de leads + painel de chat */
.site .crm-mock {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 38% 1fr;
  font-size: 11px;
  color: var(--crm-txt);
}

.site .crm-side {
  background: var(--crm-side);
  border-right: 1px solid var(--crm-line);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.site .crm-side-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 13px;
  /* border-bottom: 1px solid var(--crm-line); */
}

.site .crm-side-head .crm-logo {
  width: 16px;
  height: 16px;
}

.site .crm-side-head b {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--crm-txt);
}

.site .crm-side-head .dot-on {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
  margin-left: 2px;
}

.site .crm-search {
  margin: 0px 11px 9px 11px;
  height: 24px;
  border-radius: 7px;
  background: var(--input-bg);
  border: 1px solid var(--crm-line);
}

.site .crm-leads {
  flex: 1;
  overflow: hidden;
  padding: 0 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site .crm-lead {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border-radius: 9px;
  transition:
    background 0.3s,
    border-color 0.3s;
  border: 1px solid transparent;
  position: relative;
}

.site .crm-lead.active {
  background: var(--crm-active);
  border-color: rgba(44, 145, 245, 0.3);
}

.site .crm-lead .ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
}

.site .crm-lead .who {
  min-width: 0;
  flex: 1;
}

.site .crm-lead .who b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--crm-txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site .crm-lead .who span {
  display: block;
  font-size: 10px;
  color: var(--crm-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site .crm-lead .when {
  font-size: 9px;
  color: var(--crm-dim);
  flex-shrink: 0;
  align-self: flex-start;
}

/* avatares coloridos (gradientes variados, como no CRM) */
.site .av-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.site .av-green {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.site .av-purple {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
}

.site .av-pink {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.site .av-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.site .av-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

/* painel de chat */
.site .crm-chat {
  background: var(--crm-panel);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.site .crm-chat-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background-color: var(--crm-side);
  border-bottom: 1px solid var(--crm-line);
}

.site .crm-chat-head .ava {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 9.5px;
  flex-shrink: 0;
}

.site .crm-chat-head .ci {
  flex: 1;
  min-width: 0;
}

.site .crm-chat-head .ci b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--crm-txt);
}

.site .crm-chat-head .ci span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  color: var(--primary);
  font-weight: 600;
}

.site .crm-chat-head .ci span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.site .crm-chat-body {
  flex: 1;
  padding: 14px 13px;
  display: flex;
  flex-direction: column;
  background: var(--crm-chat-bg);
  gap: 8px;
  overflow: hidden;
  justify-content: flex-end;
}

.site .crm-msg {
  max-width: 76%;
  padding: 8px 11px;
  font-size: 10.5px;
  line-height: 1.4;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: msgIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.site .crm-msg.them {
  align-self: flex-start;
  background: var(--crm-bubble-them);
  color: var(--crm-txt);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--crm-line);
  box-shadow: 1px 1px 3px #0000005b;
}

.site .crm-msg.me {
  align-self: flex-end;
  background: var(--crm-bubble-me);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 16px -8px rgba(44, 145, 245, 0.5);
  box-shadow: 1px 1px 3px #0000005b;
}

@keyframes msgIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* indicador "digitando" */
.site .crm-typing {
  align-self: flex-end;
  display: inline-flex;
  gap: 3px;
  padding: 9px 12px;
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  background: var(--crm-bubble-me);
  opacity: 0.9;
}

.site .crm-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: crmblink 1.2s infinite;
}

.site .crm-typing i:nth-child(2) {
  animation-delay: 0.2s;
}

.site .crm-typing i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes crmblink {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* fade entre cenas */
.site .crm-chat-body.swapping .crm-msg,
.site .crm-chat-body.swapping .crm-typing {
  animation: none;
  opacity: 0;
  transition: opacity 0.25s;
}

/* coluna de texto: timeline de features */
.site .sol-copy .feat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 30px;
  position: relative;
}

/* linha vertical conectando os ícones */
.site .sol-copy .feat-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-soft));
  opacity: 0.35;
}

.site .feat-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 0;
  position: relative;
}

.site .feat-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site .feat-item:hover .ic {
  transform: scale(1.1) rotate(-4deg);
}

.site .feat-item .ic .ic-svg {
  width: 22px;
  height: 22px;
}

.site .feat-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.site .feat-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------- RECURSOS (bento grid) ------------------------------- */
.site .bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.site .bento-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}

.site .bento-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s;
}

.site .bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(44, 145, 245, 0.3);
}

.site .bento-card:hover::after {
  transform: scaleX(1);
}

/* spans */
.site .bento-card.lg {
  grid-column: span 7;
}

.site .bento-card.md5 {
  grid-column: span 5;
}

.site .bento-card.sm {
  grid-column: span 4;
}

.site .bento-card.full {
  grid-column: span 12;
}

/* card de parceria Meta: copy à esquerda, selo à direita */
.site .bento-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site .bento-meta-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.site .bento-meta-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 18px 26px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.site .bento-meta-logo .meta-logo {
  height: 52px;
}

@media (max-width: 720px) {
  .site .bento-meta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .site .bento-meta-logo {
    width: 100%;
    padding: 16px;
  }
  .site .bento-meta-logo .meta-logo {
    height: 40px;
  }
}

/* destaque visual sutil no fundo dos cards grandes */
.site .bento-card.feature {
  background: linear-gradient(160deg, var(--surface-2), var(--surface) 70%);
}

.site .bento-card .glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(circle, var(--primary-softer), transparent 70%);
  filter: blur(20px);
}

.site .bento-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--grad-blue-soft);
  color: var(--primary);
  border: 1px solid var(--stroke);
  position: relative;
  z-index: 1;
}

.site .bento-ic .ic-svg {
  width: 24px;
  height: 24px;
}

.site .bento-card.feature .bento-ic {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.site .bento-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.site .bento-card.feature h3 {
  font-size: 21px;
}

.site .bento-card p {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  max-width: 90%;
  line-height: 1.6;
}

.site .bento-card.feature p {
  font-size: 14.5px;
}

/* tag de "destaque" nos cards grandes */
.site .bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-300);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.site .bento-tag .ic-svg {
  width: 14px;
  height: 14px;
}

/* mini visual: chips do CRM (funil) */
.site .bento-visual {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.site .bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--stroke-2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.site .bento-chip i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.site .bento-chip .c-new {
  background: #38bdf8;
}

.site .bento-chip .c-hot {
  background: #fb7185;
}

.site .bento-chip .c-won {
  background: #4ade80;
}

.site .bento-chip .v {
  color: var(--text-dim);
  font-weight: 700;
}

/* mini visual: barras (atendimento 24/7) */
.site .bento-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.site .bento-bars span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--grad-blue);
  opacity: 0.85;
  animation: barpulse 2.4s ease-in-out infinite;
}

.site .bento-bars span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}

.site .bento-bars span:nth-child(2) {
  height: 65%;
  animation-delay: 0.2s;
}

.site .bento-bars span:nth-child(3) {
  height: 50%;
  animation-delay: 0.4s;
}

.site .bento-bars span:nth-child(4) {
  height: 85%;
  animation-delay: 0.6s;
}

.site .bento-bars span:nth-child(5) {
  height: 60%;
  animation-delay: 0.8s;
}

.site .bento-bars span:nth-child(6) {
  height: 95%;
  animation-delay: 1s;
}

.site .bento-bars span:nth-child(7) {
  height: 70%;
  animation-delay: 1.2s;
}

@keyframes barpulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(0.9);
  }

  50% {
    opacity: 0.95;
    transform: scaleY(1);
  }
}

/* mini visual: linha de progresso (conversão) */
.site .bento-prog {
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.site .bento-prog .pl {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 7px;
}

.site .bento-prog .track {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-2);
  overflow: hidden;
}

.site .bento-prog .bar {
  height: 100%;
  border-radius: 999px;
  background: var(--grad-blue);
  width: 0;
}

.site .bento-prog.run .bar {
  animation: progfill 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes progfill {
  from {
    width: 0;
  }

  to {
    width: var(--pct, 78%);
  }
}

/* -------------------------------- STATS ----------------------------------- */
.site .stats {
  background: var(--bg-2);
  border-block: 1px solid var(--stroke);
}

.site .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.site .stat .num {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 1;
}

.site .stat .num .sfx {
  color: var(--primary);
}

.site .stat .lbl {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ----------------------------- TESTIMONIALS (carrossel editorial) --------- */
.site .tst-wrap {
  position: relative;
  max-width: 880px;
  margin: 56px auto 0;
}

/* aspas gigantes decorativas ao fundo */
.site .tst-quote {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 200px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.site[data-theme="light"] .tst-quote {
  opacity: 0.14;
}

.site .tst-viewport {
  position: relative;
  z-index: 1;
  min-height: 340px;
}

.site .tst-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.55s;
  pointer-events: none;
}

.site .tst-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

/* sai pra esquerda quando avança, pra direita quando volta */
.site .tst-slide.leaving-left {
  opacity: 0;
  visibility: visible;
  transform: translateX(-40px);
}

.site .tst-slide.leaving-right {
  opacity: 0;
  visibility: visible;
  transform: translateX(40px);
}

/* o slide que entra começa do lado oposto */
.site .tst-slide.enter-from-right {
  transform: translateX(40px);
}

.site .tst-slide.enter-from-left {
  transform: translateX(-40px);
}

.site .tst-slide .stars {
  display: inline-flex;
  gap: 4px;
  color: var(--primary);
  margin-bottom: 26px;
}

.site .tst-slide .stars .ic-svg {
  width: 22px;
  height: 22px;
}

.site .tst-slide blockquote {
  font-size: clamp(20px, 2.6vw, 29px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--title);
  letter-spacing: -0.015em;
  max-width: 760px;
  margin-bottom: 36px;
}

.site .tst-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site .tst-author .pic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  background: var(--grad-blue);
  box-shadow: var(--shadow-blue);
}

.site .tst-author .meta {
  text-align: left;
}

.site .tst-author .nm {
  font-weight: 700;
  font-size: 16px;
  color: var(--title);
}

.site .tst-author .rl {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* setas laterais */
.site .tst-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--title);
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s,
    color 0.3s;
  cursor: pointer;
}

.site .tst-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.site .tst-arrow .ic-svg {
  width: 22px;
  height: 22px;
}

.site .tst-arrow.prev {
  left: -8px;
}

.site .tst-arrow.next {
  right: -8px;
}

/* paginação (bolinhas) */
.site .tst-dots {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 40px;
}

.site .tst-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--stroke);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.35s;
  position: relative;
  overflow: hidden;
}

.site .tst-dot:hover {
  background: var(--text-dim);
}

.site .tst-dot.active {
  width: 34px;
  background: var(--primary-soft);
}

/* barra de progresso do auto-play dentro da bolinha ativa */
.site .tst-dot.active .fill {
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--grad-blue);
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
}

.site .tst-dot.active.run .fill {
  animation: dotfill var(--tst-delay, 6s) linear forwards;
  animation-play-state: var(--tst-play, running);
}

@keyframes dotfill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* -------------------------------- PRICING --------------------------------- */
.site .price-top {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.site .price-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.site .price-chip .ic-svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.site .price-chip b {
  color: var(--title);
  font-weight: 700;
}

.site .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
  max-width: 1080px;
  align-items: stretch;
  overflow: visible;
}

@media (max-width: 1100px) {
  .site .price-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .site .price-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

.site .prcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}

.site .pr-price .amt {
  font-size: 44px;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.site .pr-price.custom .amt {
  font-size: 28px;
}

.site .prcard h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.01em;
}

.site .pr-feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text);
}

.site .prcard .desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 54px;
  line-height: 1.5;
}

.site .prcard::after {
  content: none;
}

.site .prcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
  border-color: rgba(44, 145, 245, 0.35);
}

.site .prcard:hover::after {
  transform: scaleX(1);
}

/* card destaque com glow animado */
.site .prcard.featured {
  border-color: transparent;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  z-index: 2;
}

.site .prcard.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    140deg,
    var(--primary),
    rgba(44, 145, 245, 0.15) 40%,
    transparent 60%,
    var(--primary) 100%
  );
  background-size: 200% 200%;
  animation: glowmove 6s ease infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes glowmove {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.site .prcard.featured .pr-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, var(--primary-soft), transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
}

.site .prcard.featured .pr-glow::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--primary-soft), transparent 70%);
  filter: blur(20px);
}

.site .prcard > * {
  position: relative;
  z-index: 1;
}

/* eyebrow + cabeçalho */
.site .pr-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-300);
  margin-bottom: 14px;
}

.site .pr-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}

.site .pr-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--grad-blue-soft);
  border: 1px solid var(--stroke);
  color: var(--primary);
}

.site .pr-ico .ic-svg {
  width: 23px;
  height: 23px;
}

.site .prcard.featured .pr-ico {
  background: var(--grad-blue);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.site .prcard h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.01em;
}

.site .prcard .desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
  line-height: 1.55;
}

/* preço */
.site .pr-price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding-bottom: 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--stroke);
}

.site .pr-price .cur {
  font-size: 22px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 7px;
}

.site .pr-price .amt {
  font-size: 54px;
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.site .pr-price .per {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.site .pr-price.custom .amt {
  font-size: 40px;
}

.site .pr-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-blue);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  z-index: 20;
  box-shadow: var(--shadow-blue);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid color-mix(in srgb, var(--primary) 60%, #fff 15%);
}

.site .pr-badge .ic-svg {
  width: 13px;
  height: 13px;
}

.site .pr-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
  flex: 1;
}

.site .pr-feats .ttl {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.site .pr-feats li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text);
}

.site .pr-feats li .ft {
  flex: 1 1 auto;
  min-width: 0;
}

.site .pr-feats .ck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.site .pr-feats .ck .ic-svg {
  width: 13px;
  height: 13px;
}

.site .prcard.featured .pr-feats .ck {
  background: var(--grad-blue);
  color: #fff;
}

.site .pr-feats li b {
  color: var(--title);
  font-weight: 700;
}

.site .pr-note {
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site .pr-note .ic-svg {
  width: 14px;
  height: 14px;
}

/* faixa de garantias */
.site .pr-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

.site .pr-guar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 13.5px;
  color: var(--text-muted);
  transition:
    transform 0.3s,
    border-color 0.3s;
}

.site .pr-guar:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 145, 245, 0.35);
}

.site .pr-guar .ic-svg {
  width: 19px;
  height: 19px;
  color: var(--primary);
  flex-shrink: 0;
}

.site .pr-guar b {
  color: var(--title);
  font-weight: 700;
}

/* -------------------------------- BIG CTA --------------------------------- */
.site .cta-wrap {
  padding: clamp(48px, 7vw, 84px) 0;
}

.site .cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(42px, 6vw, 76px);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #2c91f5, #155bb1 92%);
  box-shadow: var(--shadow-2);
}

.site .cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(
      circle at 18% 28%,
      rgba(255, 255, 255, 0.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 84% 76%,
      rgba(255, 255, 255, 0.1),
      transparent 46%
    );
}

.site .cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  opacity: 0.5;
}

.site .cta-box h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.site .cta-box p {
  font-size: clamp(15px, 1.7vw, 18px);
  opacity: 0.94;
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.site .cta-box .btn {
  position: relative;
  z-index: 2;
}

.site .cta-box .btn-primary {
  background: #fff;
  color: var(--primary-700);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.45);
}

.site .cta-box .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
}

/* -------------------------------- FOOTER ---------------------------------- */
.site .footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--stroke);
  overflow: hidden;
  padding-top: 44px;
}

/* brilho aurora sutil no topo do footer */
.site .footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}

/* faixa CTA do topo */
.site .footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 38px 40px;
  margin: 0 0 20px 0;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-1);
  transform: translateY(-44px);
}

.site .footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  pointer-events: none;
  background: radial-gradient(
    circle at 88% 18%,
    var(--primary-softer),
    transparent 55%
  );
}

.site .footer-cta .fc-txt {
  position: relative;
}

.site .footer-cta h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--title);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.site .footer-cta p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 460px;
}

.site .footer-cta .fc-actions {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* grid principal */
.site .footer-main {
  padding-top: 8px;
}

.site .footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px;
}

.site .footer .brand {
  margin-bottom: 18px;
}

/* logo do footer que troca conforme o tema da landing */
.site .brand-logo--dark {
  display: none;
}
.site[data-theme="dark"] .brand-logo--light {
  display: none;
}
.site[data-theme="dark"] .brand-logo--dark {
  display: block;
}

/* selo Meta Business Partner — troca a arte conforme o tema da landing.
   No tema escuro usamos a arte "Light" (clara) e vice-versa, igual no login. */
.site .meta-logo {
  display: block;
  height: 30px;
  width: auto;
  object-fit: contain;
}
.site .meta-logo--dark {
  display: none;
}
.site[data-theme="dark"] .meta-logo--light {
  display: none;
}
.site[data-theme="dark"] .meta-logo--dark {
  display: block;
}

/* badge do hero: selo discreto acima do título */
.site .meta-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

/* badge no footer */
.site .footer-social-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 4px;
}
.site .meta-badge--footer {
  margin-bottom: 4px;
}
.site .meta-badge--footer .meta-logo {
  height: 34px;
}

.site .footer-about p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.site .footer-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.site .footer-meta a,
.site .footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.25s;
}

.site .footer-meta a:hover {
  color: var(--primary);
}

.site .footer-meta .ic-svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* social — botões maiores, ícone oficial */
.site .social {
  display: flex;
  gap: 11px;
}

.site .social a {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--text-muted);
  overflow: hidden;
  transition:
    transform 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.site .social a .ic-svg {
  width: 21px;
  height: 21px;
  position: relative;
  z-index: 1;
}

.site .social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity 0.3s;
}

.site .social a:hover {
  color: #fff;
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.site .social a:hover::before {
  opacity: 1;
}

.ig, .wa {
  box-shadow: 1px 1px 1px #00000063;
}

.site .social a.ig:hover::before {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888
  );
}

.site .social a.wa:hover::before {
  background: linear-gradient(45deg, #25d366, #1ebe5d 50%, #128c7e);
}

.site .footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--title);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 20px;
}

.site .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site .footer-col a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition:
    color 0.25s,
    padding-left 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
}

.site .footer-col a::before {
  content: "";
  width: 0;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.25s;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.site .footer-col a:hover {
  color: var(--primary);
}

.site .footer-col a:hover::before {
  width: 100%;
}

.site .footer-bottom {
  margin-top: 56px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site .footer-bottom p {
  font-size: 13.5px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site .footer-bottom p .hb {
  color: var(--primary);
}

.site .footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site .footer-legal a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.25s;
}

.site .footer-legal a:hover {
  color: var(--primary);
}

/* WhatsApp float */
.site .wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s;
}

.site .wa-float:hover {
  transform: scale(1.08);
}

.site .wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* hint horizontal ao lado do botão flutuante do WhatsApp */
.site .wa-hint {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  color: var(--title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

/* setinha do balão apontando pro botão */
.site .wa-hint::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-2);
  border-right: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  transform: translateY(-50%) rotate(-45deg);
}

.site .wa-float:hover .wa-hint {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .site .wa-hint {
    display: none;
  }
}

/* scroll cue */
.site .scroll-cue {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 11.5px;
  z-index: 5;
}

.site .scroll-cue .mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--stroke);
  border-radius: 13px;
  position: relative;
}

.site .scroll-cue .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--primary);
  animation: sdot 1.6s infinite;
}

@keyframes sdot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* ------------------------------ RESPONSIVE -------------------------------- */
@media (max-width: 980px) {
  .site .nav-links {
    display: none;
  }

  .site .nav-actions > .switch {
    display: none;
  }

  /* switch de tema vai pro menu mobile */
  .site .hamb {
    display: block;
  }

  .site .nav.scrolled .nav-inner,
  .site .nav-inner {
    padding: 9px 10px 9px 16px;
  }

  .site .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site .hero-visual {
    min-height: 520px;
    order: 1;
  }

  .site .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site .sol-frame {
    transform: rotateY(0) rotateX(0);
    max-width: 560px;
    margin-inline: auto;
  }

  .site .pain-grid,
  .site .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .site .bento-card.lg,
  .site .bento-card.md5,
  .site .bento-card.sm {
    grid-column: span 1;
  }

  .site .bento-card.feature.lg,
  .site .bento-card.full {
    grid-column: span 2;
  }

  .site .bento-card p {
    max-width: 100%;
  }

  .site .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site .price-grid {
    grid-template-columns: 1fr;
  }

  .site .tst-arrow.prev {
    left: 0;
  }

  .site .tst-arrow.next {
    right: 0;
  }

  .site .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 26px;
  }

  .site .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .site .footer-about {
    grid-column: 1 / -1;
  }

  .site .desktop-only {
    display: none;
  }
}

@media (max-width: 560px) {
  .site .pain-grid,
  .site .feat-grid,
  .site .stats-grid {
    grid-template-columns: 1fr;
  }

  .site .bento {
    grid-template-columns: 1fr;
  }

  .site .bento-card.lg,
  .site .bento-card.md5,
  .site .bento-card.sm,
  .site .bento-card.full,
  .site .bento-card.feature.lg {
    grid-column: span 1;
  }

  .site .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site .hero-cta {
    flex-direction: column;
  }

  .site .hero-cta .btn {
    width: 100%;
  }

  .site .tst-arrow {
    display: none;
  }

  /* no celular, navega pelas bolinhas */
  .site .tst-quote {
    font-size: 130px;
    top: -26px;
  }

  .site .footer-cta .fc-actions {
    width: 100%;
  }

  .site .footer-cta .fc-actions .btn {
    flex: 1;
  }

  .site .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .site .phone {
    width: 256px;
    height: 522px;
  }

  .site .fbadge.f1 {
    right: -12px;
  }

  .site .fbadge.f2 {
    left: -16px;
  }

  .site .sol-frame {
    transform: none;
  }

  .site .sol-frame .frame-bar .bar-label {
    max-width: 140px;
  }
}

/* -------------------------------- FAQ ------------------------------------- */
/* Lista limpa, sem cards: cada pergunta é separada por uma linha fininha.
   Usa <details>/<summary> nativos — abre/fecha em CSS puro, sem JS. */
.site .faq-list {
  max-width: 760px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  border-top: 1px solid var(--stroke);
}

.site .faq-item {
  border-bottom: 1px solid var(--stroke);
}

.site .faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px) 4px;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.site .faq-item > summary::-webkit-details-marker {
  display: none;
}

.site .faq-item > summary:hover {
  color: var(--primary);
}

/* sinal de +/− desenhado em CSS (sem ícone/asset) */
.site .faq-mark {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.site .faq-mark::before,
.site .faq-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site .faq-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.site .faq-item[open] .faq-mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* corpo da resposta — grid-rows truque pra animar a altura suavemente */
.site .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site .faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.site .faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding-right: 40px;
  padding-bottom: clamp(20px, 3vw, 26px);
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.7;
  color: var(--text-muted);
}

.site .faq-answer > p b {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 600px) {
  .site .faq-answer > p {
    padding-right: 8px;
  }
}
