/* =====================================================
   LIMA — style.css
   Dark premium · Neon green accent · Conversion-first
   ===================================================== */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0A0A0A;
  --bg-1:         #111111;
  --bg-2:         #181818;
  --bg-3:         #222222;
  --fg:           #FAFAFA;
  --fg-muted:     #999999;
  --fg-dim:       #555555;
  --accent:       #00FF88;
  --accent-dim:   #00CC6A;
  --accent-dark:  #003D20;
  --accent-glow:  rgba(0, 255, 136, 0.15);
  --accent-glow2: rgba(0, 255, 136, 0.06);
  --border:       rgba(255,255,255,0.07);
  --border-md:    rgba(255,255,255,0.12);
  --border-str:   rgba(255,255,255,0.2);
  --shadow-card:  0 1px 0 rgba(255,255,255,0.04) inset, 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 40px rgba(0,255,136,0.18), 0 0 80px rgba(0,255,136,0.06);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --transition:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: rgba(0,255,136,0.22); color: #fff; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

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

section { padding: 100px 0; }

.desktop-only { display: block; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 100px;
  background: rgba(0,255,136,0.06);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub { margin: 0 auto; }

.text-accent { color: var(--accent); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,255,136,0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-primary.btn-xl    { padding: 18px 36px; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--border-str);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn-ghost.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-ghost.btn-xl    { padding: 18px 36px; font-size: 1.05rem; }

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── SCROLL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.animate-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }


/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  border-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
  flex-shrink: 0;
}

.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.nav-cta-wrapper { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 8px; width: 100%; padding: 24px; }

.mobile-menu a {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  padding: 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu .btn-primary { color: #000; margin-top: 16px; padding: 16px; font-size: 1rem; }


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridScroll 16s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

@keyframes gridScroll {
  0%   { background-position: 0 0; }
  100% { background-position: 0 64px; }
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,255,136,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(0,255,136,0.2);
  background: rgba(0,255,136,0.05);
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat-item:first-child { padding-left: 0; }

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-md);
}

/* CHAT MOCKUP */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.chat-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 380px;
}

.chat-feat {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.chat-feat:hover {
  border-color: rgba(0,255,136,0.25);
  color: var(--accent);
}

.chat-feat-more {
  border-color: rgba(0,255,136,0.2);
  color: var(--accent);
  background: rgba(0,255,136,0.04);
}

.chat-phone {
  position: relative;
}

.chat-mockup {
  width: 380px;
  background: #0F0F0F;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
  position: relative;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.25) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #161616;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0;
}

.chat-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #161616;
  animation: blink 2s ease-in-out infinite;
}

.chat-name { font-size: 0.82rem; font-weight: 700; color: var(--fg); }
.chat-online { font-size: 0.7rem; color: var(--accent); font-weight: 500; }

.chat-body {
  padding: 16px;
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 75%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  animation: msgAppear 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-msg.bot {
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom-left-radius: 4px;
  color: var(--fg);
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--accent-dark);
  border: 1px solid rgba(0,255,136,0.15);
  border-bottom-right-radius: 4px;
  color: var(--fg);
  align-self: flex-end;
  text-align: right;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}

.typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-dim);
}

.typing-dot:nth-child(1) { animation: typingDot 1.2s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation: typingDot 1.2s ease-in-out 0.2s infinite; }
.typing-dot:nth-child(3) { animation: typingDot 1.2s ease-in-out 0.4s infinite; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


/* ═══════════════════════════════════════════════════
   AUTORIDADE
═══════════════════════════════════════════════════ */
#autoridade {
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.authority-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  font-weight: 600;
  margin-bottom: 28px;
}

.logos-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 56px;
}

.logos-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logoScroll 25s linear infinite;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-1);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.logo-pill img {
  height: 38px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(63%) sepia(100%) saturate(3000%) hue-rotate(112deg) brightness(101%);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.logo-pill:hover { border-color: rgba(1,255,136,0.3); background: rgba(1,255,136,0.04); }
.logo-pill:hover img { opacity: 1; }

.authority-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.auth-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 32px 24px;
  background: var(--bg-1);
  text-align: center;
  transition: var(--transition);
}

.auth-num:hover { background: var(--bg-2); }

.auth-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.auth-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════
   DORES
