/* 
   JAPZ CRM — style.css UNIFICADO v4
   Cor primária: #3B82F6
   Última atualização: versão consolidada sem conflitos
    */

/* ── Variáveis globais ── */
:root {
  --primary:       #3B82F6;
  --primary-light: #60a5fa;
  --primary-dark:  #2563eb;
  --cyan:          #06B6D4;
  --bg:            #080810;
  --bg-card:       #0e0e1c;
  --bg-sidebar:    #080812;
  --text:          #f1f5f9;
  --text-muted:    #94a3b8;
  --text-faint:    #475569;
  --border:        rgba(255,255,255,0.07);
  --border-blue:   rgba(59,130,246,0.35);
  --blue-bg:       rgba(59,130,246,0.08);
  --blue-bg-h:     rgba(59,130,246,0.15);
  --glow:          0 0 28px rgba(59,130,246,0.45),
                   0 0 70px rgba(59,130,246,0.15),
                   0 0 140px rgba(59,130,246,0.06);
  --glow-hover:    0 0 40px rgba(59,130,246,0.65),
                   0 0 100px rgba(59,130,246,0.25);
  --grad-title:    linear-gradient(130deg, #60a5fa 0%, #06B6D4 45%, #818cf8 100%);
  --radius:        0.75rem;
  --radius-xl:     1.25rem;
  --ease:          cubic-bezier(.4,0,.2,1);
  --t:             0.3s;
  --font-body:     'Inter', sans-serif;
  --font-display:  'Sora', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html, body {
  overflow-x: hidden;
}

body {
  isolation: isolate;
}

/* ── Grid de fundo ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }
::selection { background: var(--primary); color: #fff; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Utilitários ── */
.hide-mobile { display: inline; }

/* 
   NAVBAR
    */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 1.5rem;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-mobile {
  isolation: isolate;
  will-change: auto;
  animation: none !important;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;       /* era 36px — aumente ou reduza a gosto */
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img { height: 38px; }  /* era 30px */
}
/* Mobile — logo um pouco menor */

.logo-japz { color: var(--text); }
.logo-crm  { color: var(--primary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  margin: 0 auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text); }

/* Botão primário (global) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), filter var(--t);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: var(--glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem;
  background: rgba(8,8,16,.97);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  padding: .5rem 0;
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn-primary { margin-top: .5rem; justify-content: center; }

/* 
   HERO SECTION
    */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(900px,90vw);
  height: min(900px,90vw);
  background: radial-gradient(circle,
    rgba(59,130,246,.08) 0%,
    rgba(6,182,212,.04) 40%,
    transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem 1.1rem;
  border: 1px solid var(--border-blue);
  background: var(--blue-bg);
  border-radius: 99px;
  color: var(--primary-light);
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  cursor: default;
  transition: background var(--t), border-color var(--t);
}
.hero-badge:hover {
  background: var(--blue-bg-h);
  border-color: rgba(96,165,250,.55);
}
.badge-star {
  color: var(--cyan);
  font-size: .72rem;
  animation: pulseStar 2.2s ease-in-out infinite;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,5.5vw,4.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.text-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-desc {
  color: var(--text-muted);
  font-size: clamp(.95rem,1.4vw,1.18rem);
  line-height: 1.72;
  max-width: 570px;
  margin-bottom: 2.4rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.btn-cta {
  padding: .88rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--glow);
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--glow-hover);
}
.arrow { transition: transform var(--t); }
.btn-cta:hover .arrow { transform: translateX(5px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .88rem 2rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--t) var(--ease);
}
.btn-outline:hover {
  border-color: var(--border-blue);
  background: var(--blue-bg);
  color: var(--text);
  transform: translateY(-2px);
}

/* ── Animações de entrada hero ── */
.anim-fade-down   { animation: fadeDown  .7s var(--ease) both; }
.anim-fade-up     { animation: fadeUp    .75s var(--ease) both; }
.anim-fade-up-big { animation: fadeUpBig .95s var(--ease) both; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpBig {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseStar {
  0%,100% { opacity:1; transform:scale(1) rotate(0deg); }
  50%      { opacity:.55; transform:scale(.8) rotate(20deg); }
}

/* 
   MOCKUP
    */
.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center,
    rgba(59,130,246,.2) 0%,
    rgba(6,182,212,.08) 45%,
    transparent 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}
.mockup-frame {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  background: #0b0b18;
  box-shadow: var(--glow), 0 50px 100px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.mockup-frame:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-hover), 0 70px 130px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.07);
}

/* Chrome bar */
.chrome-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  background: #0a0a16;
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #10b981; }
.chrome-url {
  margin-left: .5rem;
  font-size: .7rem;
  color: var(--text-faint);
}

/* App body */
.app-body {
  display: flex;
  height: 480px;
}

/* ── Sidebar ── */
.app-sidebar {
  width: 72px;
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .9rem 0 .75rem;
}
.sb-logo {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.sb-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  flex: 1;
  width: 100%;
  padding: 0 .5rem;
}
.sb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  width: 100%;
  padding: .5rem .25rem;
  border-radius: .5rem;
  color: var(--text-faint);
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
/* CRÍTICO: tamanho fixo dos SVGs da sidebar */
.sb-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.sb-item span {
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.sb-item:hover { background: rgba(255,255,255,.05); color: var(--text-muted); }
.sb-item.active { background: var(--blue-bg); color: var(--primary-light); }
.sb-profile {
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.sb-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: #fff;
}

/* ── Coluna de contatos ── */
.contacts-col {
  width: 210px;
  flex-shrink: 0;
  background: #0c0c1a;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.contacts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .85rem .5rem;
}
.contacts-title { font-size: .78rem; font-weight: 700; color: var(--text); }
.contacts-count {
  font-size: .62rem; font-weight: 600;
  padding: .15rem .45rem;
  border-radius: 99px;
  background: var(--blue-bg);
  color: var(--primary-light);
  border: 1px solid var(--border-blue);
}
.contacts-search {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 0 .65rem .65rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: .45rem;
  padding: .3rem .6rem;
  color: var(--text-faint);
}
/* CRÍTICO: SVG de busca com tamanho fixo */
.contacts-search svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.contacts-search input {
  background: none; border: none; outline: none;
  font-size: .68rem; color: var(--text-muted);
  width: 100%; cursor: default;
}
.contact-list { flex: 1; overflow-y: auto; }
.contact-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .7rem;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background var(--t);
}
.contact-item:hover { background: rgba(255,255,255,.04); }
.contact-item.active {
  background: var(--blue-bg);
  border-left-color: var(--primary);
}

/* Avatares — tamanhos explícitos */
.c-av {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
  flex-shrink: 0;
  /* tamanho padrão */
  width: 30px; height: 30px; font-size: .72rem;
}
.c-av.sm { width: 26px; height: 26px; font-size: .65rem; }
.c-av.xs { width: 22px; height: 22px; font-size: .6rem; }

.c-info { flex: 1; min-width: 0; }
.c-name {
  font-size: .72rem; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.c-msg {
  font-size: .62rem; color: var(--text-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.c-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; flex-shrink: 0; }
.c-time { font-size: .58rem; color: var(--text-faint); }
.c-badge {
  font-size: .55rem; font-weight: 700;
  background: var(--primary); color: #fff;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Chat area ── */
.chat-area {
  flex: 1;
  background: linear-gradient(160deg, #050d1a 0%, #071325 40%, #060f20 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.chat-area::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(59,130,246,0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(96,165,250,0.04) 1px, transparent 1px);
  background-size: 40px 40px, 23px 23px;
  background-position: 0 0, 11px 11px;
  pointer-events: none;
  z-index: 0;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1rem;
  background: rgba(5,15,35,0.75);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.chat-contact-name { font-size: .78rem; font-weight: 700; color: var(--text); }
.chat-contact-status {
  display: flex; align-items: center; gap: .35rem;
  font-size: .62rem; color: #34d399;
}
.online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseGreen 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.chat-header-actions { margin-left: auto; }
.ia-tag {
  font-size: .65rem; font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 99px;
  background: rgba(59,130,246,.18);
  border: 1px solid rgba(59,130,246,.35);
  color: var(--primary-light);
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem .5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
  z-index: 1;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.3); border-radius: 99px; }

/* Linha de mensagem */
.msg-row {
  display: flex;
  align-items: flex-end;
  gap: .4rem;
}
.msg-row.right { flex-direction: row-reverse; }

/* Bolha de mensagem */
.msg-bubble {
  position: relative;
  max-width: 72%;
  padding: .58rem .82rem .88rem;
  border-radius: 1rem;
  font-size: .71rem;
  line-height: 1.58;
  word-break: break-word;
}
.msg-bubble.client {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-bottom-left-radius: .2rem;
}
.msg-bubble.bot {
  background: linear-gradient(135deg, rgba(37,99,235,0.45), rgba(6,182,212,0.3));
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--text);
  border-bottom-right-radius: .2rem;
  padding-top: .95rem;
}
.msg-bubble strong { color: #67e8f9; }
.msg-bubble em { color: #93c5fd; font-style: normal; }
.bot-label {
  position: absolute;
  top: -1px; left: .7rem;
  font-size: .54rem; font-weight: 700;
  color: var(--primary-light);
  background: rgba(37,99,235,0.45);
  border: 1px solid rgba(59,130,246,.4);
  padding: .07rem .35rem;
  border-radius: 99px;
  transform: translateY(-50%);
  white-space: nowrap;
}
.msg-time {
  position: absolute;
  bottom: .26rem; right: .6rem;
  font-size: .5rem;
  color: rgba(255,255,255,.28);
}

/* ── Typing bubbles ── */
/* Cliente */
.client-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  border-bottom-left-radius: .2rem;
  padding: .55rem .8rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* IA thinking */
.ia-thinking-bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .52rem .95rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.35), rgba(6,182,212,0.22));
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 1rem;
  border-bottom-right-radius: .2rem;
  overflow: hidden;
}
.ia-scan-bar {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.18), rgba(6,182,212,0.12), transparent);
  animation: iaScan 1.6s ease-in-out infinite;
  pointer-events: none;
}
.ia-dots {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.ia-thinking-label {
  font-size: .56rem; font-weight: 600;
  color: rgba(147,197,253,0.7);
  letter-spacing: .04em;
  white-space: nowrap;
  animation: iaLabelPulse 1.8s ease-in-out infinite;
}

/* CRÍTICO: typing-dot com tamanho completamente fixo, sem herança */
.typing-dot {
  display: inline-block;
  width: 6px !important;
  height: 6px !important;
  min-width: 6px;
  min-height: 6px;
  max-width: 6px;
  max-height: 6px;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.45);
  animation: typingBounce 1.1s ease-in-out infinite;
  flex-shrink: 0;
}
.typing-dot:nth-child(2) { animation-delay: .18s; }
.typing-dot:nth-child(3) { animation-delay: .36s; }

.ia-dot {
  background: var(--primary-light) !important;
  animation: typingBounce 1s ease-in-out infinite !important;
}
.ia-dot:nth-child(2) { animation-delay: .16s !important; }
.ia-dot:nth-child(3) { animation-delay: .32s !important; }

/* Chat input */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .9rem;
  background: rgba(5,15,35,0.75);
  border-top: 1px solid rgba(59,130,246,0.1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.chat-input-bar input {
  flex: 1;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: .5rem;
  padding: .4rem .75rem;
  font-size: .72rem;
  color: var(--text-muted);
  outline: none;
  cursor: default;
  font-family: var(--font-body);
}
.send-btn {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: .5rem;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: filter .3s, transform .3s, box-shadow .3s;
}
/* CRÍTICO: SVG do botão enviar com tamanho fixo */
.send-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.send-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.07);
  box-shadow: 0 0 16px rgba(59,130,246,0.5);
}

