/* ============================================================
   LOCA SITES WEB · Design System
   5 modelos* de site em um único sistema
   Identidade: profissional (navy/gold)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta — Navy corporativo + Blue ação + Gold premium */
  --navy-950: #050d1a;
  --navy-900: #081830;
  --navy-800: #0c2140;
  --navy-700: #112240;
  --navy-600: #1a3358;
  --navy-500: #24466f;

  --blue-700: #155fa8;
  --blue-600: #1e6fcc;
  --blue-500: #2e86de;
  --blue-100: #dcebfb;
  --blue-50: #eff6fd;

  --gold-600: #c29a35;
  --gold-500: #d4a843;
  --gold-400: #e8c56d;
  --gold-100: #f9efd8;

  --green-600: #16996d;
  --green-500: #1db584;
  --green-100: #d9f5e9;

  --red-500: #e25c4a;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;

  /* Tipografia */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Container */
  --container: 1200px;
  --header-h: 78px;

  /* Raios */
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 1px 2px rgba(8, 24, 48, 0.05);
  --sh: 0 4px 14px rgba(8, 24, 48, 0.07);
  --sh-md: 0 12px 32px rgba(8, 24, 48, 0.1);
  --sh-lg: 0 24px 56px rgba(8, 24, 48, 0.14);
  --sh-blue: 0 8px 24px rgba(30, 111, 204, 0.32);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s var(--ease);
  --t: 0.25s var(--ease);
  --t-slow: 0.45s var(--ease);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--blue-600);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: var(--blue-600);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* ---------- TIPOGRAFIA ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}
p {
  color: var(--gray-600);
}
.lead {
  font-size: 1.12rem;
}
.grad {
  background: linear-gradient(
    115deg,
    var(--blue-500),
    var(--blue-600) 45%,
    var(--gold-500)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-white,
.text-white p {
  color: #fff;
}
.text-white p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding: clamp(64px, 8vw, 108px) 0;
}
.section-head {
  max-width: 730px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head p {
  margin-top: 14px;
  font-size: 1.08rem;
}
.section-head .tag {
  margin-bottom: 14px;
}
.bg-soft {
  background: var(--gray-50);
}
.bg-blue {
  background: linear-gradient(160deg, var(--blue-50), #fff 70%);
}
.bg-navy {
  background:
    radial-gradient(
      900px 420px at 85% -10%,
      rgba(46, 134, 222, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 380px at 8% 110%,
      rgba(212, 168, 67, 0.12),
      transparent 55%
    ),
    var(--navy-900);
}
.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: #fff;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- BADGE / TAG ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag.green {
  background: var(--green-100);
  color: var(--green-600);
  border-color: rgba(29, 181, 132, 0.3);
}
.tag.gold {
  background: var(--gold-100);
  color: var(--gold-600);
  border-color: rgba(212, 168, 67, 0.35);
}
.tag.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  transition:
    transform var(--t),
    box-shadow var(--t),
    background var(--t),
    border-color var(--t);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 111, 204, 0.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(212, 168, 67, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--blue-50);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}
.btn-lm {
  padding: 15px 32px;
  font-size: 1rem;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.86rem;
}
.btn-block {
  width: 100%;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow var(--t),
    border-color var(--t),
    background var(--t);
}
.header.scrolled {
  box-shadow: var(--sh);
  border-color: var(--gray-200);
  background: rgba(255, 255, 255, 0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a.nav-link {
  display: block;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
}
.nav a.nav-link:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}
.nav .btn {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--r-sm);
}
.menu-toggle span {
  height: 2.5px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition:
    transform var(--t),
    opacity var(--t);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 88px)) 0
    clamp(64px, 8vw, 104px);
  background:
    radial-gradient(
      1000px 500px at 90% -5%,
      rgba(46, 134, 222, 0.14),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at -5% 105%,
      rgba(212, 168, 67, 0.1),
      transparent 55%
    ),
    var(--gray-50);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  margin: 18px 0;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.avatars {
  display: flex;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border: 3px solid var(--gray-50);
  margin-left: -10px;
}
.avatar:first-child {
  margin-left: 0;
}
.hero-proof small {
  display: block;
  color: var(--gray-500);
}
.hero-proof strong {
  color: var(--navy-900);
}
.stars {
  color: var(--gold-500);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

/* ---------- SELETOR DE MODELOS (hero) ---------- */
.model-switch {
  margin-top: 34px;
}
.model-switch-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  display: block;
  margin-bottom: 12px;
}
.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.model-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--t);
}
.model-tab .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot, var(--gray-400));
}
.model-tab:hover {
  border-color: var(--gray-400);
  transform: translateY(-1px);
}
.model-tab.active {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(30, 111, 204, 0.12);
}
.model-tab.active .dot {
  box-shadow: 0 0 0 3px rgba(30, 111, 204, 0.18);
}