═══════════════════════════════════════════════════ */
#dores { background: var(--bg-1); }

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,80,80,0.3), transparent);
}

.pain-card:hover {
  border-color: rgba(255,80,80,0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FF6B6B;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   SOLUÇÃO
═══════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pillar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover {
  border-color: rgba(0,255,136,0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.pillar-card:hover::after { opacity: 1; }

.pillar-card.pillar-featured {
  border-color: rgba(0,255,136,0.25);
  background: linear-gradient(135deg, rgba(0,255,136,0.04) 0%, var(--bg-1) 60%);
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.pillar-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pillar-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.pillar-highlight::before { content: '→'; }


/* ═══════════════════════════════════════════════════
   COMO FUNCIONA
═══════════════════════════════════════════════════ */
#como-funciona { background: var(--bg-1); }

.steps-wrapper { position: relative; }

.steps-line {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,255,136,0.2));
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 28px 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(0,255,136,0.15);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════
   PLANOS
═══════════════════════════════════════════════════ */
#planos { background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,255,136,0.04) 0%, transparent 70%), var(--bg); }

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-top: 24px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: var(--transition);
}

.toggle-btn.active {
  background: var(--bg-3);
  color: var(--fg);
  box-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.toggle-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 2px 8px;
  border-radius: 100px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

/* PRO */
.plan-card.plan-featured {
  background: var(--bg-2);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1.5px rgba(0,255,136,0.4), 0 0 40px rgba(0,255,136,0.08), 0 24px 48px rgba(0,0,0,0.5);
}

.plan-card.plan-featured:hover {
  box-shadow: 0 0 0 1.5px rgba(0,255,136,0.6), 0 0 60px rgba(0,255,136,0.12), 0 32px 60px rgba(0,0,0,0.5);
}

/* ELITE */
.plan-card.plan-elite {
  border-color: rgba(255,200,50,0.25);
  background: linear-gradient(160deg, rgba(255,200,50,0.04) 0%, var(--bg-1) 50%);
}

.plan-card.plan-elite:hover {
  border-color: rgba(255,200,50,0.4);
  box-shadow: 0 0 40px rgba(255,200,50,0.06), 0 24px 48px rgba(0,0,0,0.5);
}

.plan-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  background: var(--accent);
  color: #000;
  white-space: nowrap;
}

.plan-badge-elite {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 4px 16px rgba(255,200,50,0.3); }
}

.plan-roi-callout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 200, 50, 0.07);
  border: 1px solid rgba(255, 200, 50, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #e0b840;
  line-height: 1.4;
  margin-bottom: 20px;
}

.plan-roi-callout strong { color: #FFD700; font-weight: 700; }

.roi-icon {
  font-size: 1rem;
  font-weight: 900;
  color: #FFD700;
  flex-shrink: 0;
}

.plan-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e0b840;
  opacity: 0.85;
}

.scarcity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFD700;
  flex-shrink: 0;
  animation: scarcityPulse 1.4s ease-in-out infinite;
}

@keyframes scarcityPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.plan-header { padding-top: 16px; margin-bottom: 6px; }

.plan-users {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-dim);
  margin-bottom: 12px;
}

.plan-users svg { opacity: 0.5; }

.plan-users-sep {
  opacity: 0.3;
  font-weight: 400;
}

.plan-per-user {
  color: var(--fg-muted);
  font-weight: 500;
  transition: opacity 0.15s ease;
}

.plan-users-accent {
  color: var(--accent);
}

.plan-users-accent svg { opacity: 1; stroke: var(--accent); }

.plan-users-accent .plan-per-user {
  color: var(--accent);
  opacity: 0.8;
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-muted);
  margin-top: 4px;
}

.price-value {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
  transition: var(--transition);
}

.price-period {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-left: 2px;
}

.plan-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 40px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
  align-content: start;
}

.plan-features li {
  display: flex;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-more {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.5;
}

.feat-more-text {
  color: var(--fg-dim);
  font-style: italic;
  opacity: 0.6;
  font-size: 0.82rem;
}

.elite-check { color: #FFD700; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-md);
  color: var(--fg);
  background: transparent;
}

.btn-plan:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-str);
  transform: translateY(-1px);
}

.btn-plan-featured {
  background: var(--accent);
  color: #000;
  border-color: transparent;
}

