/* =============================================================
   NEXO IMOB — Landing Page v2
   Light premium · Inter + Plus Jakarta Sans
   ============================================================= */

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

:root {
  /* Backgrounds */
  --bg:          #F7F9FF;
  --bg-soft:     #EEF2FF;
  --white:       #FFFFFF;
  --ink:         #0B1220;

  /* Brand */
  --primary:     #4F67F0;
  --primary-d:   #3B50D6;
  --secondary:   #7C3AED;
  --accent:      #06B6D4;
  --green:       #16A34A;
  --wa:          #25D366;
  --amber:       #F59E0B;
  --rose:        #E11D48;

  --grad:        linear-gradient(135deg, #4F67F0 0%, #7C3AED 100%);
  --grad-soft:   linear-gradient(135deg, rgba(79,103,240,.10), rgba(124,58,237,.10));

  /* Text */
  --t0: #0B1220;
  --t1: #313D55;
  --t2: #5B6478;
  --t3: #94A3B8;

  /* Borders */
  --line:     rgba(30, 41, 82, .10);
  --line-hov: rgba(79, 103, 240, .40);

  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --tr:   all .25s var(--ease);

  --sh-1: 0 1px 2px rgba(11,18,32,.05), 0 4px 18px rgba(11,18,32,.06);
  --sh-2: 0 2px 6px rgba(11,18,32,.06), 0 14px 44px rgba(11,18,32,.10);
  --sh-3: 0 24px 70px -12px rgba(31,41,82,.22);
  --sh-glow: 0 10px 34px -6px rgba(79,103,240,.45);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--display); color: var(--t0); line-height: 1.12; letter-spacing: -.02em; }

::selection { background: rgba(79,103,240,.22); }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 7px 16px;
  background: #fff;
  border: 1px solid rgba(79,103,240,.25);
  border-radius: 100px;
  box-shadow: var(--sh-1);
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%     { transform: scale(1.7); opacity: .55; }
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub { font-size: 17.5px; color: var(--t2); line-height: 1.7; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: var(--tr);
}
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -6px rgba(79,103,240,.55); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { color: var(--t1); }
.btn-ghost:hover { color: var(--primary); background: rgba(79,103,240,.07); }

.btn-outline {
  background: #fff;
  color: var(--t0);
  border-color: var(--line);
  box-shadow: var(--sh-1);
}
.btn-outline:hover { border-color: var(--line-hov); color: var(--primary); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--primary-d);
  box-shadow: 0 10px 30px rgba(6,10,25,.28);
}
.btn-white:hover { transform: translateY(-2px); }

.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ─── NAV ────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: var(--tr);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(30,41,82,.08);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(11,18,32,.06);
  transition: var(--tr);
}
#nav.scrolled .nav-inner {
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 30px rgba(11,18,32,.10);
}
@media (min-width: 981px) {
  .nav-inner { margin: 0 24px; }
}
@media (min-width: 1240px) {
  .nav-inner { margin: 0 auto; }
}

.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo-image { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--t1);
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--tr);
}
.nav-links a:hover { color: var(--primary); background: rgba(79,103,240,.07); }

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

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--t0);
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}
.nav-mobile-btn:hover { background: rgba(79,103,240,.08); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 84px; left: 16px; right: 16px;
  z-index: 99;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: 12px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--t1);
}
.mobile-menu a:hover { background: var(--bg-soft); color: var(--primary); }
.mobile-menu .mm-cta {
  margin-top: 8px;
  background: var(--grad);
  color: #fff;
  text-align: center;
}
.mobile-menu .mm-cta:hover { color: #fff; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .mesh-1, .hero-bg .mesh-2, .hero-bg .mesh-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-bg .mesh-1 {
  width: 620px; height: 620px;
  top: -230px; right: -140px;
  background: radial-gradient(circle, rgba(124,58,237,.16), transparent 65%);
}
.hero-bg .mesh-2 {
  width: 560px; height: 560px;
  top: -120px; left: -200px;
  background: radial-gradient(circle, rgba(79,103,240,.17), transparent 65%);
}
.hero-bg .mesh-3 {
  width: 460px; height: 460px;
  bottom: -220px; left: 34%;
  background: radial-gradient(circle, rgba(6,182,212,.12), transparent 65%);
}
.hero-bg .grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,41,82,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,82,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 650;
  color: var(--t1);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  padding: 8px 16px 8px 9px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero-badge .chip {
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .02em;
}

