/* ============================================================
   BipPedidos – styles.css
   Premium Landing Page — versão final
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --purple:        #7c3aed;
  --purple-dark:   #5b21b6;
  --purple-light:  #ede9fe;
  --purple-mid:    #a78bfa;
  --purple-glow:   rgba(124, 58, 237, 0.18);
  --white:         #ffffff;
  --bg:            #fafafa;
  --bg-section:    #f5f3ff;
  --text:          #111827;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --border:        #e5e7eb;
  --success:       #10b981;
  --error:         #ef4444;
  --radius:        16px;
  --radius-sm:     10px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.12);
  --shadow-purple: 0 8px 32px rgba(124,58,237,.25);
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.4rem, 6vw, 4rem);   font-weight: 900; line-height: 1.08; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ── CONTAINER ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HELPERS ── */
.section-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: 1.05rem; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,58,237,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple-light);
}
.btn-ghost:hover { background: var(--purple-light); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--purple-light); transform: translateY(-2px); }
.btn-nav {
  background: var(--purple);
  color: var(--white);
  padding: 10px 20px;
  font-size: .875rem;
  border-radius: 100px;
}
.btn-nav:hover { background: var(--purple-dark); }
.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-full   { width: 100%; justify-content: center; }
.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  flex-shrink: 0;
}
.logo-icon  { font-size: 1.4rem; }
.logo-text strong { color: var(--purple); }

/* Logo oficial */
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Garante alinhamento vertical perfeito dentro da navbar */
  vertical-align: middle;
}
/* Variante no footer: fundo escuro, mantém tamanho menor */
.nav-logo-img--footer {
  height: 36px;
  /* Ajuste fino de brilho para fundo escuro se necessário */
  filter: brightness(1);
}
.nav-links  { display: flex; align-items: center; gap: 8px; flex: 1; }
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--purple); background: var(--purple-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--purple); background: var(--purple-light); }
.nav-mobile .btn    { margin-top: 8px; justify-content: center; }
.nav-mobile.open    { display: flex; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid de duas colunas */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Coluna esquerda */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(124,58,237,.2);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}
.hero-title    { margin-bottom: 20px; color: var(--text); }
.highlight {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  margin: 0 0 36px;
  color: var(--text-muted);
}
.hero-subtitle strong { color: var(--text); font-weight: 600; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Coluna direita: mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.phone-mockup::before {
  content: '';
  display: block;
  width: 80px; height: 6px;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #0f0f1a;
  border-radius: 28px;
  overflow: hidden;
  /* sem padding — a imagem preenche toda a tela */
}

/* Print real do app dentro do mockup */
.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  /* Garante que não haja gap embaixo (inline baseline) */
  vertical-align: top;
}

/* ── estilos do conteúdo ilustrativo anterior (mantidos para não quebrar nada) ── */
.screen-header {
  background: var(--purple);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-logo { color: var(--white); font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
/* Logo oficial dentro do mockup do celular */
.screen-logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}
.scan-area {
  position: relative;
  margin: 16px;
  height: 100px;
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,.3);
}
.scan-line {
  position: absolute;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  animation: scan 2s ease-in-out infinite;
}
@keyframes scan {
  0%   { top: 10%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}
.scan-label {
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  position: relative;
  z-index: 1;
}
.screen-result {
  margin: 0 16px;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(124,58,237,.25);
}
.result-sku  { color: var(--purple-mid); font-size: .65rem; font-weight: 700; letter-spacing: .06em; margin-bottom: 3px; }
.result-desc { color: var(--white); font-size: .8rem; font-weight: 600; margin-bottom: 8px; }
.result-qty  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
}
.qty-badge {
  background: var(--purple);
  color: var(--white);
  font-size: .8rem; font-weight: 800;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.result-status.ok { color: var(--success); font-size: .72rem; font-weight: 700; }

/* ══════════════════════════════════════════
   HISTÓRIA
══════════════════════════════════════════ */
.historia { background: var(--bg-section); padding: 100px 0; }
.historia-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}
.historia-icon {
  font-size: 3rem;
  background: var(--purple-light);
  width: 80px; height: 80px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.historia-content h2     { margin-bottom: 16px; }
.historia-content p      { margin-bottom: 14px; }
.historia-content p:last-child { margin-bottom: 0; }
.historia-content strong { color: var(--text); font-weight: 700; }

/* Faixa de credibilidade */
.historia-credibilidade {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--purple-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--purple);
}
.historia-credibilidade li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.hc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   COMO FUNCIONA
══════════════════════════════════════════ */
.como-funciona { padding: 100px 0; background: var(--white); }

/* Faixa de benefícios rápidos abaixo do subtítulo */
.steps-quick-benefits {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 20px;
  padding: 0;
}
.steps-quick-benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.sqb-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), var(--purple-mid), var(--purple-light));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.step-number {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  color: var(--purple); background: var(--purple-light);
  display: inline-block;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.step-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  color: var(--purple);
}
/* Step 03 usa logo oficial no lugar do emoji */
.step-icon--logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.step-card h3 { margin-bottom: 10px; font-size: 1rem; }