/* ---------- MOCKUP DO MODELO (navegador) ---------- */
.model-stage {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 44vw, 560px);
  display: flex;
  align-items: center;
  border-radius: var(--r-lg);
  padding: clamp(18px, 4vw, 34px);
  background: linear-gradient(160deg, var(--navy-800), var(--blue-700) 55%, var(--navy-900));
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
/* Fotos de pessoa/imóveis em background (rodízio dinâmico estilo imobibrasil) */
.model-person {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center 38%;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.model-person.on {
  opacity: 0.9;
}
.model-person::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 24, 48, 0.28) 0%,
    rgba(8, 24, 48, 0.05) 45%,
    rgba(8, 24, 48, 0.55) 100%
  );
}
/* Moldura suave atrás do mockup para isolar a foto da borda */
.model-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  box-shadow: 0 18px 40px rgba(5, 16, 34, 0.5);
  overflow: hidden;
  transition: transform var(--t-slow);
  opacity: 0.98;
  outline: 6px solid rgba(255, 255, 255, 0.06);
}
.model-frame:hover {
  transform: translateY(-4px);
}
.mf-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.mf-bar b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.mf-bar b:nth-child(1) {
  background: #fc605c;
}
.mf-bar b:nth-child(2) {
  background: #fcbc3f;
}
.mf-bar b:nth-child(3) {
  background: #34c759;
}
.mf-url {
  flex: 1;
  margin-left: 10px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  color: var(--gray-500);
  padding: 4px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mf-url svg {
  width: 10px;
  height: 10px;
  stroke: var(--green-500);
}

.mf-body {
  aspect-ratio: 16 / 11.5;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mini-site interno — elementos genéricos estilizados por tema */
.ms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ms-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--m-primary);
}
.ms-menu {
  display: flex;
  gap: 7px;
  flex: 1;
  justify-content: flex-end;
}
.ms-menu i {
  width: 26px;
  height: 4.5px;
  border-radius: 3px;
  background: var(--m-menu);
}
.ms-btn {
  padding: 5px 12px;
  border-radius: 5px;
  background: var(--m-primary);
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ms-hero {
  border-radius: 8px;
  padding: 16px;
  background: var(--m-hero);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 74px;
  justify-content: center;
}
.ms-hero b {
  height: 10px;
  border-radius: 4px;
  background: var(--m-hero-title, #fff);
  width: 62%;
}
.ms-hero b:nth-child(2) {
  width: 40%;
  height: 7px;
  opacity: 0.65;
}
.ms-search {
  display: flex;
  gap: 6px;
  padding: 7px;
  background: var(--m-search-bg, #fff);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(8, 24, 48, 0.14);
  margin-top: -22px;
  align-self: center;
  width: 88%;
  position: relative;
  z-index: 2;
}
.ms-search i {
  flex: 1;
  height: 10px;
  border-radius: 5px;
  background: var(--m-search-field, var(--gray-200));
}
.ms-search b {
  width: 52px;
  border-radius: 5px;
  background: var(--m-primary);
}
.ms-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}
.ms-card {
  border-radius: 7px;
  background: var(--m-card, #fff);
  border: 1px solid var(--m-card-bd, var(--gray-200));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ms-card .img {
  flex: 1;
  min-height: 34px;
  background: var(
    --m-card-img,
    linear-gradient(135deg, var(--gray-300), var(--gray-200))
  );
}
.ms-card .body {
  padding: 6px 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ms-card .body i {
  height: 5px;
  border-radius: 2px;
  background: var(--m-text, var(--gray-400));
}
.ms-card .body i.p {
  width: 55%;
  height: 6.5px;
  background: var(--m-primary);
}
.ms-card .body i.s {
  width: 75%;
  opacity: 0.6;
}

.ms-footer {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--m-card-bd, var(--gray-200));
}
.ms-footer i {
  height: 5px;
  flex: 1;
  border-radius: 3px;
  background: var(--m-menu);
  opacity: 0.7;
}

/* — Tema 1 · ESSENCIAL (minimalista) — */
.t-essencial {
  --m-primary: #2563eb;
  --m-menu: #cbd5e1;
  --m-hero: linear-gradient(120deg, #eff6ff, #dbeafe);
  --m-hero-title: #1e40af;
  --m-search-bg: #fff;
  --m-search-field: #f1f5f9;
  --m-card: #fff;
  --m-card-bd: #e2e8f0;
  --m-card-img: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  --m-text: #94a3b8;
}
/* — Tema 2 · PROFISSIONAL (foto hero) — */
.t-profissional {
  --m-primary: #0078ff;
  --m-menu: rgba(255, 255, 255, 0.55);
  --m-hero: linear-gradient(140deg, #0b2545 0%, #1353a4 55%, #1e6fcc 100%);
  --m-hero-title: #fff;
  --m-search-bg: #fff;
  --m-search-field: #f1f5f9;
  --m-card: #fff;
  --m-card-bd: #e9e9e9;
  --m-card-img: linear-gradient(135deg, #8fc4ff, #d6e9ff);
  --m-text: #99a9bb;
}
/* — Tema 3 · PREMIUM (luxo navy/gold) — */
.t-premium {
  --m-primary: #d4a843;
  --m-menu: rgba(212, 168, 67, 0.45);
  --m-hero: radial-gradient(120% 140% at 80% 0%, #1c2e4a 0%, #0b1526 100%);
  --m-hero-title: #e8c56d;
  --m-search-bg: #112240;
  --m-search-field: #1e3358;
  --m-card: #10203a;
  --m-card-bd: #22406b;
  --m-card-img: linear-gradient(135deg, #3b3b2e, #6b5a2a);
  --m-text: #5f7396;
}
/* — Tema 4 · CORRETOR (pessoal) — */
.t-corretor {
  --m-primary: #0fa971;
  --m-menu: #cbd5e1;
  --m-hero: linear-gradient(120deg, #ecfdf5, #d1fae5);
  --m-hero-title: #065f46;
  --m-search-bg: #fff;
  --m-search-field: #f0fdf4;
  --m-card: #fff;
  --m-card-bd: #e2e8f0;
  --m-card-img: linear-gradient(135deg, #a7f3d0, #d1fae5);
  --m-text: #94a3b8;
}
/* — Tema 5 · PORTAL (busca central) — */
.t-portal {
  --m-primary: #e25c4a;
  --m-menu: #e2e8f0;
  --m-hero: linear-gradient(180deg, #fff4f2, #ffe3de);
  --m-hero-title: #b3362a;
  --m-search-bg: #fff;
  --m-search-field: #fff1ee;
  --m-card: #fff;
  --m-card-bd: #ffe4df;
  --m-card-img: linear-gradient(135deg, #ffc9c0, #ffe5e0);
  --m-text: #c4a9a5;
}

/* Card flutuante de destaque do modelo */
.model-info-float {
  position: absolute;
  z-index: 3;
  left: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 22px);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  animation: floatIn 0.5s var(--ease) both;
}
.model-info-float .mnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.model-info-float b {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 0.92rem;
}
.model-info-float small {
  color: var(--gray-500);
  font-size: 0.78rem;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- PROVA SOCIAL / PORTAIS ---------- */
.portals {
  padding: 34px 0;
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
}
.portals-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.portals-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
}
.portal-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--t);
}
.portal-item svg {
  width: 19px;
  height: 19px;
}
.portal-item:hover {
  color: var(--gray-600);
}

/* ---------- MÉTRICAS ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric {
  text-align: center;
  padding: 26px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.metric .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.metric .label {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ---------- CARTÃO DE TOUR (Painel Admin) ---------- */
.section-kicker {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}
.tour-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  margin-bottom: 72px;
}

/* Barra estilo navegador — ecoa o mockup do hero */
.tour-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.tour-bar b {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gray-300);
  flex: 0 0 auto;
}
.tour-bar b:nth-child(1) {
  background: #fc605c;
}
.tour-bar b:nth-child(2) {
  background: #fcbc3f;
}
.tour-bar b:nth-child(3) {
  background: #34c759;
}
.tour-bar-url {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.8rem;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-bar-url svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  stroke: var(--green-500);
}
.tour-live {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}
.tour-info {
  padding: clamp(26px, 4vw, 40px);
}
.tour-info h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.tour-info > p {
  font-size: 0.98rem;
  max-width: 480px;
}

.tour-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.tour-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--gray-600);
}
.tour-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--blue-50);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}
.tour-step strong {
  color: var(--navy-900);
}

.tour-access {
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(
      420px 260px at 90% 0%,
      rgba(46, 134, 222, 0.2),
      transparent 60%
    ),
    var(--navy-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.tour-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.5);
}
.tour-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tour-creds .cred {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tour-creds .cred span {
  flex: 0 0 auto;
}
.tour-creds code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88rem;
  color: var(--gold-400);
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.28);
  border-radius: var(--r-sm);
  padding: 6px 12px;
}
.tour-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (max-width: 980px) {
  .tour-body {
    grid-template-columns: 1fr;
  }
  .tour-steps {
    grid-template-columns: 1fr;
  }
  .tour-live {
    display: none;
  }
}

/* ---------- RECURSOS ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-100);
}
.feature .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 18px;
}
.feature .ico svg {
  width: 24px;
  height: 24px;
}
.feature .ico.green {
  background: var(--green-100);
  color: var(--green-600);
}
.feature .ico.gold {
  background: var(--gold-100);
  color: var(--gold-600);
}
.feature h3 {
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.95rem;
}

/* ---------- PASSOS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: var(--sh-blue);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.step::after {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gray-300) 0 8px,
    transparent 8px 16px
  );
}
.step:last-child::after {
  display: none;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.92rem;
}

/* ---------- GALERIA DE MODELOS ---------- */
.models-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: all var(--t);
}
.filter-btn:hover {
  border-color: var(--gray-400);
}
.filter-btn.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
  gap: 28px;
}
.model-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.model-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.model-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.model-card:hover .model-thumb img {
  transform: scale(1.04);
}
.model-thumb .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: rgba(8, 24, 48, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.model-thumb .badge.recommend {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
}
.model-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.model-body h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.model-body h3 .m-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--m-primary, var(--blue-600));
  flex: 0 0 auto;
}
.model-body > p {
  font-size: 0.93rem;
  flex: 1;
}
.model-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.model-feats span {
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.74rem;
  font-weight: 600;
}
.model-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------- DEPOIMENTOS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blue-100);
  pointer-events: none;
}
.testimonial p {
  font-size: 0.96rem;
  flex: 1;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .who b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy-900);
}
.testimonial .who small {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* ---------- BLOG CARDS ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.post:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.post-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.post-thumb.c-blue {
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
}
.post-thumb.c-green {
  background: linear-gradient(135deg, var(--green-500), #0b6b4b);
}
.post-thumb.c-gold {
  background: linear-gradient(135deg, var(--gold-500), #8a6420);
}
.post-thumb svg {
  width: 56px;
  height: 56px;
  opacity: 0.9;
}
.post-thumb .cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.post-meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
}
.post-body h3 {
  font-size: 1.12rem;
}
.post-body p {
  font-size: 0.92rem;
  flex: 1;
}
.post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 600;
  font-size: 0.9rem;
}
.post-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t);
}
.post-link:hover svg {
  transform: translateX(4px);
}