/* ── Painel direito de info ── */
.info-panel {
  width: 195px;
  flex-shrink: 0;
  background: #0c0c1a;
  border-left: 1px solid var(--border);
  padding: .85rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  overflow-y: auto;
}
.panel-title {
  font-size: .72rem; font-weight: 700; color: var(--text);
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .1rem;
}
.panel-field { display: flex; flex-direction: column; gap: .25rem; }
.panel-field label {
  font-size: .6rem; font-weight: 600;
}
/* ════════════════════════════════════
   PAIN SECTION — adicione ao final do style.css
════════════════════════════════════ */

.pain-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Blobs decorativos */
.pain-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.pain-blob-left {
  background: radial-gradient(circle, rgba(239,68,68,0.07) 0%, transparent 70%);
  top: 10%;
  left: -150px;
}
.pain-blob-right {
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: 5%;
  right: -150px;
}

/* ── Cabeçalho ── */
.pain-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pain-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: .55; }
}

.pain-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.pain-title-red {
  background: linear-gradient(120deg, #ef4444 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.pain-subtitle {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Grid ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.pain-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.6rem 1.5rem;
  cursor: default;
  overflow: hidden;
  transition:
    background   .3s ease,
    border-color .3s ease,
    transform    .3s ease,
    box-shadow   .3s ease;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 1rem 1rem 0 0;
}

.pain-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(239,68,68,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.pain-card:hover {
  background: rgba(239,68,68,0.045);
  border-color: rgba(239,68,68,0.22);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover::after  { opacity: 1; }

/* ── Ícone — CRÍTICO: tamanho fixo ── */
.pain-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: .75rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .3s;
}

.pain-card:hover .pain-icon-wrap {
  background: rgba(239,68,68,0.18);
  border-color: rgba(239,68,68,0.38);
  transform: scale(1.08);
}

/* CRÍTICO: SVG do ícone com tamanho absolutamente fixo */
.pain-icon-wrap svg,
.pain-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  color: #ef4444;
  display: block;
  flex-shrink: 0;
}

.pain-card:hover .pain-icon-wrap svg,
.pain-card:hover .pain-icon { color: #f87171; }

/* ── Texto ── */
.pain-card-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .55rem;
  letter-spacing: -.01em;
}

.pain-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Strip final ── */
.pain-cta-strip {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pain-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.35rem 2rem;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.pain-strip-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.06), transparent);
  animation: stripSweep 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes stripSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.strip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  animation: iconShake 2.5s ease-in-out infinite;
}

@keyframes iconShake {
  0%, 80%, 100% { transform: rotate(0deg) scale(1); }
  85%            { transform: rotate(-12deg) scale(1.1); }
  90%            { transform: rotate(10deg) scale(1.1); }
  95%            { transform: rotate(-6deg) scale(1.05); }
}

.strip-text {
  font-size: .95rem;
  color: var(--text-muted);
  text-align: center;
}
.strip-text strong { color: #f87171; font-weight: 700; }

.strip-btn {
  padding: .6rem 1.4rem;
  font-size: .88rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ef4444, #f97316) !important;
  box-shadow: 0 0 20px rgba(239,68,68,0.3);
}
.strip-btn:hover {
  box-shadow: 0 0 30px rgba(239,68,68,0.55) !important;
  filter: brightness(1.08) !important;
}

/* ── Scroll reveal ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsivo Pain ── */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pain-section { padding: 80px 0 70px; }
  .pain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pain-card { padding: 1.3rem 1.2rem; }
  .pain-strip-inner { flex-direction: column; text-align: center; padding: 1.25rem; }
  .strip-btn { width: 100%; justify-content: center; }
  .hide-mobile { display: none; }
}
/* 
   SOLUTION SECTION
    */

.solution-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Blob central de glow */
.sol-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.sol-blob-center {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(59,130,246,0.07) 0%,
    rgba(129,140,248,0.05) 40%,
    transparent 70%);
}

/* ── Cabeçalho ── */
.sol-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}

.sol-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.sol-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.sol-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sol-subtitle {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Grid 2×2 ── */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.sol-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.6rem 1.5rem;
  overflow: hidden;
  cursor: default;
  transition:
    background   .35s var(--ease),
    border-color .35s var(--ease),
    transform    .35s var(--ease),
    box-shadow   .35s var(--ease);
}

/* Brilho sweep no hover */
.sol-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.03),
    transparent);
  transition: left .55s var(--ease);
  pointer-events: none;
}

.sol-card:hover .sol-card-shine {
  left: 140%;
}

.sol-card:hover {
  background: rgba(59,130,246,0.055);
  border-color: rgba(59,130,246,0.22);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(59,130,246,0.08);
}

/* Linha azul no topo ao hover */
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.sol-card:hover::before { opacity: 1; }