.hero-headline {
  font-size: clamp(36px, 4.9vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18.5px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--t0); font-weight: 650; }

.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; color: #fff;
  margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg,#4F67F0,#818CF8); }
.av-2 { background: linear-gradient(135deg,#7C3AED,#A78BFA); }
.av-3 { background: linear-gradient(135deg,#06B6D4,#67E8F9); }
.av-4 { background: linear-gradient(135deg,#16A34A,#4ADE80); }
.hero-proof-text { font-size: 13.5px; color: var(--t2); line-height: 1.45; }
.hero-proof-text strong { color: var(--t0); }
.hero-proof-text .stars { color: var(--amber); letter-spacing: 1.5px; font-size: 12px; }

/* Hero visual — browser + phone */
.hero-visual { position: relative; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% -6% -4% -8%;
  background: var(--grad);
  opacity: .13;
  filter: blur(60px);
  border-radius: 50%;
}

.mock-browser {
  position: relative;
  background: #fff;
  border: 1px solid rgba(30,41,82,.09);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
  transform: rotate(.6deg);
}
.mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #FBFCFF;
  border-bottom: 1px solid rgba(30,41,82,.07);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FEBC2E; }
.mock-dots span:nth-child(3) { background: #28C840; }
.mock-url {
  flex: 1;
  max-width: 260px;
  font-size: 11.5px;
  color: var(--t3);
  background: #fff;
  border: 1px solid rgba(30,41,82,.08);
  padding: 5px 12px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
}
.mock-url svg { flex-shrink: 0; color: var(--green); }

.mock-body { padding: 18px 18px 20px; }
.mock-greet { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.mock-greet-name { font-size: 14.5px; font-weight: 700; color: var(--t0); }
.mock-greet-date { font-size: 11px; color: var(--t3); font-weight: 600; }

.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.mock-kpi {
  background: #FBFCFF;
  border: 1px solid rgba(30,41,82,.07);
  border-radius: 12px;
  padding: 10px 12px;
}
.mock-kpi-n { font-size: 19px; font-weight: 800; color: var(--t0); font-family: var(--display); }
.mock-kpi-n.green { color: var(--green); }
.mock-kpi-l { font-size: 10.5px; color: var(--t2); font-weight: 600; }
.mock-kpi-t { font-size: 9.5px; color: var(--green); font-weight: 700; }

.mock-funnel { margin-bottom: 12px; }
.mock-funnel-label, .mock-visits-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 8px;
}
.mock-funnel-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.funnel-col {
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(30,41,82,.07);
  background: #FBFCFF;
}
.funnel-col .fc-name { font-size: 9.5px; font-weight: 700; color: var(--t2); display: flex; align-items: center; gap: 5px; }
.funnel-col .fc-name i { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.funnel-col .fc-count { font-size: 15px; font-weight: 800; color: var(--t0); font-family: var(--display); }
.fcol-lead i  { background: var(--primary); }
.fcol-ativo i { background: var(--accent); }
.fcol-neg i   { background: var(--amber); }
.fcol-fech i  { background: var(--green); }

.mock-visit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(30,41,82,.06);
  background: #fff;
  margin-bottom: 6px;
}
.mv-avatar {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--grad-soft);
  color: var(--primary);
  font-size: 11.5px; font-weight: 750;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mv-name { font-size: 12px; font-weight: 650; color: var(--t0); line-height: 1.25; }
.mv-prop { font-size: 10.5px; color: var(--t3); }
.mv-time {
  margin-left: auto;
  font-size: 10.5px; font-weight: 700;
  color: var(--primary);
  background: rgba(79,103,240,.09);
  padding: 3px 9px;
  border-radius: 100px;
}

/* Phone mock */
.mock-phone {
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 172px;
  background: #fff;
  border: 1px solid rgba(30,41,82,.1);
  border-radius: 26px;
  box-shadow: var(--sh-3);
  padding: 10px;
  transform: rotate(-2.4deg);
  z-index: 3;
}
.mock-phone-notch {
  width: 64px; height: 5px;
  background: rgba(30,41,82,.12);
  border-radius: 100px;
  margin: 2px auto 9px;
}
.phone-cover {
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4F67F0, #7C3AED 80%);
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.phone-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 16px 16px;
}
.phone-avatar {
  position: absolute;
  top: 46px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg,#06B6D4,#4F67F0);
  border: 3px solid #fff;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  z-index: 2;
}
.phone-name { text-align: center; font-size: 11px; font-weight: 750; color: var(--t0); }
.phone-role { text-align: center; font-size: 8.5px; color: var(--t3); font-weight: 600; margin-bottom: 8px; }
.phone-prop {
  border: 1px solid rgba(30,41,82,.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 6px;
}
.phone-prop-img { height: 44px; position: relative; }
.pp-1 .phone-prop-img { background: linear-gradient(120deg, #A5B4FC, #6D83F2 65%, #4F67F0); }
.pp-2 .phone-prop-img { background: linear-gradient(120deg, #67E8F9, #22B8CF 60%, #0891B2); }
.phone-prop-img::after {
  content: '';
  position: absolute;
  inset: auto 6px 5px auto;
  width: 30px; height: 12px;
  background: rgba(255,255,255,.9);
  border-radius: 100px;
}
.phone-prop-info { padding: 6px 8px; }
.phone-prop-name { font-size: 9px; font-weight: 700; color: var(--t0); line-height: 1.2; }
.phone-prop-price { font-size: 9.5px; font-weight: 800; color: var(--primary); }
.phone-cta {
  margin-top: 8px;
  background: var(--wa);
  border-radius: 100px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 750;
  text-align: center;
  padding: 7px 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30,41,82,.08);
  border-radius: 16px;
  box-shadow: var(--sh-2);
  padding: 12px 15px;
  z-index: 4;
  animation: float-y 5.5s ease-in-out infinite;
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
.float-wa {
  top: -24px; left: -34px;
  display: flex; align-items: center; gap: 10px;
  animation-delay: .6s;
}
.float-wa .wa-ic {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: rgba(37,211,102,.13);
  color: #1DA851;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-wa .fw-t { font-size: 12px; font-weight: 750; color: var(--t0); line-height: 1.3; }
.float-wa .fw-s { font-size: 10.5px; color: var(--t2); font-weight: 550; }

.float-meta {
  bottom: -26px; left: -38px;
  min-width: 150px;
}
.float-meta .fm-l { font-size: 10.5px; font-weight: 650; color: var(--t2); margin-bottom: 5px; }
.float-meta .fm-row { display: flex; align-items: baseline; gap: 7px; margin-bottom: 7px; }
.float-meta .fm-v { font-size: 19px; font-weight: 800; color: var(--t0); font-family: var(--display); }
.float-meta .fm-up { font-size: 10.5px; color: var(--green); font-weight: 750; }
.float-meta .fm-bar { height: 6px; border-radius: 100px; background: var(--bg-soft); overflow: hidden; }
.float-meta .fm-bar i { display: block; height: 100%; width: 68%; border-radius: 100px; background: var(--grad); }

/* ─── PROOF BAR ──────────────────────────────────────────────── */
.stats-bar {
  position: relative;
  padding: 52px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.proof-cell { text-align: center; }
.proof-ic {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 15px;
  background: var(--grad-soft);
  border: 1px solid rgba(79,103,240,.18);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.proof-t {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--t0);
  margin-bottom: 5px;
}
.proof-d {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.55;
  max-width: 230px;
  margin: 0 auto;
}

/* ─── PAIN / SOLUTION ────────────────────────────────────────── */
.pain { padding: 110px 0 40px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-1);
  transition: var(--tr);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-hov); }
.pain-q {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16.5px;
  font-weight: 700;
  font-family: var(--display);
  color: var(--t0);
  line-height: 1.4;
  margin-bottom: 14px;
}
.pain-q .x {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 9px;
  background: rgba(225,29,72,.09);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pain-a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--t2);
  line-height: 1.6;
}
.pain-a .v {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 9px;
  background: rgba(22,163,74,.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pain-a strong { color: var(--t0); font-weight: 650; }

/* ─── FEATURES BENTO ─────────────────────────────────────────── */
#features { padding: 110px 0; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-hov); }
.b-lg { grid-column: span 3; }
.b-sm { grid-column: span 2; }

.bento-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bi-wa     { background: rgba(37,211,102,.12);  color: #1DA851; }
.bi-blue   { background: rgba(79,103,240,.11);  color: var(--primary); }
.bi-purple { background: rgba(124,58,237,.1);   color: var(--secondary); }
.bi-teal   { background: rgba(6,182,212,.11);   color: #0891B2; }
.bi-amber  { background: rgba(245,158,11,.13);  color: #B45309; }
.bi-green  { background: rgba(22,163,74,.11);   color: var(--green); }

.bento-title { font-size: 19px; font-weight: 750; margin-bottom: 8px; }
.bento-desc { font-size: 14.5px; color: var(--t2); line-height: 1.65; }

.bento-visual { margin-top: 22px; }

/* WhatsApp mini-chat visual */
.wa-demo { display: flex; flex-direction: column; gap: 8px; }
.wa-bubble {
  max-width: 88%;
  background: #F2FBF5;
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 13px 13px 13px 4px;
  padding: 9px 13px;
  font-size: 12.5px;
  color: var(--t1);
}
.wa-bubble .wa-from { font-size: 10.5px; font-weight: 750; color: #1DA851; display: block; }
.wa-convert {
  align-self: flex-end;
  display: flex; align-items: center; gap: 8px;
  background: var(--grad-soft);
  border: 1px dashed rgba(79,103,240,.4);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
}

/* Portfolio analytics visual */
.pf-demo { display: flex; flex-direction: column; gap: 8px; }
.pf-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: var(--t1);
}
.pf-row .pf-name { width: 108px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pf-row .pf-bar { flex: 1; height: 9px; border-radius: 100px; background: var(--bg-soft); overflow: hidden; }
.pf-row .pf-bar i { display: block; height: 100%; border-radius: 100px; background: var(--grad); }
.pf-row .pf-time { width: 48px; text-align: right; font-size: 11px; color: var(--t2); font-weight: 700; flex-shrink: 0; }
.pf-lead {
  margin-top: 6px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700;
  color: var(--green);
  background: rgba(22,163,74,.08);
  border-radius: 100px;
  padding: 7px 13px;
  align-self: flex-start;
}

/* Small bento visuals */
.mini-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mk-col { background: #FBFCFF; border: 1px solid rgba(30,41,82,.07); border-radius: 10px; padding: 7px; }
.mk-col .mk-h { font-size: 9px; font-weight: 750; color: var(--t3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
.mk-card { height: 17px; border-radius: 6px; background: var(--bg-soft); margin-bottom: 4px; }
.mk-card.hl { background: var(--grad); opacity: .85; }

.mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mini-cal span {
  aspect-ratio: 1;
  border-radius: 7px;
  background: #FBFCFF;
  border: 1px solid rgba(30,41,82,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 650; color: var(--t3);
}
.mini-cal span.ev { background: var(--grad-soft); border-color: rgba(79,103,240,.3); color: var(--primary); font-weight: 800; }
.mini-cal span.today { background: var(--grad); color: #fff; border-color: transparent; font-weight: 800; }

.ia-demo {
  background: #FBFCFF;
  border: 1px solid rgba(30,41,82,.08);
  border-radius: 13px;
  padding: 13px 15px;
}
.ia-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.ia-tags span {
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(124,58,237,.09);
  color: var(--secondary);
  border: 1px solid rgba(124,58,237,.2);
}
.ia-line { height: 7px; border-radius: 100px; background: var(--bg-soft); margin-bottom: 6px; }
.ia-line.w80 { width: 80%; }
.ia-line.w60 { width: 60%; }
.ia-cursor {
  display: inline-block;
  width: 8px; height: 13px;
  background: var(--secondary);
  border-radius: 2px;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.map-demo {
  position: relative;
  height: 120px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 40%, rgba(79,103,240,.09), transparent 42%),
    radial-gradient(circle at 72% 60%, rgba(6,182,212,.1), transparent 42%),
    #FBFCFF;
  border: 1px solid rgba(30,41,82,.08);
  overflow: hidden;
}
.map-demo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,41,82,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,82,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.map-pin {
  position: absolute;
  width: 25px; height: 25px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: var(--grad);
  box-shadow: 0 5px 14px rgba(79,103,240,.4);
  display: flex; align-items: center; justify-content: center;
}
.map-pin::after { content:''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.map-pin.p1 { top: 26px; left: 24%; }
.map-pin.p2 { top: 58px; left: 55%; }
.map-pin.p3 { top: 30px; left: 76%; background: linear-gradient(135deg,#06B6D4,#0891B2); box-shadow: 0 5px 14px rgba(6,182,212,.4); }

.goal-demo { display: flex; align-items: center; gap: 16px; }
.goal-ring { position: relative; width: 84px; height: 84px; flex-shrink: 0; }
.goal-ring svg { transform: rotate(-90deg); }
.goal-ring .gr-val {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 17px; font-weight: 800; color: var(--t0);
}
.goal-lines { flex: 1; }
.goal-line { margin-bottom: 9px; }
.goal-line .gl-t { display: flex; justify-content: space-between; font-size: 11px; font-weight: 650; color: var(--t2); margin-bottom: 4px; }
.goal-line .gl-bar { height: 6px; border-radius: 100px; background: var(--bg-soft); overflow: hidden; }
.goal-line .gl-bar i { display: block; height: 100%; border-radius: 100px; background: var(--grad); }

/* ─── SPOTLIGHT (Portfólio) ─────────────────────────────────── */
.spotlight {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #0A1029 0%, #101A3E 55%, #0A1029 100%);
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -320px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79,103,240,.3), transparent 62%);
  filter: blur(60px);
}
.spotlight .eyebrow {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: #A5B4FC;
  box-shadow: none;
}
.spot-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.spot-title {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  margin-bottom: 18px;
}
.spot-title .text-grad {
  background: linear-gradient(135deg, #8B9CF7, #C4B5FD);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spot-sub { color: rgba(226,232,255,.75); font-size: 17px; line-height: 1.7; margin-bottom: 30px; }
.spot-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.spot-item { display: flex; gap: 14px; align-items: flex-start; }
.spot-item .si-ic {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 11px;
  background: rgba(139,156,247,.14);
  border: 1px solid rgba(139,156,247,.25);
  color: #A5B4FC;
  display: flex; align-items: center; justify-content: center;
}
.spot-item .si-t { color: #fff; font-weight: 700; font-size: 15.5px; font-family: var(--display); }
.spot-item .si-d { color: rgba(226,232,255,.66); font-size: 14px; line-height: 1.6; }

/* Spotlight visual — analytics card */
.spot-visual { position: relative; }
.spot-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.spot-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.spot-card-title { color: #fff; font-size: 15px; font-weight: 750; font-family: var(--display); }
.spot-live {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  color: #4ADE80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  padding: 5px 12px;
  border-radius: 100px;
}
.spot-live i { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse-dot 1.8s ease-in-out infinite; }

.spot-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.spot-kpi {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 13px 15px;
}
.spot-kpi .sk-v { color: #fff; font-size: 21px; font-weight: 800; font-family: var(--display); line-height: 1.15; }
.spot-kpi .sk-l { color: rgba(226,232,255,.6); font-size: 10.5px; font-weight: 600; }

.spot-rank-label {
  color: rgba(226,232,255,.55);
  font-size: 10.5px; font-weight: 750;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.spot-rank { display: flex; flex-direction: column; gap: 10px; }
.spot-rank-row { display: flex; align-items: center; gap: 12px; }
.srr-pos {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(139,156,247,.15);
  color: #A5B4FC;
  font-size: 10.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.srr-name { color: rgba(240,244,255,.9); font-size: 12.5px; font-weight: 600; width: 138px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srr-bar { flex: 1; height: 8px; border-radius: 100px; background: rgba(255,255,255,.08); overflow: hidden; }
.srr-bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, #4F67F0, #A78BFA); }
.srr-time { color: rgba(226,232,255,.65); font-size: 11px; font-weight: 700; width: 46px; text-align: right; flex-shrink: 0; }

.spot-float {
  position: absolute;
  right: -18px; top: -26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 11px;
  animation: float-y 6s ease-in-out infinite;
  z-index: 2;
}
.spot-float .sf-ic {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: rgba(37,211,102,.13);
  color: #1DA851;
  display: flex; align-items: center; justify-content: center;
}
.spot-float .sf-t { font-size: 12.5px; font-weight: 750; color: var(--t0); line-height: 1.3; }
.spot-float .sf-s { font-size: 10.5px; color: var(--t2); }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.hiw { padding: 110px 0; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.hiw-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px 30px;
  box-shadow: var(--sh-1);
  transition: var(--tr);
}
.hiw-step:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-hov); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-glow);
  margin-bottom: 20px;
}
.step-title { font-size: 19px; font-weight: 750; margin-bottom: 10px; }
.step-desc { font-size: 14.5px; color: var(--t2); line-height: 1.65; }
.step-time {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 11.5px; font-weight: 700;
  color: var(--primary);
  background: rgba(79,103,240,.08);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testis { padding: 110px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-hov); }
.testi-stars { color: var(--amber); font-size: 14px; letter-spacing: 2.5px; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: var(--t1); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 15px; font-weight: 750;
  display: flex; align-items: center; justify-content: center;
}
.testi-name { font-size: 14.5px; font-weight: 700; color: var(--t0); }
.testi-role { font-size: 12.5px; color: var(--t2); }

/* ─── PRICING ────────────────────────────────────────────────── */
#planos { padding: 110px 0; }
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px;
  box-shadow: var(--sh-1);
  margin-top: 28px;
}
.tog-btn {
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 650;
  color: var(--t2);
  padding: 9px 20px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--tr);
}
.tog-btn.active { background: var(--grad); color: #fff; box-shadow: var(--sh-glow); }
.save-chip {
  font-size: 11px; font-weight: 800;
  background: rgba(22,163,74,.13);
  color: var(--green);
  padding: 3px 8px;
  border-radius: 100px;
}
.tog-btn.active .save-chip { background: rgba(255,255,255,.22); color: #fff; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 30px 30px;
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--line-hov); }
.plan-card.pop {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  box-shadow: 0 22px 60px -14px rgba(79,103,240,.35);
}
.pop-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: .05em;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: var(--sh-glow);
  white-space: nowrap;
}
.plan-name { font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--t0); margin-bottom: 4px; }
.plan-desc { font-size: 13.5px; color: var(--t2); line-height: 1.55; margin-bottom: 20px; min-height: 42px; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.plan-cur { font-size: 16px; font-weight: 700; color: var(--t2); }
.plan-amt { font-family: var(--display); font-size: 46px; font-weight: 800; color: var(--t0); letter-spacing: -.03em; line-height: 1; }
.plan-per { font-size: 14.5px; color: var(--t2); font-weight: 600; }
.plan-bill-note { font-size: 12px; color: var(--green); font-weight: 700; min-height: 18px; margin-bottom: 18px; }
.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--t1); line-height: 1.45;
}
.plan-feats svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.plan-cta { width: 100%; }
.plan-trial-note { text-align: center; font-size: 12px; color: var(--t3); margin-top: 12px; }

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--t2);
  font-weight: 550;
  flex-wrap: wrap;
  text-align: center;
}
.pricing-guarantee svg { color: var(--green); flex-shrink: 0; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 110px 0; background: #fff; border-top: 1px solid var(--line); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--tr);
}
.faq-item:hover { border-color: var(--line-hov); }
.faq-item[open] { background: #fff; border-color: var(--line-hov); box-shadow: var(--sh-1); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 24px;
  font-size: 15.5px;
  font-weight: 650;
  color: var(--t0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: currentColor;
  color: var(--t3);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M11 5v12M5 11h12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M11 5v12M5 11h12'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: var(--tr);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 660px;
}

/* ─── SEO COPY ───────────────────────────────────────────────── */
.seo-copy { padding: 96px 0; }
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 26px; }
.seo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-1);
}
.seo-card h3 { font-size: 16.5px; font-weight: 750; margin-bottom: 10px; line-height: 1.4; }
.seo-card p { font-size: 14px; color: var(--t2); line-height: 1.7; }
.seo-cities {
  background: var(--grad-soft);
  border: 1px solid rgba(79,103,240,.16);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  text-align: center;
}
.seo-cities h3 { font-size: 15.5px; font-weight: 750; margin-bottom: 6px; }
.seo-cities p { font-size: 13.5px; color: var(--t2); line-height: 1.7; max-width: 740px; margin: 0 auto; }

/* ─── CTA FINAL ──────────────────────────────────────────────── */
.cta-final { padding: 40px 0 110px; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, #1B2559 0%, #4F67F0 52%, #7C3AED 100%);
  border-radius: var(--r-xl);
  padding: 76px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 34px 90px -18px rgba(59,80,214,.55);
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 20%, transparent 78%);
}
.cta-inner > * { position: relative; }
.cta-title {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.cta-sub { color: rgba(236,240,255,.85); font-size: 17.5px; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(236,240,255,.72);
  font-weight: 550;
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.cta-note span { display: inline-flex; align-items: center; gap: 7px; }
.cta-note svg { color: #A0F0BE; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t0);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--t2); transition: var(--tr); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--t3);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-content { gap: 40px; }
  .mock-phone { right: -10px; }
  .float-wa { left: -12px; }
  .float-meta { left: -16px; }
}

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-mobile-btn { display: flex; }

  .hero { padding-top: 140px; }
  .hero-content { grid-template-columns: 1fr; gap: 70px; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-proof { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .pain-grid, .hiw-steps, .testi-grid, .seo-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .bento { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .b-lg, .b-sm { grid-column: span 1; }
  .spot-grid { grid-template-columns: 1fr; gap: 56px; }
  .spot-float { right: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  #nav { padding: 10px 0; }
  .nav-inner { margin: 0 12px; padding: 8px 10px 8px 16px; }
  .nav-logo-image { height: 28px; }

  .hero { padding-top: 122px; }
  .hero-headline { font-size: clamp(31px, 8.6vw, 38px); }
  .hero-sub { font-size: 16.5px; }
  .hero-ctas .btn-lg { width: 100%; }

  .mock-phone { width: 138px; right: -6px; bottom: -22px; }
  .float-wa { top: -18px; left: -6px; padding: 10px 12px; }
  .float-meta { display: none; }
  .mock-funnel-cols { grid-template-columns: repeat(2, 1fr); }

  .stats-bar { padding: 44px 0; }
  .pain, #features, .hiw, .testis, #planos, .faq, .spotlight { padding: 76px 0; }
  .seo-copy { padding: 70px 0; }
  .cta-final { padding-bottom: 76px; }
  .cta-inner { padding: 56px 24px; }
  .cta-btns .btn-lg { width: 100%; }

  .plan-card { padding: 30px 24px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .spot-float, .eyebrow .dot, .ia-cursor, .spot-live i { animation: none; }
}