/* ---------- PREÇO ---------- */
.pricing-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.pricing-left {
  padding: clamp(28px, 4vw, 48px);
}
.pricing-left h2 {
  margin: 14px 0 10px;
}
.pricing-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 24px;
}
.pricing-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--gray-600);
}
.pricing-feats svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green-500);
}
.pricing-right {
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(
      500px 300px at 90% 0%,
      rgba(212, 168, 67, 0.16),
      transparent 60%
    ),
    var(--navy-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
/* Periodicidades (Mensal · Trimestral · Semestral · Anual) na horizontal */
.billing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.billing-tabs .tag {
  flex: 1 1 auto;
  justify-content: center;
  white-space: nowrap;
  padding: 6px 10px;
  font-size: 0.72rem;
  letter-spacing: 0;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--t);
}
.billing-tabs .tag:hover {
  border-color: rgba(255, 255, 255, 0.45);
}
.billing-tabs .tag.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
}
.price-equiv {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.price-equiv:empty {
  display: none;
}
.price-old {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  font-size: 1.05rem;
}
.price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  color: #fff;
}
.price-now sup {
  font-size: 0.38em;
  font-weight: 700;
  vertical-align: super;
}
.price-now small {
  font-size: 0.3em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.price-period {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.countdown {
  display: flex;
  gap: 10px;
}
.cd-unit {
  min-width: 68px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
}
.cd-unit .n {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cd-unit .l {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.pricing-guarantee svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex: 0 0 auto;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.faq-item.open {
  border-color: var(--blue-100);
  box-shadow: var(--sh);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
}
.faq-q .sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 700;
  font-size: 1.1rem;
  flex: 0 0 auto;
  transition:
    transform var(--t),
    background var(--t);
}
.faq-item.open .sign {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: 0.95rem;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  text-align: center;
  padding: clamp(44px, 6vw, 72px) 28px;
  background:
    radial-gradient(
      700px 340px at 50% -20%,
      rgba(46, 134, 222, 0.3),
      transparent 60%
    ),
    var(--navy-950);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  max-width: 720px;
  margin: 16px auto 14px;
}
.cta-final p {
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ---------- FORMULÁRIOS ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-900);
}
.form-group label small {
  color: var(--gray-400);
  font-weight: 500;
}
.form-control {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: 0.95rem;
  transition:
    border-color var(--t),
    box-shadow var(--t);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(30, 111, 204, 0.12);
}
.form-control.error {
  border-color: var(--red-500);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--blue-600);
}

/* ---------- CONTATO ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  flex: 0 0 auto;
}
.contact-item .ico svg {
  width: 21px;
  height: 21px;
}
.contact-item b {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 0.95rem;
}
.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--gray-600);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--sh);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .logo img {
  height: 58px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-about {
  font-size: 0.9rem;
  margin-top: 18px;
  max-width: 300px;
}
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}
.footer-col a:hover {
  color: var(--gold-400);
}
.footer-news p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.news-form {
  display: flex;
  gap: 8px;
}
.news-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 0.9rem;
}
.news-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.news-form input:focus {
  outline: none;
  border-color: var(--gold-500);
}
.news-form .btn {
  padding: 12px 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--t);
}
.footer-social a:hover {
  background: var(--blue-600);
  color: #fff;
}
.footer-social svg {
  width: 17px;
  height: 17px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover {
  color: var(--gold-400);
}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform var(--t);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 32px;
  height: 32px;
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s var(--ease) infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ---------- POPUP / OVERLAY ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 13, 26, 0.72);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--t),
    visibility var(--t);
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 460px;
  width: 100%;
  padding: 40px 34px 32px;
  text-align: center;
  position: relative;
  transform: translateY(18px) scale(0.97);
  transition: transform var(--t-slow);
  max-height: 92vh;
  overflow-y: auto;
}
.overlay.show .popup {
  transform: none;
}
.popup .close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 1.3rem;
  line-height: 1;
  transition: all var(--t);
}
.popup .close:hover {
  background: var(--gray-200);
  color: var(--gray-700);
}
.popup .badge-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--gold-100);
  color: var(--gold-600);
  margin-bottom: 18px;
}
.popup .badge-ico svg {
  width: 32px;
  height: 32px;
}
.popup h3 {
  margin-bottom: 10px;
}
.popup .coupon {
  margin: 18px 0;
  padding: 14px;
  border: 2px dashed var(--gold-500);
  border-radius: var(--r);
  background: var(--gold-100);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  font-size: 1.05rem;
}
.popup-urgency {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 14px;
}
.popup-dismiss {
  display: block;
  margin: 14px auto 0;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: underline;
}

/* ---------- MODAL TESTE GRÁTIS ---------- */
.modal-teste {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--t),
    visibility var(--t);
}
.modal-teste.show {
  opacity: 1;
  visibility: visible;
}
.modal-teste-bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 26, 0.72);
  backdrop-filter: blur(5px);
}
.modal-teste-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 460px;
  width: 100%;
  padding: 40px 34px 30px;
  text-align: center;
  box-shadow: var(--sh-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform var(--t-slow);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-teste.show .modal-teste-card {
  transform: none;
}
.modal-teste-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 1.3rem;
  line-height: 1;
  transition: all var(--t);
}
.modal-teste-close:hover {
  background: var(--gray-200);
  color: var(--gray-700);
}
.modal-teste-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--gold-100);
  margin-bottom: 16px;
  font-size: 2rem;
}
.modal-teste-card h3 {
  margin-bottom: 12px;
}
.modal-teste-card > p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}
.modal-teste-card > p strong {
  color: var(--navy-900);
  font-weight: 700;
}
.modal-teste-card .btn-block {
  margin: 0;
}
.modal-teste-cancelar {
  display: block;
  margin: 14px auto 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  text-decoration: underline;
  background: none;
  border: 0;
  cursor: pointer;
}
.modal-teste-cancelar:hover {
  color: var(--gray-600);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  z-index: 2500;
  transform: translate(-50%, 140%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-900);
  color: #fff;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-lg);
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform var(--t-slow);
  max-width: min(92vw, 480px);
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast svg {
  width: 20px;
  height: 20px;
  color: var(--green-500);
  flex: 0 0 auto;
}

/* ---------- COOKIE / LGPD ---------- */
.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1800;
  max-width: 390px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-slow);
}
.cookie-banner.show {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.cookie-banner p {
  font-size: 0.84rem;
  margin: 0;
}

/* ---------- BLOG (página) ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(40px, 6vw, 72px)) 0
    clamp(36px, 5vw, 56px);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.page-hero p {
  max-width: 620px;
  margin: 14px auto 0;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--gray-500);
}
.breadcrumb a:hover {
  color: var(--blue-600);
}

/* Artigo */
.article-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.article-hero-img {
  aspect-ratio: 21/9;
  border-radius: var(--r-lg);
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.84rem;
  color: var(--gray-400);
  margin: 16px 0;
}
.article-meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
}
.article-content {
  font-size: 1.04rem;
}
.article-content h2 {
  font-size: 1.55rem;
  margin: 44px 0 16px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 30px 0 12px;
}
.article-content p {
  margin-bottom: 18px;
}
.article-content ul,
.article-content ol {
  margin: 0 0 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-600);
}
.article-content ul li {
  padding-left: 26px;
  position: relative;
}
.article-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}
.article-content ol {
  counter-reset: item;
  padding-left: 6px;
}
.article-content ol li {
  counter-increment: item;
  padding-left: 36px;
  position: relative;
}
.article-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 700;
}
.article-content blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  background: var(--blue-50);
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--navy-800);
}
.article-content strong {
  color: var(--navy-900);
}
.article-cta {
  margin: 44px 0;
  padding: 30px;
  background: var(--navy-900);
  border-radius: var(--r-lg);
  text-align: center;
}
.article-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 10px 0 20px;
}