/* Cores da linha por variante */
.sol-card:has(.sol-icon-blue)::before    { background: linear-gradient(90deg,#3b82f6,#06b6d4); }
.sol-card:has(.sol-icon-violet)::before  { background: linear-gradient(90deg,#818cf8,#a855f7); }
.sol-card:has(.sol-icon-cyan)::before    { background: linear-gradient(90deg,#06b6d4,#3b82f6); }
.sol-card:has(.sol-icon-green)::before   { background: linear-gradient(90deg,#10b981,#06b6d4); }

/* ── Ícone — tamanho absolutamente fixo ── */
.sol-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.sol-card:hover .sol-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  filter: brightness(1.2);
}

/* Variantes de cor do ícone */
.sol-icon-blue   { background: rgba(59,130,246,0.12);  border: 1px solid rgba(59,130,246,0.22); }
.sol-icon-violet { background: rgba(129,140,248,0.12); border: 1px solid rgba(129,140,248,0.22); }
.sol-icon-cyan   { background: rgba(6,182,212,0.12);   border: 1px solid rgba(6,182,212,0.22); }
.sol-icon-green  { background: rgba(16,185,129,0.12);  border: 1px solid rgba(16,185,129,0.22); }

/* Cor do SVG por variante */
.sol-icon-blue   .sol-icon { color: #60a5fa; }
.sol-icon-violet .sol-icon { color: #a5b4fc; }
.sol-icon-cyan   .sol-icon { color: #22d3ee; }
.sol-icon-green  .sol-icon { color: #34d399; }

/* CRÍTICO: SVG com tamanho fixo */
.sol-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block;
  flex-shrink: 0;
}

/* ── Texto do card ── */
.sol-card-text { flex: 1; min-width: 0; }

.sol-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  transition: color .3s;
}
.sol-card:hover .sol-card-title { color: #fff; }

.sol-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color .3s;
}
.sol-card:hover .sol-card-desc { color: #94a3b8; }

/* ── CTA central ── */
.sol-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  position: relative;
  z-index: 1;
}

.sol-cta-note {
  font-size: .78rem;
  color: var(--text-faint);
}

/* ── Animações de entrada (esquerda / direita) ── */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsivo ── */
@media (max-width: 700px) {
  .solution-section { padding: 80px 0 70px; }

  .sol-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .sol-card { padding: 1.3rem 1.2rem; }

  .sol-cta .btn-cta { width: 100%; justify-content: center; }
}/* 
   SOLUTION SECTION
    */

.solution-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Blob central de glow */
.sol-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.sol-blob-center {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(59,130,246,0.07) 0%,
    rgba(129,140,248,0.05) 40%,
    transparent 70%);
}

/* ── Cabeçalho ── */
.sol-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}

.sol-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.sol-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.sol-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sol-subtitle {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Grid 2×2 ── */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.sol-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.6rem 1.5rem;
  overflow: hidden;
  cursor: default;
  transition:
    background   .35s var(--ease),
    border-color .35s var(--ease),
    transform    .35s var(--ease),
    box-shadow   .35s var(--ease);
}

/* Brilho sweep no hover */
.sol-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.03),
    transparent);
  transition: left .55s var(--ease);
  pointer-events: none;
}

.sol-card:hover .sol-card-shine {
  left: 140%;
}

.sol-card:hover {
  background: rgba(59,130,246,0.055);
  border-color: rgba(59,130,246,0.22);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(59,130,246,0.08);
}

/* Linha azul no topo ao hover */
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 1rem 1rem 0 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.sol-card:hover::before { opacity: 1; }

/* Cores da linha por variante */
.sol-card:has(.sol-icon-blue)::before    { background: linear-gradient(90deg,#3b82f6,#06b6d4); }
.sol-card:has(.sol-icon-violet)::before  { background: linear-gradient(90deg,#818cf8,#a855f7); }
.sol-card:has(.sol-icon-cyan)::before    { background: linear-gradient(90deg,#06b6d4,#3b82f6); }
.sol-card:has(.sol-icon-green)::before   { background: linear-gradient(90deg,#10b981,#06b6d4); }

/* ── Ícone — tamanho absolutamente fixo ── */
.sol-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.sol-card:hover .sol-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  filter: brightness(1.2);
}

/* Variantes de cor do ícone */
.sol-icon-blue   { background: rgba(59,130,246,0.12);  border: 1px solid rgba(59,130,246,0.22); }
.sol-icon-violet { background: rgba(129,140,248,0.12); border: 1px solid rgba(129,140,248,0.22); }
.sol-icon-cyan   { background: rgba(6,182,212,0.12);   border: 1px solid rgba(6,182,212,0.22); }
.sol-icon-green  { background: rgba(16,185,129,0.12);  border: 1px solid rgba(16,185,129,0.22); }

/* Cor do SVG por variante */
.sol-icon-blue   .sol-icon { color: #60a5fa; }
.sol-icon-violet .sol-icon { color: #a5b4fc; }
.sol-icon-cyan   .sol-icon { color: #22d3ee; }
.sol-icon-green  .sol-icon { color: #34d399; }

/* CRÍTICO: SVG com tamanho fixo */
.sol-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block;
  flex-shrink: 0;
}

/* ── Texto do card ── */
.sol-card-text { flex: 1; min-width: 0; }

.sol-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  transition: color .3s;
}
.sol-card:hover .sol-card-title { color: #fff; }

.sol-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color .3s;
}
.sol-card:hover .sol-card-desc { color: #94a3b8; }

/* ── CTA central ── */
.sol-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  position: relative;
  z-index: 1;
}

.sol-cta-note {
  font-size: .78rem;
  color: var(--text-faint);
}

/* ── Animações de entrada (esquerda / direita) ── */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsivo ── */
@media (max-width: 700px) {
  .solution-section { padding: 80px 0 70px; }

  .sol-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .sol-card { padding: 1.3rem 1.2rem; }

  .sol-cta .btn-cta { width: 100%; justify-content: center; }
}
/* 
   LOST CLIENT / VELOCITY SECTION — CSS COMPLETO
    */
.vel-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.vel-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.vel-blob-red {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%);
  top: 0; left: -200px;
}
.vel-blob-blue {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: 0; right: -150px;
}

.vel-bg-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(239,68,68,0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px, 37px 37px;
  background-position: 0 0, 18px 18px;
  pointer-events: none;
  z-index: 0;
  animation: velParticlesDrift 25s linear infinite;
}
@keyframes velParticlesDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(-60px); }
}

/* ── Cabeçalho ── */
.vel-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.vel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 1.25rem;
}
.vel-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.vel-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.vel-title-grad {
  background: linear-gradient(120deg, #ef4444 0%, #f97316 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.vel-subtitle {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Linha do tempo ── */
.vel-timeline-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto 4rem;
  padding: 2.5rem 0 3.5rem;
  z-index: 1;
}
.vel-timeline-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  margin: 0 2%;
}
.vel-timeline-fill {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #10b981 0%, #f59e0b 30%, #ef4444 100%);
}
.vel-timeline-ball {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 0 16px rgba(255,255,255,0.5);
  animation: velBallSlide 8s cubic-bezier(0.45,0,0.55,1) infinite;
  z-index: 3;
}
.vel-ball-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  animation: velRingPulse 8s ease-in-out infinite;
}
@keyframes velBallSlide {
  0%   { left: 0%;              opacity: 1; }
  85%  { left: calc(96% - 8px); opacity: 1; }
  92%  { left: calc(96% - 8px); opacity: 0; }
  93%  { left: 0%;              opacity: 0; }
  100% { left: 0%;              opacity: 1; }
}
@keyframes velRingPulse {
  0%,90%,100% { transform: scale(1);   opacity: .5; }
  45%          { transform: scale(1.6); opacity: 0; }
}

/* Marcos da linha do tempo */
.vel-mark {
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vel-mark-dot {
  width: 14px; height: 14px;
  min-width: 14px; min-height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  flex-shrink: 0;
}
.vel-mark-green  { background: #10b981; box-shadow: 0 0 10px rgba(16,185,129,0.7); }
.vel-mark-orange { background: #f59e0b; box-shadow: 0 0 10px rgba(245,158,11,0.7); }
.vel-mark-red    { background: #ef4444; box-shadow: 0 0 12px rgba(239,68,68,0.8); }

.vel-mark-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  white-space: nowrap;
}
.vel-mark-label-top    { bottom: calc(100% + 10px); }
.vel-mark-label-bottom { top:    calc(100% + 10px); }

.vel-mark-time {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-muted);
}
.vel-mark-stat {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.vel-mark-stat.green  { color: #10b981; }
.vel-mark-stat.orange { color: #f59e0b; }
.vel-mark-stat.red    { color: #ef4444; }

/* Legenda */
.vel-timeline-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.vel-legend-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--text-faint);
}
.vel-legend-dot {
  display: inline-block;
  width: 8px; height: 8px;
  min-width: 8px; min-height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Grid de 3 stat cards ── */
.vel-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

/* ── Stat Card base ── */
.vel-stat-card {
  position: relative;
  border-radius: 1.1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  overflow: hidden;
  cursor: default;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.vel-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}

/* Card hero (central — 391%) */
.vel-card-hero {
  background: rgba(16,185,129,0.04);
  border-color: rgba(16,185,129,0.18);
  transform: scale(1.03);
}
.vel-card-hero:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), 0 0 40px rgba(16,185,129,0.1);
}

.vel-card-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: .22rem .6rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.vel-card-inner {
  position: relative;
  z-index: 1;
}

/* Ícone do stat card */
.vel-stat-icon-wrap {
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  border-radius: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.vel-stat-card:hover .vel-stat-icon-wrap { transform: scale(1.1); }

/* CRÍTICO: SVGs dos ícones com tamanho fixo */
.vel-stat-icon-wrap svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block;
  flex-shrink: 0;
}

.vel-icon-red   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.22);  }
.vel-icon-red svg  { color: #f87171; }
.vel-icon-green { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.22); }
.vel-icon-green svg { color: #34d399; }
.vel-icon-gray  { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); }
.vel-icon-gray svg  { color: #64748b; }

/* Número grande */
.vel-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .35rem;
  transition: transform .3s var(--ease);
}
.vel-stat-card:hover .vel-stat-number { transform: scale(1.04); }

.vel-num-red   { color: #ef4444; text-shadow: 0 0 30px rgba(239,68,68,0.4); }
.vel-num-green { color: #10b981; text-shadow: 0 0 30px rgba(16,185,129,0.4); }
.vel-num-gray  {
  color: #64748b;
  background: linear-gradient(135deg, #94a3b8, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vel-stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .8rem;
}
.vel-stat-desc {
  font-size: .8rem;
  color: var(--text-faint);
  line-height: 1.65;
}
.vel-stat-desc strong { color: var(--text-muted); font-weight: 600; }

/* Glow de fundo dos cards */
.vel-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.vel-stat-card:hover .vel-card-glow { opacity: 1; }
.vel-glow-red   { background: radial-gradient(ellipse at 50% 0%, rgba(239,68,68,0.08) 0%, transparent 70%); }
.vel-glow-green { background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,0.1)  0%, transparent 70%); }
.vel-glow-gray  { background: radial-gradient(ellipse at 50% 0%, rgba(100,116,139,0.06) 0%, transparent 70%); }

/* Linha colorida no topo do card ao hover */
.vel-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 1.1rem 1.1rem 0 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.vel-stat-card:hover::before { opacity: 1; }
.vel-card-danger::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.vel-card-hero::before   { background: linear-gradient(90deg, #10b981, #06b6d4); opacity: .6; }
.vel-card-lost::before   { background: linear-gradient(90deg, #475569, #64748b); }

/* ── Banner de urgência ── */
.vel-urgency-banner {
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.vel-urgency-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}
/* Sweep animado no banner */
.vel-urgency-inner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.05), transparent);
  animation: bannerSweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bannerSweep {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* Timer */
.vel-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.vel-timer-label {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-faint);
}
.vel-timer-display {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}
.vel-timer-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.05em;
  color: #ef4444;
  line-height: 1;
  text-shadow: 0 0 25px rgba(239,68,68,0.5);
  min-width: 2.5ch;
  text-align: center;
  transition: transform .15s ease;
}
.vel-timer-unit {
  font-size: 1rem;
  font-weight: 600;
  color: #f87171;
}
.vel-timer-bar-wrap {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.vel-timer-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 99px;
  transform-origin: left;
  animation: timerBarDrain 60s linear infinite;
}
@keyframes timerBarDrain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* Conteúdo do banner */
.vel-urgency-right { flex: 1; }
.vel-urgency-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: .65rem;
}
.vel-urgency-highlight {
  background: linear-gradient(120deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vel-urgency-sub {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.vel-urgency-btn {
  padding: .72rem 1.6rem;
  font-size: .9rem;
}

/* Fonte */
.vel-source {
  text-align: center;
  font-size: .72rem;
  color: var(--text-faint);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.vel-source em { font-style: normal; color: var(--text-muted); }

/* ── Contador animado (countUp) ── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .vel-stats-grid { grid-template-columns: 1fr; max-width: 480px; }
  .vel-card-hero  { transform: scale(1); }
  .vel-card-hero:hover { transform: translateY(-6px); }
}

@media (max-width: 700px) {
  .vel-section { padding: 80px 0 70px; }

  .vel-timeline-wrap { padding: 3rem 0 4rem; }

  .vel-urgency-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .vel-timer-wrap { flex-direction: row; align-items: center; gap: 1rem; }

  .vel-urgency-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .vel-mark-time { font-size: .6rem; }
  .vel-mark-stat { font-size: .65rem; }
  .vel-timeline-legend { gap: .85rem; }
}
/* ════════════════════════════════════════════════════════
   CORREÇÕES MOBILE — Hero Mockup + Banner Urgência
════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Mockup: altura maior no mobile para o chat respirar ── */
  .app-body {
    height: 400px;
    position: relative;
  }

  /* ── Esconde sidebar e contatos no mobile ── */
  .app-sidebar  { display: none !important; }
  .contacts-col { display: none !important; }
  .info-panel   { display: none !important; }

  /* ── Chat ocupa 100% da largura ── */
  .chat-area {
    display: flex !important;
    width: 100% !important;
    flex: 1 !important;
    flex-direction: column;
  }

  /* ── Mensagens com padding confortável ── */
  .chat-messages {
    padding: .75rem .75rem .5rem;
    gap: .6rem;
  }

  /* ── Bolhas um pouco menores para caber bem ── */
  .msg-bubble {
    max-width: 82%;
    font-size: .68rem;
    padding: .52rem .72rem .82rem;
  }

  /* ── Thinking bubble da IA menor ── */
  .ia-thinking-bubble {
    padding: .42rem .7rem;
    gap: .35rem;
  }
  .ia-thinking-label { font-size: .5rem; }

  /* ── Input bar mais compacta ── */
  .chat-input-bar {
    padding: .5rem .75rem;
  }
  .chat-input-bar input {
    font-size: .68rem;
    padding: .35rem .6rem;
  }

  /* ── Header do chat mais compacto ── */
  .chat-header {
    padding: .6rem .75rem;
    gap: .5rem;
  }
  .chat-contact-name   { font-size: .72rem; }
  .chat-contact-status { font-size: .58rem; }
  .ia-tag              { font-size: .6rem; padding: .15rem .5rem; }

  /* ── Avatares xs menores no mobile ── */
  .c-av.xs {
    width: 20px;
    height: 20px;
    font-size: .55rem;
  }

  /* ── Esconde texto do banner de urgência no mobile ── */
  .vel-urgency-title { display: none; }
}

/* ── Ajuste fino para telas muito pequenas (< 380px) ── */
@media (max-width: 380px) {
  .app-body      { height: 360px; }
  .msg-bubble    { max-width: 88%; font-size: .64rem; }
  .chat-messages { padding: .6rem .6rem .4rem; }
}
/* ── Esconde banner de urgência completo no mobile ── */
@media (max-width: 768px) {
  .vel-urgency-banner {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav   { display: none !important; }
  .hamburger { display: flex; }
}
/* 
   FEATURES SECTION
    */
.feat-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Blobs */
.feat-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.feat-blob-left {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  top: 10%; left: -200px;
}
.feat-blob-right {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(129,140,248,0.06) 0%, transparent 70%);
  bottom: 5%; right: -150px;
}

/* ── Cabeçalho ── */
.feat-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.feat-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.feat-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
}
.feat-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Grid 4×2 ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.feat-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem 1.3rem;
  overflow: hidden;
  cursor: default;
  transition:
    background   .35s var(--ease),
    border-color .35s var(--ease),
    transform    .35s var(--ease),
    box-shadow   .35s var(--ease);
}

/* Linha azul no topo ao hover */
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-title);
  border-radius: 1rem 1rem 0 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

/* Glow de canto */
.feat-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.feat-card:hover {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.22);
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    0 0 0 1px rgba(59,130,246,0.08);
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover::after  { opacity: 1; }

/* ── Ícone — tamanho absolutamente fixo ── */
.feat-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: .75rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.feat-card:hover .feat-icon-wrap {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.38);
  transform: scale(1.08) rotate(-2deg);
}

/* CRÍTICO: SVG tamanho fixo */
.feat-icon-wrap svg,
.feat-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  color: var(--primary-light);
  display: block;
  flex-shrink: 0;
  transition: color .35s var(--ease);
}
.feat-card:hover .feat-icon-wrap svg,
.feat-card:hover .feat-icon { color: #93c5fd; }

/* ── Texto ── */
.feat-card-title {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  transition: color .3s;
}
.feat-card:hover .feat-card-title { color: #fff; }

.feat-card-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color .3s;
}
.feat-card:hover .feat-card-desc { color: #94a3b8; }

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .feat-section { padding: 80px 0 70px; }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .85rem;
  }
  .feat-card { padding: 1.2rem 1rem; }
  .feat-icon-wrap {
    width: 38px; height: 38px;
    min-width: 38px; min-height: 38px;
  }
  .feat-card-title { font-size: .82rem; }
  .feat-card-desc  { font-size: .74rem; }
}

@media (max-width: 400px) {
  .feat-grid { grid-template-columns: 1fr; }
}
/* 
   VALUE SECTION — Mais faturamento, menos desperdício
    */
.value-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Blobs */
.value-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.value-blob-top {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.value-blob-bottom {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
  bottom: 0; right: -100px;
}

/* ── Cabeçalho ── */
.value-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.value-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.value-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.value-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.value-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.value-subtitle {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.value-subtitle strong { color: var(--text); }

/* ── ROI Card REIMAGINADO ── */
.roi-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 1.5rem;
  padding: 2.5rem;
  overflow: hidden;
  z-index: 1;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.roi-card:hover {
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 0 70px rgba(59,130,246,0.1), 0 30px 60px rgba(0,0,0,0.3);
}

/* Linha gradiente no topo */
.roi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-title);
  border-radius: 1.5rem 1.5rem 0 0;
}

.roi-card-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Frase principal ── */
.roi-main {
  text-align: center;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.roi-main-top {
  margin-bottom: 1.25rem;
}
.roi-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  padding: .28rem .75rem;
  border-radius: 99px;
}
.roi-chip svg {
  width: 13px !important; height: 13px !important;
  min-width: 13px; max-width: 13px;
  flex-shrink: 0;
  color: var(--primary-light);
}

.roi-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.roi-headline-num,
.roi-headline-months {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-size: 1.1em;
}

.roi-tagline {
  font-size: clamp(.85rem, 1.2vw, .95rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.roi-price-highlight {
  color: var(--text);
  font-weight: 700;
}

/* ── Divisor ── */
.roi-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0 0 2rem;
  position: relative; z-index: 1;
}

/* ── 3 fatos ── */
.roi-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}

.roi-fact {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: .85rem;
  padding: .9rem 1.1rem;
  flex: 1;
  min-width: 140px;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.roi-fact:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.roi-fact-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: .65rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* CRÍTICO: SVGs dos ícones */
.roi-fact-icon svg {
  width: 18px !important; height: 18px !important;
  min-width: 18px !important; max-width: 18px !important;
  min-height: 18px !important; max-height: 18px !important;
  display: block; flex-shrink: 0;
}
.roi-fact-blue  { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.22); color: #60a5fa; }
.roi-fact-green { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.22); color: #34d399; }
.roi-fact-cyan  { background: rgba(6,182,212,0.12);  border: 1px solid rgba(6,182,212,0.22);  color: #22d3ee; }

.roi-fact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.roi-fact-value.green { color: #10b981; text-shadow: 0 0 20px rgba(16,185,129,0.3); }
.roi-fact-value.cyan  { color: #06b6d4; text-shadow: 0 0 20px rgba(6,182,212,0.3); }

.roi-fact-period {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-faint);
}
.roi-fact-label {
  font-size: .7rem;
  color: var(--text-faint);
  line-height: 1.3;
  margin-top: .15rem;
}

/* Seta entre fatos */
.roi-fact-arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  animation: arrowPulse 1.8s ease-in-out infinite;
}
.roi-fact-arrow svg {
  width: 18px !important; height: 18px !important;
  min-width: 18px; max-width: 18px;
  display: block;
}
@keyframes arrowPulse {
  0%,100% { opacity: .4; transform: translateX(0); }
  50%      { opacity: 1;  transform: translateX(4px); }
}

/* ── Selo final ── */
.roi-seal {
  position: relative; z-index: 1;
}
.roi-seal-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
}
/* Sweep animado */
.roi-seal-inner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.06), transparent);
  animation: stripSweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
.roi-seal-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
  animation: roiIconFloat 3s ease-in-out infinite;
}
.roi-seal-text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.roi-seal-text s {
  color: var(--text-faint);
  opacity: .7;
}
.roi-seal-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Responsivo ── */
@media (max-width: 680px) {
  .roi-card { padding: 1.75rem 1.25rem; }
  .roi-facts { flex-direction: column; align-items: stretch; }
  .roi-fact  { min-width: unset; }
  .roi-fact-arrow { transform: rotate(90deg); margin: -.25rem auto; }
  .roi-seal-inner { flex-direction: column; text-align: center; }
  .roi-headline { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ── 3 Pilares ── */
.value-pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.1rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}

.value-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.4rem 1.25rem;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  cursor: default;
}
.value-pillar:hover {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.2);
  transform: translateY(-4px);
}

.value-pillar-icon-wrap {
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  border-radius: .75rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.value-pillar:hover .value-pillar-icon-wrap { transform: scale(1.1); background: rgba(59,130,246,0.18); }

.value-pillar-icon-green {
  background: rgba(16,185,129,0.1) !important;
  border-color: rgba(16,185,129,0.2) !important;
  color: #34d399 !important;
}
.value-pillar:hover .value-pillar-icon-green { background: rgba(16,185,129,0.18) !important; }

.value-pillar-icon-cyan {
  background: rgba(6,182,212,0.1) !important;
  border-color: rgba(6,182,212,0.2) !important;
  color: #22d3ee !important;
}
.value-pillar:hover .value-pillar-icon-cyan { background: rgba(6,182,212,0.18) !important; }

/* CRÍTICO: SVG dos pilares */
.value-pillar-icon-wrap svg {
  width: 20px !important; height: 20px !important;
  min-width: 20px !important; max-width: 20px !important;
  min-height: 20px !important; max-height: 20px !important;
  display: block; flex-shrink: 0;
}

.value-pillar-title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.value-pillar-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Comparativo ── */
.value-compare {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  position: relative; z-index: 1;
}
.value-compare-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}

.value-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}

.value-compare-col {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.value-compare-them {
  background: rgba(255,255,255,0.02);
}
.value-compare-us {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.22);
  position: relative;
}
.value-compare-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-title);
  border-radius: 1rem 1rem 0 0;
}

.value-compare-col-header {
  margin-bottom: 1.1rem;
}
.value-compare-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.value-compare-badge.them {
  background: rgba(255,255,255,0.06);
  color: var(--text-faint);
  border: 1px solid rgba(255,255,255,0.1);
}
.value-compare-badge.us {
  background: rgba(59,130,246,0.15);
  color: var(--primary-light);
  border: 1px solid rgba(59,130,246,0.3);
}

.value-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.value-compare-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  line-height: 1.45;
}
/* CRÍTICO: ícones da lista */
.value-compare-item svg {
  width: 14px !important; height: 14px !important;
  min-width: 14px !important; max-width: 14px !important;
  min-height: 14px !important; max-height: 14px !important;
  flex-shrink: 0;
}
.value-compare-item.no  { color: var(--text-faint); }
.value-compare-item.no  svg { color: #ef4444; }
.value-compare-item.yes { color: var(--text-muted); }
.value-compare-item.yes svg { color: #10b981; }

.value-compare-price {
  font-size: .8rem;
  padding: .6rem .85rem;
  border-radius: .5rem;
  text-align: center;
}
.them-price {
  background: rgba(255,255,255,0.04);
  color: var(--text-faint);
}
.them-price strong { color: var(--text-muted); }
.us-price {
  background: rgba(59,130,246,0.1);
  color: var(--primary-light);
  border: 1px solid rgba(59,130,246,0.2);
}
.us-price strong { color: #fff; font-size: .95rem; }

/* Divisor central do comparativo */
.value-compare-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding-top: 3rem;
}
.value-compare-divider-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}
.value-compare-divider-logo {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .05em;
}
.value-compare-divider-logo b { color: var(--primary); }

/* ── CTA Final ── */
.value-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative; z-index: 1;
}
.value-cta-btn {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  box-shadow: var(--glow);
}
.value-cta-btn:hover {
  box-shadow: var(--glow-hover);
  transform: translateY(-3px) scale(1.02);
}
.value-cta-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--text-faint);
}
.value-cta-note svg {
  width: 13px !important; height: 13px !important;
  min-width: 13px; max-width: 13px;
  min-height: 13px; max-height: 13px;
  color: #10b981;
  flex-shrink: 0;
}