/* ══════════════════════════════════════════
   VÍDEO DEMONSTRATIVO
══════════════════════════════════════════ */
.video-demo { padding: 80px 0; background: var(--bg-section); }

/* Container responsivo 16:9 para YouTube ou <video> */
.video-wrapper { max-width: 800px; margin: 0 auto; }

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* Vídeo MP4 direto (sem aspect-ratio trick) */
.video-player {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  background: #000;
}

/* Placeholder enquanto não há vídeo */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}
.video-play-icon {
  width: 72px; height: 72px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.video-placeholder-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.video-placeholder-sub {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 360px;
}

/* ══════════════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════════════ */
.beneficios { padding: 100px 0; background: var(--bg-section); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--purple-light);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--purple-light);   /* fundo lilás único para todos */
  color: var(--purple);              /* cor roxa herdada pelo SVG via currentColor */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
/* Remove font-size residual — ícones agora são SVG */
.benefit-icon svg {
  display: block;
}
.benefit-card h3 { margin-bottom: 10px; font-size: 1.1rem; }

/* ══════════════════════════════════════════
   PLANO
══════════════════════════════════════════ */
.plano { padding: 100px 0; background: var(--white); }
.pricing-wrapper { display: flex; justify-content: center; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: 24px;
  padding: 48px;
  width: 100%; max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-purple);
  text-align: center;
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: .78rem; font-weight: 700;
  padding: 5px 18px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: .9rem; font-weight: 700;
  color: var(--purple);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1;
}
.price-currency { font-size: 1.4rem; font-weight: 700; margin-top: 12px; }
.price-value    { font-size: 5rem;   font-weight: 900; letter-spacing: -.04em; }
.price-cents    { font-size: 1.6rem; font-weight: 700; margin-top: 20px; }
.price-period   {
  font-size: 1rem; font-weight: 400;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 12px; margin-left: 4px;
}
.pricing-trial {
  background: #d1fae5; color: #065f46;
  font-size: .978rem; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
  display: inline-block;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none; text-align: left;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; font-weight: 500; color: var(--text);
}
.check {
  width: 22px; height: 22px;
  background: var(--purple-light); color: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
  flex-shrink: 0;
}
.pricing-disclaimer { font-size: .8rem; color: var(--text-light); margin-top: 14px; }

/* ── Destaque de confiança abaixo do valor ── */
.pricing-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.pricing-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.pricing-trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Redução de objeções abaixo do botão ── */
.pricing-objections {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 14px;
  padding: 0;
}
.pricing-objections li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Nota discreta sobre dispositivos adicionais */
.pricing-devices-note {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 4px;
  line-height: 1.5;
}
.pricing-devices-note a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--purple-light);
}
.pricing-devices-note a:hover {
  text-decoration-color: var(--purple);
}

/* Microtexto "1 assinatura por empresa" abaixo do preço */
.pricing-per-company {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
  margin-top: -4px;
  letter-spacing: .01em;
}

/* Bloco de dispositivos incluídos */
.pricing-devices {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8f5ff;
  border: 1px solid rgba(124,58,237,.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
  text-align: left;
}
.pricing-devices svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple);
}
.pricing-devices div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pricing-devices strong {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.pricing-devices span {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Bloco de destaque abaixo do trial */
.pricing-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f3edff;
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--purple-dark);
  text-align: left;
  line-height: 1.5;
}
.pricing-highlight svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--purple);
}

/* ══════════════════════════════════════════
   CADASTRO / FORMULÁRIO DE ACESSO
══════════════════════════════════════════ */
.cadastro {
  padding: 100px 0;
  background: var(--bg-section);
}
.cadastro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cadastro-left h2   { margin-bottom: 16px; }
.cadastro-left > p  { margin-bottom: 32px; font-size: 1rem; }
.cadastro-left > p strong { color: var(--text); }

.cadastro-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cadastro-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.bullet-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cadastro-bullets li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cadastro-bullets li strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}
.cadastro-bullets li span {
  font-size: .88rem;
  color: var(--text-muted);
}