/* ---------- TABELAS ---------- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.tbl th {
  text-align: left;
  padding: 13px 16px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
}
.tbl th:first-child {
  border-radius: var(--r-sm) 0 0 0;
}
.tbl th:last-child {
  border-radius: 0 var(--r-sm) 0 0;
}
.tbl td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.tbl tr:nth-child(even) td {
  background: var(--gray-50);
}

/* ---------- REVEAL / ANIMAÇÕES ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .model-stage {
    max-width: 640px;
    margin: 0 auto;
  }
  .grid-4,
  .metrics,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::after {
    display: none;
  }
  .features,
  .models-grid,
  .testimonials,
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .logo img {
    height: 44px;
  }

  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--sh-md);
    padding: 18px 24px 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav a.nav-link {
    padding: 13px 12px;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }
  .nav .btn {
    margin: 12px 0 0;
  }

  .hero {
    text-align: center;
  }
  .hero-sub {
    margin-inline: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
  }
  .model-tabs {
    justify-content: center;
  }
  .model-info-float {
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 40px);
    bottom: clamp(14px, 3vw, 22px);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .features,
  .models-grid,
  .testimonials,
  .posts,
  .metrics,
  .steps {
    grid-template-columns: 1fr;
  }
  .metrics {
    gap: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .pricing-feats {
    grid-template-columns: 1fr;
  }
  .model-ctas {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
  .wa-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
  .ms-cards {
    gap: 5px;
  }
  .mf-body {
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .hero-ctas .btn {
    width: 100%;
  }
  .cd-unit {
    min-width: 58px;
  }
  .portal-item {
    font-size: 0.84rem;
  }
}

/* ---------- ALERTAS DE FORMULÁRIO (envio real) ---------- */
.form-alert {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.form-alert.erro {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}
.form-alert.ok {
  background: var(--green-100);
  border-color: rgba(29, 181, 132, .35);
  color: var(--green-600);
}
/* Honeypot anti-spam: oculto para humanos, preenchível por bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- PÁGINAS JURÍDICAS ---------- */
.legal-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  padding: clamp(28px, 5vw, 56px);
}
.legal-card > .tag { margin-bottom: 16px; }
.legal-card h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.legal-card h3 {
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-100);
}
.legal-card h3:first-of-type { margin-top: 8px; }
.legal-card p { margin-bottom: 14px; }
.legal-card ul {
  margin: 0 0 18px 4px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--gray-600);
}
.legal-card ul li { padding-left: 22px; position: relative; }
.legal-card ul li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-600);
}
.legal-card strong { color: var(--navy-900); }