/* ── Responsivo ── */
@media (max-width: 860px) {
  .value-pillars { grid-template-columns: 1fr; max-width: 480px; }
  .value-compare-grid { grid-template-columns: 1fr; }
  .value-compare-divider { display: none; }
  .value-roi-calc {
    flex-direction: column;
    gap: 1rem;
  }
  .value-roi-vs {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .value-roi-vs-line { width: 40px; height: 1px; }
}

@media (max-width: 600px) {
  .value-section { padding: 80px 0 70px; }
  .value-roi-card { padding: 1.5rem 1.25rem; }
  .value-roi-big { font-size: 2.3rem; }
  .value-cta-btn { width: 100%; justify-content: center; }
}
/* 
   PRICING SECTION
    */
.pricing-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Blobs */
.pricing-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.pricing-blob-tl {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.pricing-blob-br {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(129,140,248,0.06) 0%, transparent 70%);
  bottom: -80px; right: -100px;
}

/* ── Cabeçalho ── */
.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.pricing-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: .25rem;
}
.pricing-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* ── Toggle ── */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
}

.pricing-toggle-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-faint);
  transition: color .3s var(--ease);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.pricing-toggle-label.active { color: var(--text); }

.pricing-save-badge {
  font-size: .65rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: .15rem .5rem;
  border-radius: 99px;
}