.btn-plan-featured:hover {
  background: var(--accent-dim);
  color: #000;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,255,136,0.3);
}

.btn-plan-elite {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border-color: transparent;
}

.btn-plan-elite:hover {
  opacity: 0.92;
  box-shadow: 0 8px 24px rgba(255,200,50,0.25);
}

.elite-spots {
  margin-bottom: 16px;
}

.spots-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding: 8px 12px;
  background: rgba(255,200,50,0.06);
  border: 1px solid rgba(255,200,50,0.15);
  border-radius: var(--radius-sm);
}

.spots-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFD700;
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

.countdown-wrap {
  margin-top: 14px;
  text-align: center;
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,200,50,0.06);
  border: 1px solid rgba(255,200,50,0.12);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 42px;
}

.cd-item span { font-size: 1.1rem; font-weight: 800; color: #FFD700; line-height: 1; }
.cd-item small { font-size: 0.6rem; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.cd-sep { font-size: 1rem; font-weight: 700; color: rgba(255,200,50,0.4); align-self: flex-start; padding-top: 6px; }

.plans-cta-row {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.plans-cta-row a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(0,255,136,0.3);
  transition: var(--transition);
}

.plans-cta-row a:hover { border-color: var(--accent); }


/* ═══════════════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════════════ */
#depoimentos { background: var(--bg-1); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testi-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  padding: 6px 12px;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: 100px;
  width: fit-content;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.testi-name { font-size: 0.85rem; font-weight: 700; }
.testi-role { font-size: 0.75rem; color: var(--fg-dim); margin-top: 2px; }

.testi-plan {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: var(--bg-2);
  white-space: nowrap;
}

.testi-plan-elite {
  color: #FFD700;
  border-color: rgba(255,200,50,0.2);
  background: rgba(255,200,50,0.05);
}


/* ═══════════════════════════════════════════════════
   COMPARATIVO
═══════════════════════════════════════════════════ */
#comparativo {}

.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-col {
  padding: 40px 36px;
}

.comp-before {
  background: var(--bg-1);
}

.comp-after {
  background: linear-gradient(135deg, rgba(0,255,136,0.04) 0%, var(--bg-2) 60%);
  border-left: 1px solid var(--border);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.comp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.comp-icon-x   { background: rgba(255,80,80,0.12); color: #FF6B6B; }
.comp-icon-check { background: rgba(0,255,136,0.12); color: var(--accent); }

.comp-header h3 { font-size: 1.1rem; font-weight: 700; }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.comp-x    { color: #FF6B6B; font-weight: 700; flex-shrink: 0; }
.comp-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

.comparison-divider {
  width: 1px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.divider-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════════ */
#sobre { background: var(--bg-1); }

.about-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  display: inline-block;
}

.about-photo {
  width: 320px;
  height: 420px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.about-photo-placeholder {
  width: 320px;
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(145deg, #1a2a1e, #0f1a12);
  border: 1px solid rgba(0,255,136,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder::before {
  content: '[ Foto do Asafe Lima ]';
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0,255,136,0.3);
  font-weight: 500;
}

.photo-initials {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,255,136,0.15);
  letter-spacing: -0.05em;
}

.about-photo-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.2) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.about-name { text-align: left; }

.about-handle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-bio {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.about-achievements li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.ach-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.about-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--fg);
  border-color: var(--border-str);
  background: rgba(255,255,255,0.04);
}


/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
#faq { background: var(--bg-1); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-md); }
.faq-item[data-open="true"] { border-color: rgba(0,255,136,0.2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  gap: 16px;
  background: transparent;
  transition: var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.16,1,0.3,1);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════════
   GARANTIA
═══════════════════════════════════════════════════ */
#garantia {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-wrap {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.seal-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(0,255,136,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: sealSpin 20s linear infinite;
  position: relative;
}

@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.seal-inner {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,255,136,0.04));
  border: 2px solid rgba(0,255,136,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: sealSpin 20s linear infinite reverse;
}

.seal-number { font-size: 2.4rem; font-weight: 900; color: var(--accent); line-height: 1; }
.seal-dias   { font-size: 0.7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.seal-garantia { font-size: 0.62rem; color: rgba(0,255,136,0.6); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-top: 2px; }

.guarantee-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.guarantee-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.guarantee-text p:last-of-type { margin-bottom: 28px; }


/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
#cta-final {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.08) 0%, transparent 65%);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-final-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-final-proof {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.cta-final-proof span::before { color: var(--accent); margin-right: 6px; }


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-logo { font-size: 1.35rem; margin-bottom: 4px; display: inline-block; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--fg);
  border-color: var(--border-str);
  background: rgba(255,255,255,0.04);
}

.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--fg-dim);
  transition: var(--transition);
}

.footer-links-col a:hover { color: var(--fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

.footer-bottom a { color: var(--fg-muted); }
.footer-bottom a:hover { color: var(--fg); }


/* ═══════════════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 89;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.mobile-sticky-cta.visible { transform: translateY(0); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 80px 0; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat-item:first-child { padding-left: 28px; }
  .hero-visual { display: flex; justify-content: center; margin-top: 40px; }
  .chat-mockup { width: 360px; }
  .chat-body { height: 380px; }
  .desktop-only { display: none; }

  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { display: flex; justify-content: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .authority-numbers { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Base ── */
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .section-title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .section-sub { font-size: 0.92rem; }
  .section-header { margin-bottom: 40px; }

  /* ── Navbar ── */
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }

  /* ── Hero ── */
  #hero { padding: 90px 0 56px; min-height: auto; }
  .hero-headline { font-size: clamp(1.9rem, 9.5vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-primary.btn-large,
  .btn-ghost.btn-large { width: 100%; justify-content: center; border-radius: 14px; }

  /* Stats — vira 2 colunas no mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
  }
  .stat-item { padding: 0; align-items: center; text-align: center; }
  .stat-item:first-child { padding-left: 0; }
  .stat-divider { display: none; }
  .stat-value { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }

  /* ── Chat mockup ── */
  .hero-visual { margin-top: 32px; }
  .chat-mockup { width: 100%; max-width: 380px; }
  .chat-body { height: 340px; }
  .chat-phone { width: 100%; display: flex; justify-content: center; }
  .chat-msg { font-size: 0.8rem; padding: 8px 11px; }
  .phone-glow { display: none; }

  /* ── Authority ── */
  #autoridade { padding: 40px 0 56px; }
  .authority-numbers {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius);
  }
  .auth-num { padding: 20px 12px; }
  .auth-val { font-size: 1.5rem; }
  .auth-desc { font-size: 0.72rem; }

  /* ── Pains ── */
  .pains-grid { grid-template-columns: 1fr; gap: 14px; }
  .pain-card { padding: 24px 20px; }

  /* ── Pillars ── */
  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar-card { padding: 28px 22px; }

  /* ── Steps ── */
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .steps-grid::before { display: none; }
  .step-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .step-item:last-child { border-bottom: none; }
  .step-number { width: 44px; height: 44px; font-size: 0.78rem; flex-shrink: 0; }

  /* ── Plans ── */
  #planos .section-header { margin-bottom: 32px; }
  .billing-toggle { padding: 3px; }
  .toggle-btn { padding: 7px 14px; font-size: 0.82rem; }
  .toggle-badge { font-size: 0.65rem; padding: 2px 6px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .plan-card { padding: 24px 20px; border-radius: var(--radius-lg); }
  .plan-badge-top { font-size: 0.62rem; padding: 4px 12px; }
  .price-value { font-size: 2rem; }
  .plan-desc { font-size: 0.8rem; min-height: auto; }
  .plan-features li { font-size: 0.82rem; }
  .plan-users { font-size: 0.72rem; flex-wrap: wrap; }
  .btn-plan { padding: 12px; font-size: 0.85rem; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 22px 18px; }
  .testi-quote { font-size: 0.87rem; }
  .testi-name { font-size: 0.82rem; }
  .testi-role { font-size: 0.72rem; }

  /* ── Comparison ── */
  .comparison-wrap { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .comparison-col { padding: 28px 22px; }
  .comparison-divider { width: 100%; height: 1px; position: relative; }
  .divider-vs {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }
  .comp-after { border-left: none; border-top: 1px solid var(--border); }
  .comp-list li { font-size: 0.84rem; }

  /* ── About ── */
  #sobre { padding: 56px 0; }
  .about-wrap { gap: 20px; }
  .about-visual { display: none; }
  .about-content { text-align: left; }
  .about-name { text-align: left; font-size: 1.65rem; }
  .about-handle { font-size: 0.82rem; margin-bottom: 16px; }
  .about-bio { font-size: 0.9rem; line-height: 1.72; margin-bottom: 20px; }
  .about-achievements { gap: 8px; margin-bottom: 22px; }
  .about-achievements li { justify-content: flex-start; font-size: 0.84rem; }
  .about-socials { flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
  .social-link { font-size: 0.8rem; padding: 7px 14px; }

  /* ── FAQ ── */
  .faq-grid { gap: 8px; }
  .faq-question { font-size: 0.86rem; padding: 15px 16px; gap: 12px; }
  .faq-icon { font-size: 1.2rem; }
  .faq-answer p { padding: 0 16px 14px; font-size: 0.87rem; }

  /* ── CTA Final ── */
  #cta-final { padding: 72px 0; }
  .cta-final-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-final-sub { font-size: 0.95rem; }
  .cta-final-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary.btn-xl,
  .btn-ghost.btn-xl { width: 100%; justify-content: center; border-radius: 14px; padding: 16px; font-size: 0.97rem; }
  .cta-final-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.78rem;
    justify-items: center;
  }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-brand p { max-width: 100%; }
  #footer { padding: 48px 0 28px; }

  /* ── Floating ── */
  .mobile-sticky-cta { display: block; }
  .whatsapp-float { bottom: 84px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════════
   NOTIFICAÇÕES DE VENDA
═══════════════════════════════════════════════════ */
#sale-toast-container {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.sale-toast {
  width: 310px;
  background: #111;
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,255,136,0.06),
    0 16px 48px rgba(0,0,0,0.7),
    0 0 32px rgba(0,255,136,0.06);
  pointer-events: all;
  transform: translateX(-340px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s ease;
}

.sale-toast--visible {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.sale-toast--hiding {
  transform: translateX(-340px) scale(0.94);
  opacity: 0;
}

/* Cabeçalho verde */
.sale-toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,255,136,0.1);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  padding: 7px 12px;
}

.sale-toast-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00FF88;
}

.sale-toast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00FF88;
  animation: toastDotPulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes toastDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(0,255,136,0); }
}

.sale-toast-close {
  background: none;
  border: none;
  color: rgba(0,255,136,0.5);
  font-size: 0.65rem;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.2s;
}
.sale-toast-close:hover { color: #00FF88; }

/* Corpo */
.sale-toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.sale-toast-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.sale-toast-body { flex: 1; min-width: 0; }

.sale-toast-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sale-toast-plan-row { margin: 4px 0; }

.sale-toast-plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sale-toast-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sale-toast-city {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.sale-toast-time {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* Barra de progresso */
.sale-toast-bar {
  height: 2px;
  background: rgba(0,255,136,0.1);
}

.sale-toast-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #00FF88, #00cc6a);
  transform-origin: left;
  animation: toastBarDrain 5.5s linear forwards;
}

@keyframes toastBarDrain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

@media (max-width: 480px) {
  #sale-toast-container { left: 10px; right: 10px; bottom: 88px; }
  .sale-toast { width: 100%; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 390px)
═══════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.75rem; }
  .hero-badge { display: none; }
  .stat-value { font-size: 1.25rem; }
  .stat-label { font-size: 0.65rem; }
  .chat-mockup { max-width: 340px; }
  .plan-card { padding: 20px 16px; }
  .price-value { font-size: 1.85rem; }
  .auth-val { font-size: 1.3rem; }
  .toggle-badge { display: none; }
  .cta-final-proof { font-size: 0.72rem; gap: 6px; }
  .about-photo-placeholder { width: 72px; height: 72px; }
  .photo-initials { font-size: 1.4rem; }
  .about-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-position: center 55%;
    border: 2px solid rgba(0,255,136,0.25);
    box-shadow: 0 0 0 4px rgba(0,255,136,0.07);
  }
}


/* ═══════════════════════════════════════════════════
   WIDE (≥ 1440px)
═══════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .container { max-width: 1280px; }
  .hero-headline { font-size: 4.2rem; }
}

@media (min-width: 1920px) {
  .container { max-width: 1400px; }
}