/* ---------- CAPTCHA ---------- */
.cap-widget {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 6px;
}
.cap-label {
  font-size: .84rem; font-weight: 600; color: var(--navy-900);
}
.cap-row { display: flex; align-items: center; gap: 10px; }
.cap-row img {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--gray-50);
  height: 52px; width: auto;
  flex: 0 0 auto;
}
.cap-refresh {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: var(--r-sm);
  background: var(--gray-100); color: var(--gray-600);
  transition: all var(--t);
}
.cap-refresh:hover { background: var(--gray-200); color: var(--navy-900); }
.cap-input { max-width: 220px; }
.cap-widget.compact .cap-input { max-width: 100%; }

/* Versão sobre fundo escuro (footer) */
.cap-widget.on-dark .cap-label { color: #fff; }
.cap-widget.on-dark .cap-row img {
  border-color: rgba(255,255,255,.2);
  background: #fff;
}
.cap-widget.on-dark .cap-refresh {
  background: rgba(255,255,255,.1); color: #fff;
}
.cap-widget.on-dark .cap-refresh:hover { background: rgba(255,255,255,.2); }
.cap-widget.on-dark .cap-input {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.cap-widget.on-dark .cap-input::placeholder { color: rgba(255,255,255,.4); }
.cap-widget.on-dark .cap-input:focus { border-color: var(--gold-500); }

/* Newsletter do footer com captcha: input + botão em linha, captcha abaixo */
.news-form { flex-wrap: wrap; }
.news-form .cap-widget { flex-basis: 100%; margin-top: 12px; }

/* ---------- SPOTLIGHT DE IA (seção Recursos) ---------- */
.ai-spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 40px 0 52px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-200);
  background: #fff;
  position: relative;
}
.ai-spot-top {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: linear-gradient(120deg, var(--navy-900), var(--blue-700) 130%);
  color: #fff;
}
.ai-spot-top .badge-ia {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  border-radius: var(--r-pill);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; text-transform: uppercase;
  flex: 0 0 auto;
}
.ai-spot-top h3 { color: #fff; font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

.ai-spot-col {
  padding: 26px clamp(22px, 3vw, 36px);
  display: flex; align-items: flex-start; gap: 16px;
}
.ai-spot-col + .ai-spot-col { border-left: 1px solid var(--gray-200); }
.ai-spot-col .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue-600);
  flex: 0 0 auto;
}
.ai-spot-col .ico.gold { background: var(--gold-100); color: var(--gold-600); }
.ai-spot-col h4 { font-family: var(--font-display); color: var(--navy-900); font-size: 1.02rem; margin-bottom: 6px; }
.ai-spot-col p { font-size: .92rem; margin: 0; }