/* O botão toggle */
.pricing-toggle {
  position: relative;
  width: 48px; height: 26px;
  border-radius: 99px;
  background: var(--primary);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s var(--ease);
  box-shadow: 0 0 12px rgba(59,130,246,0.4);
}
.pricing-toggle.monthly {
  background: rgba(255,255,255,0.15);
  box-shadow: none;
}
.pricing-toggle-knob {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: right .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.pricing-toggle.monthly .pricing-toggle-knob {
  right: calc(100% - 23px);
}

/* ── Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
  align-items: start;
}

/* ── Card base ── */
.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.13);
}

/* Card Pro destacado */
.pricing-card-pro {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.3);
  transform: scale(1.02);
}
.pricing-card-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-title);
  border-radius: 1.5rem 1.5rem 0 0;
}
.pricing-card-pro:hover {
  transform: scale(1.02) translateY(-6px);
  border-color: rgba(59,130,246,0.5);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 0 60px rgba(59,130,246,0.12);
}

/* Glow interno do pro */
.pricing-pro-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Badge "Mais escolhido" */
.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: .28rem .9rem;
  border-radius: 0 0 .75rem .75rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.pricing-badge svg {
  width: 12px !important; height: 12px !important;
  min-width: 12px; max-width: 12px;
  flex-shrink: 0;
}

/* Topo do card */
.pricing-card-top {
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.pricing-card-pro .pricing-card-top { padding-top: 1.25rem; }

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.pricing-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: .2rem;
  margin-bottom: .35rem;
}
.pricing-currency {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: .5rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.04em;
  line-height: 1;
  transition: all .4s var(--ease);
}
.pricing-period {
  font-size: .8rem;
  color: var(--text-faint);
  padding-top: .6rem;
  align-self: flex-end;
  padding-bottom: .35rem;
}
.pricing-installment {
  font-size: .72rem;
  color: var(--text-faint);
  transition: all .3s var(--ease);
}

/* Limites de usuários/contas */
.pricing-limits {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.pricing-limit-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}
.pricing-limit-badge.pro {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
  color: var(--primary-light);
}
/* CRÍTICO: SVGs dos badges de limite */
.pricing-limit-badge svg {
  width: 12px !important; height: 12px !important;
  min-width: 12px !important; max-width: 12px !important;
  min-height: 12px !important; max-height: 12px !important;
  flex-shrink: 0;
}

/* ── Features ── */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.75rem;
  position: relative; z-index: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  line-height: 1.4;
  transition: color .25s;
}
.pricing-feature.no {
  color: var(--text-faint);
  text-decoration: line-through;
  opacity: .45;
}

.pricing-check {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #34d399;
  transition: background .3s, transform .3s;
}
.pricing-card:hover .pricing-check:not(.no) {
  background: rgba(16,185,129,0.2);
  transform: scale(1.08);
}
.pricing-check.no {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.15);
  color: rgba(239,68,68,0.4);
}
/* CRÍTICO: SVGs dos checks */
.pricing-check svg {
  width: 13px !important; height: 13px !important;
  min-width: 13px !important; max-width: 13px !important;
  min-height: 13px !important; max-height: 13px !important;
  flex-shrink: 0;
}

/* ── Botões ── */
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1.5rem;
  border-radius: .85rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative; z-index: 1;
  transition: all .35s var(--ease);
}
.pricing-btn svg {
  width: 16px !important; height: 16px !important;
  min-width: 16px; max-width: 16px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.pricing-btn:hover svg { transform: translateX(4px); }

.pricing-btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  background: transparent;
}
.pricing-btn-outline:hover {
  border-color: var(--border-blue);
  background: var(--blue-bg);
  color: var(--text);
  transform: translateY(-2px);
}

.pricing-btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: var(--glow);
}
.pricing-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-hover);
}

/* ── Garantia ── */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-radius: .85rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.pricing-guarantee svg {
  width: 18px !important; height: 18px !important;
  min-width: 18px; max-width: 18px;
  color: #34d399;
  flex-shrink: 0;
}
.pricing-guarantee p {
  font-size: .75rem;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
}

/* ── Animação de troca de preço ── */
.pricing-amount.animating {
  animation: priceFlip .35s var(--ease);
}
@keyframes priceFlip {
  0%   { opacity: 1; transform: translateY(0); }
  45%  { opacity: 0; transform: translateY(-10px); }
  55%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Responsivo ── */
@media (max-width: 700px) {
  .pricing-section { padding: 80px 0 70px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 2rem;
  }
  .pricing-card-pro { transform: scale(1); }
  .pricing-card-pro:hover { transform: translateY(-6px); }

  .pricing-toggle-wrap { gap: .65rem; padding: .5rem .85rem; }
  .pricing-save-badge  { display: none; }

  .pricing-amount { font-size: 2.5rem; }
}

@media (max-width: 400px) {
  .pricing-card { padding: 1.5rem 1.25rem; }
}
/* 
   TESTIMONIALS SECTION
    */
.testi-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.testi-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.testi-blob-left {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  top: 5%; left: -150px;
}
.testi-blob-right {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: 5%; right: -150px;
}

/* ── Cabeçalho ── */
.testi-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.testi-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.testi-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.testi-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.testi-subtitle {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Carrossel ── */
.testi-carousel-wrap {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto 2.5rem;
}

/* Track: apenas o grupo ativo é visível */
.testi-track {
  position: relative;
  min-height: 300px;
}

.testi-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.testi-group.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
  pointer-events: auto;
}
.testi-group.exit-left {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
}
.testi-group.enter-right {
  opacity: 0;
  transform: translateX(30px);
}

/* ── Card de depoimento ── */
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.1rem;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: default;
  transition:
    background   .35s var(--ease),
    border-color .35s var(--ease),
    transform    .35s var(--ease),
    box-shadow   .35s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Linha azul no topo ao hover */
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #818cf8, #a855f7, #ec4899);
  border-radius: 1.1rem 1.1rem 0 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.testi-card:hover::before { opacity: 1; }

.testi-card:hover {
  background: rgba(129,140,248,0.05);
  border-color: rgba(129,140,248,0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* Estrelas */
.testi-stars {
  display: flex;
  gap: .25rem;
}
.testi-stars svg {
  width: 16px !important; height: 16px !important;
  min-width: 16px; max-width: 16px;
  fill: #60a5fa;
  stroke: #60a5fa;
  stroke-width: 0;
  flex-shrink: 0;
}

/* Quote */
.testi-quote {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

/* Autor */
.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.testi-avatar {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
}
.testi-role {
  font-size: .68rem;
  color: var(--text-faint);
  margin-top: .1rem;
}

/* ── Controles ── */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.testi-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.testi-arrow svg {
  width: 18px !important; height: 18px !important;
  min-width: 18px; max-width: 18px;
  flex-shrink: 0;
}
.testi-arrow:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.35);
  color: var(--primary-light);
  transform: scale(1.08);
}

/* Dots */
.testi-dots {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all .35s var(--ease);
  padding: 0;
}
.testi-dot.active {
  width: 24px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(59,130,246,0.5);
}
.testi-dot:hover:not(.active) {
  background: rgba(255,255,255,0.4);
}

/* Barra de progresso automática */
.testi-progress-wrap {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  margin-top: 1.25rem;
  overflow: hidden;
}
.testi-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #a855f7);
  border-radius: 99px;
  transition: width linear;
}

/* ── Stats de rodapé ── */
.testi-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  max-width: 680px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.testi-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.testi-stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.testi-stat-label {
  font-size: .68rem;
  color: var(--text-faint);
  text-align: center;
}
.testi-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}
.testi-stars-mini {
  display: flex;
  gap: .2rem;
}
.testi-stars-mini svg {
  width: 14px !important; height: 14px !important;
  min-width: 14px; max-width: 14px;
  fill: #60a5fa;
  stroke: #60a5fa;
  stroke-width: 0;
  flex-shrink: 0;
}