.cadastro-right {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.cadastro-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.required { color: var(--purple); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-group input.error,
.form-group select.error { border-color: var(--error); }
.form-group input.error:focus,
.form-group select.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.form-group input::placeholder { color: var(--text-light); }

.field-error {
  font-size: .8rem;
  color: var(--error);
  font-weight: 500;
  min-height: 1em;
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-disclaimer {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -4px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 24px 0;
}
.success-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 12px; }
.form-success p  { font-size: .95rem; color: var(--text-muted); line-height: 1.7; }
.form-success p strong  { color: var(--text); }
.success-email { margin-top: 12px; font-size: .88rem !important; }
.success-email a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--purple-light);
}
.success-email a:hover { text-decoration-color: var(--purple); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { padding: 100px 0; background: var(--white); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--purple-mid); box-shadow: var(--shadow-purple); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--text);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--purple);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: .95rem; line-height: 1.7;
}
.faq-answer a { color: var(--purple); text-decoration: underline; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final { padding: 80px 0; background: var(--bg-section); }
.cta-card {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  box-shadow: var(--shadow-purple);
}
.cta-card h2 { color: var(--white); margin-bottom: 12px; }
.cta-card p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--text); padding: 64px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo  { margin-bottom: 16px; }
.footer-brand .logo-text,
.footer-brand .logo-icon { color: var(--white); }
.footer-brand .logo-text strong { color: var(--purple-mid); }
.footer-brand p          { color: rgba(255,255,255,.5); font-size: .9rem; max-width: 300px; }
.footer-brand p strong   { color: rgba(255,255,255,.8); }
.footer-links  { display: flex; gap: 64px; }
.footer-col    { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  color: var(--white);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 4px;
}
.footer-col a { color: rgba(255,255,255,.5); font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }

/* ══════════════════════════════════════════
   ASSISTENTE BIPPEDIDOS
══════════════════════════════════════════ */
.assistant-bubble {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.assistant-toggle {
  display: flex; align-items: center; gap: 10px;
  background: var(--purple); color: var(--white);
  border: none; border-radius: 100px;
  padding: 14px 22px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: var(--transition);
}
.assistant-toggle:hover { background: var(--purple-dark); transform: translateY(-2px); }
.assistant-icon       { font-size: 1.25rem; }
.assistant-close-icon { display: none; font-size: .9rem; }
.assistant-toggle.open .assistant-label      { display: none; }
.assistant-toggle.open .assistant-close-icon { display: inline; }

.assistant-window {
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none; flex-direction: column;
}
.assistant-window.open { display: flex; animation: slideUp .3s cubic-bezier(.4,0,.2,1); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.assistant-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--purple); color: var(--white);
}
.assistant-avatar { font-size: 2rem; flex-shrink: 0; }
/* Logo oficial no avatar do assistente */
.assistant-avatar-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
.assistant-name   { font-weight: 700; font-size: .95rem; }
.assistant-status {
  font-size: .75rem; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 5px;
  margin-top: 2px;
}
.status-dot {
  width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite;
}
.assistant-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto; max-height: 320px;
  display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth;
}
.msg {
  max-width: 88%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: .88rem; line-height: 1.55;
}
.msg.bot  {
  background: var(--purple-light); color: var(--text);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.msg.user {
  background: var(--purple); color: var(--white);
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.msg.bot p  { color: var(--text); }
.msg.user p { color: var(--white); }

.quick-questions { display: flex; flex-direction: column; gap: 7px; }
.quick-btn {
  background: var(--white);
  border: 1px solid var(--purple-mid);
  color: var(--purple); border-radius: 100px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 500;
  cursor: pointer; text-align: left;
  transition: var(--transition);
}
.quick-btn:hover { background: var(--purple-light); }

/* Typing indicator */
.typing-dots {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 0;
}
.typing-dots span {
  width: 7px; height: 7px;
  background: var(--purple-mid); border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .5; }
  40%           { transform: translateY(-6px); opacity: 1; }
}

.assistant-input-area {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}
.assistant-input-area input {
  flex: 1;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem; color: var(--text);
  outline: none; transition: var(--transition);
}
.assistant-input-area input:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
#assistantSend {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--purple); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
#assistantSend:hover { background: var(--purple-dark); transform: scale(1.05); }

/* ══════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .cadastro-wrapper { gap: 40px; }
  /* Hero: reduz gap e mockup no tablet */
  .hero-grid { gap: 40px; }
  .phone-mockup { width: 250px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  /* Logo no mobile: reduz um pouco para não quebrar o layout */
  .nav-logo-img { height: 34px; }
  .hero { padding: 100px 0 60px; }
  /* Empilha as colunas no mobile: texto primeiro, mockup abaixo */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-trust { justify-content: center; gap: 12px; }
  .phone-mockup { width: 240px; }
  .steps-grid    { grid-template-columns: 1fr; }
  .steps-quick-benefits { flex-direction: column; align-items: center; gap: 8px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .historia-inner { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .historia-icon  { width: 60px; height: 60px; font-size: 2rem; }
  .historia-credibilidade { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
  .cadastro-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .cadastro-right   { padding: 28px 24px; }
  .pricing-card { padding: 36px 24px; }
  .cta-card { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .assistant-window { width: calc(100vw - 56px); }
}

@media (max-width: 480px) {
  .container      { padding: 0 16px; }
  h1              { font-size: 2.2rem; }
  h2              { font-size: 1.7rem; }
  .btn-large      { padding: 14px 24px; font-size: .95rem; }
  .section-header { margin-bottom: 40px; }
  .hero-trust     { flex-direction: column; gap: 8px; }
  .cadastro-right { padding: 24px 16px; }
  .assistant-toggle { padding: 12px 16px; font-size: .85rem; }
}