/* ---------- Demonstração animada (ditado → ficha → descrição) ---------- */
.ai-anim {
  grid-column: 1 / -1;
  padding: 22px clamp(22px, 3vw, 36px) 26px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.aa-steps {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 16px;
}
.aa-step {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1.5px solid var(--gray-200);
  font-size: .8rem; font-weight: 600; color: var(--gray-400);
  transition: all .4s var(--ease);
}
.aa-step.aa-on {
  border-color: var(--blue-600); color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(30,111,204,.12);
}
.aa-sep { color: var(--gray-300); font-size: .85rem; }

.ai-demo {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  min-height: 108px;
  display: flex; flex-direction: column; gap: 12px;
}
.ai-demo .ditado {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .9rem; color: var(--gray-700);
  min-height: 1.5em;
}
.aa-mic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  flex: 0 0 auto;
  margin-top: -3px;
  visibility: hidden;
}
.aa-mic.live { visibility: visible; }
.aa-mic.live svg { animation: micPulse 1.2s ease-in-out infinite; }
@keyframes micPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: .75; }
}
.aa-caret {
  display: inline-block;
  width: 2px; height: 1.05em;
  background: var(--blue-600);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: caretBlink 0.9s step-end infinite;
}
@keyframes caretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.ai-demo .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ai-demo .chips span {
  padding: 4px 11px;
  background: var(--green-100); color: var(--green-600);
  border: 1px solid rgba(29,181,132,.3);
  border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 700;
  opacity: 0; transform: scale(.7);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.ai-demo .chips span.on { opacity: 1; transform: scale(1); }

/* Estado final quando usuário prefere menos movimento */
.ai-anim.aa-static .chips span { opacity: 1; transform: none; }
.ai-anim.aa-static .aa-caret { display: none; }

.ai-spot-foot {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.ai-spot-foot .priv {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--gray-500);
}
.ai-spot-foot .priv svg { flex: 0 0 auto; color: var(--green-600); }

@media (max-width: 900px) {
  .ai-spotlight { grid-template-columns: 1fr; }
  .ai-spot-col + .ai-spot-col { border-left: none; border-top: 1px solid var(--gray-200); }
  .ai-spot-top { flex-wrap: wrap; }
}

/* ---------- FUNIL DE VENDAS ANIMADO (CRM) ---------- */
.funil-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 64px); align-items: center;
}
.funil-visual { position: relative; }