/* ── Responsivo ── */
@media (max-width: 860px) {
  .testi-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* No mobile: mostra só 1 card por vez */
  .testi-group .testi-card:nth-child(2),
  .testi-group .testi-card:nth-child(3) {
    display: none;
  }
}

@media (max-width: 600px) {
  .testi-section { padding: 80px 0 70px; }
  .testi-stats   { gap: 1.25rem; padding: 1rem 1.25rem; }
  .testi-stat-divider { height: 24px; }
}
/* 
   GUARANTEE SECTION
    */
.guar-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Blobs */
.guar-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.guar-blob-top {
  width: 700px; height: 400px;
  background: radial-gradient(ellipse,
    rgba(59,130,246,0.08) 0%,
    rgba(6,182,212,0.04) 50%,
    transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.guar-blob-bottom {
  width: 500px; height: 300px;
  background: radial-gradient(ellipse,
    rgba(59,130,246,0.05) 0%, transparent 70%);
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
}

/* ── Separadores horizontais ── */
.guar-separator {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.guar-separator-top  { top: 0; }
.guar-separator-bottom { bottom: 0; }

/* Linha com gradiente que aparece em fade */
.guar-separator::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59,130,246,0.12) 20%,
    rgba(6,182,212,0.2)   50%,
    rgba(59,130,246,0.12) 80%,
    transparent 100%
  );
  animation: sepShimmer 4s ease-in-out infinite;
}

/* Shimmer sutil nos separadores */
.guar-separator::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96,165,250,0.5),
    transparent
  );
  animation: sepGlide 5s ease-in-out infinite;
}
.guar-separator-bottom::after {
  animation-delay: 2.5s;
}

@keyframes sepShimmer {
  0%,100% { opacity: .6; }
  50%      { opacity: 1; }
}
@keyframes sepGlide {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* ── Card central ── */
.guar-card {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 1.75rem;
  padding: 3.5rem 3rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.guar-card:hover {
  border-color: rgba(59,130,246,0.38);
  box-shadow:
    0 0 80px rgba(59,130,246,0.1),
    0 40px 80px rgba(0,0,0,0.35);
}

/* Linha gradiente no topo do card */
.guar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-title);
  border-radius: 1.75rem 1.75rem 0 0;
  opacity: .8;
}

/* Glow interno */
.guar-card-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse,
    rgba(59,130,246,0.1) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Escudo animado ── */
.guar-shield-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Anéis pulsantes */
.guar-shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.25);
  animation: shieldRingPulse 2.8s ease-in-out infinite;
}
.guar-ring-1 {
  width: 80px; height: 80px;
  animation-delay: 0s;
}
.guar-ring-2 {
  width: 100px; height: 100px;
  animation-delay: .7s;
  border-color: rgba(59,130,246,0.12);
}

@keyframes shieldRingPulse {
  0%,100% { transform: scale(1);   opacity: .6; }
  50%      { transform: scale(1.08); opacity: 0; }
}

.guar-shield-icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 1.1rem;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: shieldFloat 3.5s ease-in-out infinite;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.guar-card:hover .guar-shield-icon {
  background: rgba(59,130,246,0.2);
  transform: scale(1.07);
}

@keyframes shieldFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* CRÍTICO: SVG do escudo */
.guar-shield-icon svg {
  width: 30px !important; height: 30px !important;
  min-width: 30px; max-width: 30px;
  color: #60a5fa;
  flex-shrink: 0;
}

/* ── Conteúdo ── */
.guar-content {
  position: relative;
  z-index: 1;
}

.guar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.guar-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  min-width: 6px; min-height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.guar-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.guar-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.guar-body {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.guar-body strong {
  color: var(--text);
  font-weight: 700;
}

/* ── Separador interno ── */
.guar-inner-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.07),
    transparent
  );
  margin: 2rem 0;
}

/* ── Trust row ── */
.guar-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.guar-trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .3s var(--ease);
}
.guar-trust-item:hover { color: var(--text); }

.guar-trust-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: .55rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.guar-trust-item:hover .guar-trust-icon {
  background: rgba(59,130,246,0.2);
  transform: scale(1.1);
}

/* CRÍTICO: SVGs dos ícones de trust */
.guar-trust-icon svg {
  width: 15px !important; height: 15px !important;
  min-width: 15px !important; max-width: 15px !important;
  min-height: 15px !important; max-height: 15px !important;
  display: block; flex-shrink: 0;
}

/* Divisor entre ítens */
.guar-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── CTA ── */
.guar-cta {
  display: inline-flex;
  padding: .95rem 2.25rem;
  font-size: .95rem;
  box-shadow: var(--glow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .3s;
}
.guar-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--glow-hover);
  filter: brightness(1.08);
}
.guar-cta .arrow {
  transition: transform .3s var(--ease);
}
.guar-cta:hover .arrow { transform: translateX(5px); }

/* ── Responsivo ── */
@media (max-width: 680px) {
  .guar-section  { padding: 80px 0; }
  .guar-card     { padding: 2.5rem 1.5rem; border-radius: 1.25rem; }
  .guar-title    { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .guar-trust-row    { gap: 1rem; flex-direction: column; }
  .guar-trust-divider { width: 60px; height: 1px; }

  .guar-cta { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .guar-card  { padding: 2rem 1.25rem; }
  .guar-body  { font-size: .88rem; }
}
/* 
   FAQ SECTION
    */
.faq-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.faq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.faq-blob-left {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  top: 10%; left: -150px;
}
.faq-blob-right {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(129,140,248,0.05) 0%, transparent 70%);
  bottom: 10%; right: -120px;
}

/* ── Cabeçalho ── */
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.faq-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: .75rem;
}
.faq-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.faq-subtitle {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--text-faint);
}

/* ── Lista ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative; z-index: 1;
}

/* ── Item ── */
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: .9rem;
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item:hover {
  border-color: rgba(59,130,246,0.18);
  background: rgba(59,130,246,0.025);
}
.faq-item.open {
  border-color: rgba(59,130,246,0.28);
  background: rgba(59,130,246,0.04);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(59,130,246,0.06);
}

/* Linha azul no topo quando aberto */
.faq-item.open::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--grad-title);
  border-radius: .9rem .9rem 0 0;
  margin-top: -1px;
}

/* ── Trigger ── */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .25s var(--ease);
}
.faq-trigger:hover { background: rgba(255,255,255,0.03); }

.faq-trigger-left {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 1;
  min-width: 0;
}

/* Número da FAQ */
.faq-num {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: .18rem .45rem;
  border-radius: .35rem;
  letter-spacing: .04em;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.faq-item.open .faq-num {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.4);
}

.faq-question {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color .25s;
}
.faq-item.open .faq-question { color: #fff; }

/* Chevron */
.faq-chevron {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .35s var(--ease);
}
.faq-chevron svg {
  width: 15px !important; height: 15px !important;
  min-width: 15px; max-width: 15px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-chevron {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.35);
  color: var(--primary-light);
}
.faq-item.open .faq-chevron svg {
  transform: rotate(180deg);
}

/* ── Resposta (accordion) ── */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-item.open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.5rem 1.4rem 3.7rem;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer p strong {
  color: var(--text);
  font-weight: 600;
}

/* Separador sutil entre trigger e resposta */
.faq-item.open .faq-trigger {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── CTA pós-FAQ ── */
.faq-cta {
  text-align: center;
  position: relative; z-index: 1;
}
.faq-cta-text {
  font-size: .9rem;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.faq-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.faq-btn-primary {
  padding: .85rem 1.75rem;
  font-size: .9rem;
}

/* Botão WhatsApp */
.faq-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              transform .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-btn-whatsapp svg {
  width: 18px !important; height: 18px !important;
  min-width: 18px; max-width: 18px;
  flex-shrink: 0;
}
.faq-btn-whatsapp:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.15);
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .faq-section    { padding: 80px 0 70px; }
  .faq-trigger    { padding: 1rem 1.15rem; gap: .75rem; }
  .faq-answer p   { padding: 0 1.15rem 1.2rem 1.15rem; }
  .faq-question   { font-size: .83rem; }
  .faq-num        { display: none; }
  .faq-cta-btns   { flex-direction: column; align-items: stretch; }
  .faq-btn-primary,
  .faq-btn-whatsapp { justify-content: center; width: 100%; }
}/* 
   FAQ SECTION
    */
.faq-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.faq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.faq-blob-left {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  top: 10%; left: -150px;
}
.faq-blob-right {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(129,140,248,0.05) 0%, transparent 70%);
  bottom: 10%; right: -120px;
}

/* ── Cabeçalho ── */
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.faq-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  min-width: 7px; min-height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: .75rem;
}
.faq-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.faq-subtitle {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--text-faint);
}