.funnel { position: relative; }
.f-stage {
  width: var(--w, 100%);
  margin-inline: auto;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 0 18px;
  border-radius: var(--r-sm);
  background: linear-gradient(120deg, var(--blue-500), var(--blue-700));
  color: #fff;
  margin-bottom: 12px;
  box-shadow: var(--sh);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.funnel.visible .f-stage { opacity: 1; transform: none; }
.funnel.visible .f-stage:nth-child(2) { transition-delay: .12s; }
.funnel.visible .f-stage:nth-child(3) { transition-delay: .24s; }
.funnel.visible .f-stage:nth-child(4) { transition-delay: .36s; }
.funnel.visible .f-stage:nth-child(5) { transition-delay: .48s; }
.f-stage .f-label {
  font-size: .84rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.f-stage .f-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.f-stage.s2 { background: linear-gradient(120deg, var(--blue-600), var(--blue-700)); }
.f-stage.s3 { background: linear-gradient(120deg, var(--blue-700), var(--navy-700)); }
.f-stage.s4 { background: linear-gradient(120deg, var(--navy-700), var(--navy-900)); }
.f-stage.gold {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  position: relative;
}
.f-stage.gold::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: calc(var(--r-sm) + 3px);
  border: 2px solid var(--gold-400);
  animation: goldPulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes goldPulse {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.06); opacity: 0; }
}