/* ── Lista ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative; z-index: 1;
}

/* ── Item ── */
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: .9rem;
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item:hover {
  border-color: rgba(59,130,246,0.18);
  background: rgba(59,130,246,0.025);
}
.faq-item.open {
  border-color: rgba(59,130,246,0.28);
  background: rgba(59,130,246,0.04);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(59,130,246,0.06);
}

/* Linha azul no topo quando aberto */
.faq-item.open::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--grad-title);
  border-radius: .9rem .9rem 0 0;
  margin-top: -1px;
}

/* ── Trigger ── */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .25s var(--ease);
}
.faq-trigger:hover { background: rgba(255,255,255,0.03); }

.faq-trigger-left {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 1;
  min-width: 0;
}

/* Número da FAQ */
.faq-num {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: .18rem .45rem;
  border-radius: .35rem;
  letter-spacing: .04em;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.faq-item.open .faq-num {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.4);
}

.faq-question {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color .25s;
}
.faq-item.open .faq-question { color: #fff; }

/* Chevron */
.faq-chevron {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .35s var(--ease);
}
.faq-chevron svg {
  width: 15px !important; height: 15px !important;
  min-width: 15px; max-width: 15px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-chevron {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.35);
  color: var(--primary-light);
}
.faq-item.open .faq-chevron svg {
  transform: rotate(180deg);
}

/* ── Resposta (accordion) ── */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-item.open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.5rem 1.4rem 3.7rem;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer p strong {
  color: var(--text);
  font-weight: 600;
}

/* Separador sutil entre trigger e resposta */
.faq-item.open .faq-trigger {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── CTA pós-FAQ ── */
.faq-cta {
  text-align: center;
  position: relative; z-index: 1;
}
.faq-cta-text {
  font-size: .9rem;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.faq-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.faq-btn-primary {
  padding: .85rem 1.75rem;
  font-size: .9rem;
}

/* Botão WhatsApp */
.faq-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              transform .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-btn-whatsapp svg {
  width: 18px !important; height: 18px !important;
  min-width: 18px; max-width: 18px;
  flex-shrink: 0;
}
.faq-btn-whatsapp:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.15);
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .faq-section    { padding: 80px 0 70px; }
  .faq-trigger    { padding: 1rem 1.15rem; gap: .75rem; }
  .faq-answer p   { padding: 0 1.15rem 1.2rem 1.15rem; }
  .faq-question   { font-size: .83rem; }
  .faq-num        { display: none; }
  .faq-cta-btns   { flex-direction: column; align-items: stretch; }
  .faq-btn-primary,
  .faq-btn-whatsapp { justify-content: center; width: 100%; }
}
/* 
   FINAL CTA SECTION
    */
.finalcta-section {
  position: relative;
  padding: 140px 0 130px;
  overflow: hidden;
  /* Fundo levemente diferenciado para destacar da seção anterior */
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(8,12,28,1) 30%,
    rgba(6,10,24,1) 70%,
    var(--bg) 100%
  );
}

/* ── LUZ PULSANTE CENTRAL (efeito dimming em loop) ── */
.finalcta-light {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 20%,
    rgba(59,130,246,0.18) 0%,
    rgba(59,130,246,0.10) 25%,
    rgba(6,182,212,0.05)  50%,
    transparent 72%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: ctaLightDim 4s ease-in-out infinite;
}

.finalcta-light-inner {
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(96,165,250,0.22) 0%,
    rgba(59,130,246,0.08) 45%,
    transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: ctaLightDim 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* O efeito dimming: clareia e escurece suavemente em loop */
@keyframes ctaLightDim {
  0%,100% {
    opacity: .55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

/* ── Partículas de fundo ── */
.finalcta-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(59,130,246,0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(96,165,250,0.04) 1px, transparent 1px);
  background-size: 55px 55px, 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  z-index: 0;
  animation: ctaParticlesDrift 20s linear infinite;
}
@keyframes ctaParticlesDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(-55px); }
}

/* ── Separadores ── */
.finalcta-sep {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.finalcta-sep-top    { top: 0; }
.finalcta-sep-bottom { bottom: 0; }

.finalcta-sep::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59,130,246,0.15) 20%,
    rgba(96,165,250,0.28)  50%,
    rgba(59,130,246,0.15) 80%,
    transparent 100%
  );
  animation: sepShimmer 4s ease-in-out infinite;
}
.finalcta-sep::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.6), transparent);
  animation: sepGlide 5s ease-in-out infinite;
}
.finalcta-sep-bottom::after { animation-delay: 2s; }

/* ── Conteúdo central ── */
.finalcta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* ── Ícone foguete ── */
.finalcta-rocket-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Anéis pulsantes */
.finalcta-rocket-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.2);
  animation: ctaRingPulse 3s ease-in-out infinite;
}
.finalcta-ring-1 { width: 64px;  height: 64px;  animation-delay: 0s; }
.finalcta-ring-2 { width: 84px;  height: 84px;  animation-delay: .6s; border-color: rgba(59,130,246,0.12); }
.finalcta-ring-3 { width: 106px; height: 106px; animation-delay: 1.2s; border-color: rgba(59,130,246,0.06); }

@keyframes ctaRingPulse {
  0%,100% { transform: scale(1);    opacity: .7; }
  50%      { transform: scale(1.06); opacity: 0; }
}

.finalcta-rocket-icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 1.1rem;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: ctaRocketFloat 3.5s ease-in-out infinite;
  transition: background .35s var(--ease), transform .35s var(--ease);
  box-shadow: 0 0 30px rgba(59,130,246,0.15);
}
.finalcta-rocket-icon:hover {
  background: rgba(59,130,246,0.22);
  transform: scale(1.08);
}

@keyframes ctaRocketFloat {
  0%,100% { transform: translateY(0)    rotate(0deg); }
  25%      { transform: translateY(-5px) rotate(-2deg); }
  75%      { transform: translateY(-3px) rotate(1deg); }
}

/* CRÍTICO: SVG do foguete */
.finalcta-rocket-icon svg {
  width: 30px !important; height: 30px !important;
  min-width: 30px; max-width: 30px;
  color: #60a5fa;
  flex-shrink: 0;
}

/* ── Eyebrow ── */
.finalcta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.finalcta-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  min-width: 6px; min-height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Título ── */
.finalcta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.finalcta-title-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Subtítulo ── */
.finalcta-subtitle {
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.finalcta-subtitle strong { color: var(--text); }

/* ── Botão CTA ── */
.finalcta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 2.75rem;
  border-radius: .9rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    var(--glow),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  transition:
    transform    .35s var(--ease),
    box-shadow   .35s var(--ease),
    filter       .35s var(--ease);
}
.finalcta-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--glow-hover), 0 20px 50px rgba(59,130,246,0.4);
  filter: brightness(1.1);
}

.finalcta-btn-text { position: relative; z-index: 1; }

/* Seta animada */
.finalcta-btn-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform .35s var(--ease);
}
.finalcta-btn-arrow svg {
  width: 20px !important; height: 20px !important;
  min-width: 20px; max-width: 20px;
  flex-shrink: 0;
}
.finalcta-btn:hover .finalcta-btn-arrow { transform: translateX(5px); }

/* Sweep de brilho ao hover */
.finalcta-btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent);
  transition: left .55s var(--ease);
  pointer-events: none;
}
.finalcta-btn:hover .finalcta-btn-shine { left: 150%; }

/* ── Nota de garantia ── */
.finalcta-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  color: var(--text-faint);
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.finalcta-note svg {
  width: 13px !important; height: 13px !important;
  min-width: 13px; max-width: 13px;
  color: #34d399;
  flex-shrink: 0;
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .finalcta-section { padding: 100px 0 90px; }
  .finalcta-title   { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .finalcta-btn     { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; }
  .finalcta-note    { font-size: .7rem; }
  .finalcta-ring-2,
  .finalcta-ring-3  { display: none; }
}

@media (max-width: 380px) {
  .finalcta-title    { font-size: 1.75rem; }
  .finalcta-subtitle { font-size: .9rem; }
}
/* 
   FOOTER
    */
.footer {
  position: relative;
  background: #000;
  padding: 64px 0 0;
}

/* ── Separador topo animado ── */
.footer-sep {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  overflow: hidden;
}
.footer-sep::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59,130,246,0.15) 20%,
    rgba(96,165,250,0.3)  50%,
    rgba(59,130,246,0.15) 80%,
    transparent 100%
  );
  animation: sepShimmer 4s ease-in-out infinite;
}
.footer-sep::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.55), transparent);
  animation: sepGlide 5s ease-in-out infinite;
}

/* ── Grid principal ── */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

/* ── Coluna brand ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo { display: inline-block; }

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  font-size: .8rem;
  color: var(--text-faint);
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  font-weight: 600;
  color: var(--text-faint);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: .22rem .6rem;
  border-radius: 99px;
  transition: border-color .3s, color .3s;
}
.footer-badge:hover {
  border-color: rgba(59,130,246,0.25);
  color: var(--text-muted);
}
/* CRÍTICO: SVGs dos badges */
.footer-badge svg {
  width: 12px !important; height: 12px !important;
  min-width: 12px; max-width: 12px;
  color: #34d399;
  flex-shrink: 0;
}

/* ── Colunas de links ── */
.footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-link {
  font-size: .8rem;
  color: var(--text-faint);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width .3s var(--ease);
}
.footer-link:hover {
  color: var(--text);
  transform: translateX(3px);
}
.footer-link:hover::after { width: 100%; }

/* ── Botão "Já é cliente" ── */
.footer-col-cta { }

.footer-client-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  border-radius: .7rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--primary-light);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background   .3s var(--ease),
    border-color .3s var(--ease),
    transform    .3s var(--ease),
    box-shadow   .3s var(--ease);
  width: 100%;
  justify-content: space-between;
}
.footer-client-btn:hover {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.15);
}

/* Dot verde de "online" */
.footer-client-btn-dot {
  display: inline-block;
  width: 8px; height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16,185,129,0.7);
  animation: onlinePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes onlinePulse {
  0%,100% { box-shadow: 0 0 4px rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 12px rgba(16,185,129,0.9); }
}

/* CRÍTICO: seta do botão */
.footer-client-btn svg {
  width: 14px !important; height: 14px !important;
  min-width: 14px; max-width: 14px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.footer-client-btn:hover svg { transform: translateX(4px); }

.footer-client-note {
  font-size: .65rem;
  color: var(--text-faint);
  margin-top: .6rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.footer-client-note::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

/* ── Separador interno ── */
.footer-inner-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.05),
    transparent
  );
}

/* ── Rodapé inferior ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
  font-size: .72rem;
  color: var(--text-faint);
}

.footer-made {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--text-faint);
}
.footer-made svg {
  width: 12px !important; height: 12px !important;
  min-width: 12px; max-width: 12px;
  flex-shrink: 0;
  animation: heartBeat 1.8s ease-in-out infinite;
}
@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  15%      { transform: scale(1.25); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.15); }
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer          { padding: 50px 0 0; }
  .footer-main     { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand    { grid-column: auto; }
  .footer-bottom   { flex-direction: column; align-items: center; text-align: center; }
  .footer-client-btn { width: 100%; }
}
/* ── Footer: Social + Contato ── */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-faint);
  text-decoration: none;
  padding: .45rem .7rem;
  border-radius: .55rem;
  border: 1px solid transparent;
  transition:
    color        .3s var(--ease),
    background   .3s var(--ease),
    border-color .3s var(--ease),
    transform    .3s var(--ease);
}
.footer-social-btn:hover {
  transform: translateX(3px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--text);
}

/* Instagram: gradiente no hover */
.footer-social-btn:first-child:hover {
  background: rgba(225,48,108,0.08);
  border-color: rgba(225,48,108,0.2);
  color: #f472b6;
}
.footer-social-btn:first-child:hover svg { color: #f472b6; }

/* Email: azul no hover */
.footer-email-btn:hover {
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.2);
  color: var(--primary-light);
}
.footer-email-btn:hover svg { color: var(--primary-light); }

/* CRÍTICO: SVGs dos botões sociais */
.footer-social-btn svg {
  width: 16px !important; height: 16px !important;
  min-width: 16px !important; max-width: 16px !important;
  min-height: 16px !important; max-height: 16px !important;
  flex-shrink: 0;
  transition: color .3s var(--ease);
}
/* ── Separadores entre seções ── */
.section-sep {
  position: relative;
  height: 1px;
  overflow: visible;
  margin: -1px 0; /* cancela qualquer colapso de margem */
  z-index: 10;
}

/* Linha base */
.section-sep::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(59,130,246,0.12) 20%,
    rgba(96,165,250,0.25) 50%,
    rgba(59,130,246,0.12) 80%,
    transparent           100%
  );
  animation: sepShimmer 4s ease-in-out infinite;
}

/* Shimmer deslizante */
.section-sep::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96,165,250,0.55),
    transparent
  );
  animation: sepGlide 5s ease-in-out infinite;
}

/* ── Especial (antes dos planos) ── */
.section-sep-special::before {
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(59,130,246,0.08) 10%,
    rgba(59,130,246,0.22) 30%,
    rgba(96,165,250,0.45) 50%,
    rgba(59,130,246,0.22) 70%,
    rgba(59,130,246,0.08) 90%,
    transparent           100%
  );
  animation: sepShimmer 3s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(59,130,246,0.12);
}
.section-sep-special::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(147,197,253,0.8),
    transparent
  );
  animation: sepGlide 3.5s ease-in-out infinite;
}
/* ── Info Panel — campos do lead em caixas ── */

.info-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .75rem .4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: .5rem;
}

.info-panel-title {
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-faint);
}

.info-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .52rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: .15rem .45rem;
  border-radius: 99px;
}

.info-badge-dot {
  width: 5px; height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: #10b981;
  animation: onlinePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Campos ── */
.info-fields {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 0 .6rem;
  margin-bottom: .5rem;
}

.info-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: .4rem;
  padding: .35rem .55rem;
  transition: background .25s, border-color .25s;
}
.info-field:hover {
  background: rgba(59,130,246,0.05);
  border-color: rgba(59,130,246,0.15);
}

.info-field-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .56rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* CRÍTICO: SVGs dos labels */
.info-field-label svg {
  width: 10px !important; height: 10px !important;
  min-width: 10px; max-width: 10px;
  color: var(--primary-light);
  opacity: .7;
  flex-shrink: 0;
}

.info-field-value {
  font-size: .6rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge origem Instagram */
.info-field-origin {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: #f472b6;
  background: rgba(244,114,182,0.1);
  border: 1px solid rgba(244,114,182,0.2);
  padding: .1rem .4rem;
  border-radius: 99px;
  font-size: .55rem;
}
.info-field-origin svg {
  width: 9px !important; height: 9px !important;
  min-width: 9px; max-width: 9px;
  flex-shrink: 0;
}

/* ── Estágio ── */
.info-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem .6rem .55rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: .25rem;
}

.info-stage-label {
  font-size: .54rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
}

.info-stage-chip {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  font-size: .55rem;
  font-weight: 700;
  padding: .18rem .5rem;
  border-radius: 99px;
}
.info-stage-chip svg {
  width: 9px !important; height: 9px !important;
  min-width: 9px; max-width: 9px;
  flex-shrink: 0;
}

.info-stage-hot {
  color: #34d399;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
}
/* ── Info Panel: Status Pago ── */
.info-field-status-pago {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: #34d399;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: .1rem .4rem;
  border-radius: 99px;
  font-size: .55rem;
  font-weight: 700;
}
.info-field-status-pago svg {
  width: 8px !important; height: 8px !important;
  min-width: 8px; max-width: 8px;
  flex-shrink: 0;
}

/* ── Info Panel: Valor ── */
.info-field-valor {
  color: #34d399;
  font-weight: 700;
}

/* ── Info Panel: Observações ── */
.info-obs {
  margin: .4rem .6rem .55rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: .5rem;
  padding: .5rem .6rem;
}
.info-obs-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .54rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-faint);
  margin-bottom: .35rem;
}
.info-obs-label svg {
  width: 10px !important; height: 10px !important;
  min-width: 10px; max-width: 10px;
  color: var(--primary-light);
  opacity: .7;
  flex-shrink: 0;
}
.info-obs-text {
  font-size: .58rem;
  color: var(--text-faint);
  line-height: 1.6;
}

/* ── Chat Input: ícones de ação ── */
.chat-input-actions {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-shrink: 0;
}

.chat-action-btn {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: .4rem;
  border: none;
  background: transparent;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  padding: 0;
  flex-shrink: 0;
}
.chat-action-btn:hover {
  background: rgba(59,130,246,0.1);
  color: var(--primary-light);
}
.chat-action-btn svg {
  width: 14px !important; height: 14px !important;
  min-width: 14px; max-width: 14px;
  flex-shrink: 0;
}
/* ── Chat Input Bar: layout e botão enviar corrigido ── */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: .6rem;
  padding: .35rem .35rem .35rem .65rem;
}

.chat-input-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: .7rem;
  color: var(--text-muted);
  min-width: 0;
}

.chat-input-bar input::placeholder {
  color: var(--text-faint);
}

.chat-send-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: .45rem;
  border: none;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 2px 8px rgba(59,130,246,0.35);
}
.chat-send-btn:hover {
  background: #2563eb;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(59,130,246,0.5);
}
.chat-send-btn svg {
  width: 13px !important; height: 13px !important;
  min-width: 13px; max-width: 13px;
  flex-shrink: 0;
}
/* Wrapper fixo — só ele é fixed, as blobs são absolute dentro dele */
.bg-blobs-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  isolation: isolate;   /* ← isola as animações dentro do wrapper */
  will-change: auto;
}

.bg-blob-dance {
  position: absolute;  /* ← era fixed, agora absolute dentro do wrapper */
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  will-change: transform;
}

.bg-blob-dance-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle,
    rgba(59,130,246,0.07) 0%,
    rgba(96,165,250,0.04) 40%,
    transparent 70%);
  top: 10%;
  left: 5%;
  animation: blobDance1 18s ease-in-out infinite;
}

.bg-blob-dance-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle,
    rgba(6,182,212,0.06) 0%,
    rgba(59,130,246,0.04) 40%,
    transparent 70%);
  bottom: 15%;
  right: 8%;
  animation: blobDance2 22s ease-in-out infinite;
}

/* 
  Movimentos completamente diferentes entre si,
  com keyframes em múltiplos pontos para parecer
  aleatório e orgânico 
*/
@keyframes blobDance1 {
  0%   { transform: translate(0px,    0px)   scale(1);    }
  15%  { transform: translate(60px,  -80px)  scale(1.05); }
  30%  { transform: translate(-40px,  50px)  scale(0.95); }
  45%  { transform: translate(90px,   30px)  scale(1.08); }
  60%  { transform: translate(-70px, -60px)  scale(1);    }
  75%  { transform: translate(30px,   90px)  scale(0.97); }
  90%  { transform: translate(-50px,  20px)  scale(1.04); }
  100% { transform: translate(0px,    0px)   scale(1);    }
}

@keyframes blobDance2 {
  0%   { transform: translate(0px,    0px)   scale(1);    }
  20%  { transform: translate(-80px,  60px)  scale(1.06); }
  38%  { transform: translate(50px,  -70px)  scale(0.93); }
  55%  { transform: translate(-30px,  80px)  scale(1.09); }
  70%  { transform: translate(70px,  -40px)  scale(0.97); }
  85%  { transform: translate(-60px, -30px)  scale(1.03); }
  100% { transform: translate(0px,    0px)   scale(1);    }
}
@media (max-width: 768px) {
  .bg-blob-dance-1 { animation: none; top: 15%; left: -10%; }
  .bg-blob-dance-2 { animation: none; bottom: 20%; right: -10%; }
}
/* ── FAQ: animação de entrada escalonada ── */
.faq-item.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   .5s var(--ease),
    transform .5s var(--ease),
    /* mantém as transições que já existem no item */
    border-color .3s var(--ease),
    background   .3s var(--ease),
    box-shadow   .3s var(--ease);
}

.faq-item.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}