/* Partículas de leads caindo pelo funil */
.f-dots {
  position: absolute; inset: 0;
  pointer-events: none;
}
.f-dots i {
  position: absolute; left: 50%; top: 0;
  width: 7px; height: 7px; margin-left: -3.5px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(30,111,204,.15);
  animation: fFlow 3.6s linear infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
.f-dots i.ouro {
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,168,67,.2);
}
@keyframes fFlow {
  0%   { transform: translateY(-8px); opacity: 0; }
  6%   { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateY(var(--flow, 328px)); opacity: 0; }
}

/* Cards flutuantes ao redor do funil */
.fc-card {
  position: absolute; z-index: 2;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r); box-shadow: var(--sh-md);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--navy-900);
  white-space: nowrap;
  animation: fcBob 3.6s ease-in-out infinite;
}
.fc-card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--green-100); color: var(--green-600); flex: 0 0 auto;
}
.fc-card .ico.gold { background: var(--gold-100); color: var(--gold-600); }
.fc-card .ico svg { width: 15px; height: 15px; }
.fc-1 { top: 8%; right: -18px; animation-delay: .3s; }
.fc-2 { bottom: 12%; left: -14px; }
@keyframes fcBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Texto do lado do funil */
.funil-info .tag { margin-bottom: 14px; }
.funil-info h2 { margin-bottom: 16px; }
.funil-info > p { font-size: 1.02rem; }
.funil-checks {
  display: flex; flex-direction: column; gap: 12px;
  margin: 22px 0 28px;
}
.funil-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--gray-600); font-size: .96rem;
}
.funil-checks svg {
  width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px;
  color: var(--green-500);
}
.funil-nota { font-size: .78rem; color: var(--gray-400); margin-top: 18px; }

@media (max-width: 1080px) {
  .funil-grid { grid-template-columns: 1fr; }
  .funil-visual { max-width: 560px; margin-inline: auto; }
  .fc-1 { right: 0; }
  .fc-2 { left: 0; }
}
@media (max-width: 560px) {
  .f-stage { height: 50px; padding: 0 12px; }
  .f-stage .f-label { font-size: .74rem; }
  .f-stage .f-num { font-size: .9rem; }
  .fc-card { font-size: .74rem; padding: 8px 12px; }
}
