/* Brava CRM — LP styles */
:root {
  --brava-purple: #7B3FE4;
  --brava-blue: #1E90FF;
  --brava-gradient: linear-gradient(90deg, #7B3FE4 0%, #1E90FF 100%);
  --brava-gradient-soft: linear-gradient(135deg, rgba(123,63,228,0.18) 0%, rgba(30,144,255,0.18) 100%);

  --bg-deep: #000000;
  --bg-elevated: #0E0E14;
  --bg-card: #15151E;
  --bg-card-2: #1A1A24;
  --border-dark: #2A2A3A;
  --border-dark-soft: rgba(255,255,255,0.06);

  --text-primary: #F5F5F7;
  --text-secondary: #A0A0AA;
  --text-tertiary: #6E6E78;

  --bg-light: #F0F0F0;
  --bg-light-card: #FFFFFF;
  --border-light: #D8D8D8;
  --text-on-light-primary: #0A0A0F;
  --text-on-light-secondary: #4A4A52;
  --text-on-light-tertiary: #8E8E94;

  --max: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; line-height: 1.05; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.section.dark { background: var(--bg-deep); color: var(--text-primary); }
.section.light { background: var(--bg-light); color: var(--text-on-light-primary); }
.section.elevated { background: var(--bg-elevated); color: var(--text-primary); }

body.force-dark .section.light { background: var(--bg-deep); color: var(--text-primary); }
body.force-dark .section.light .lead,
body.force-dark .section.light p,
body.force-dark .section.light .h2,
body.force-dark .section.light .h3 { color: var(--text-primary); }
body.force-dark .section.light [style*="var(--bg-light-card)"] { background: var(--bg-card) !important; border-color: var(--border-dark) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 12px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.section.light .eyebrow {
  color: var(--text-on-light-secondary);
  border-color: var(--border-light);
  background: rgba(0,0,0,0.02);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brava-gradient);
}

.h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 1.7vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}
.section.light .lead { color: var(--text-on-light-secondary); }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease;
}
.btn-primary {
  background: #ffffff;
  color: #0A0A0F;
  border: 1px solid rgba(10,10,15,0.12);
  box-shadow: 0 12px 32px -14px rgba(0,0,0,0.35), 0 4px 12px -6px rgba(30,144,255,0.18);
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .25s ease;
}
.btn-primary svg { color: #1E90FF; transition: none; }
.btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 22px 60px -16px rgba(0,0,0,0.6), 0 10px 28px -10px rgba(30,144,255,0.35);
}
.btn-primary:hover svg { color: #1E90FF; }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.section.light .btn-ghost {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-on-light-primary);
}
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }

/* Decorative gradient accents */
@keyframes drift-purple {
  0%   { transform: translate(0px,    0px)   scale(1); }
  25%  { transform: translate(70px,  -50px)  scale(1.15); }
  50%  { transform: translate(30px,   80px)  scale(0.9); }
  75%  { transform: translate(-60px,  30px)  scale(1.1); }
  100% { transform: translate(0px,    0px)   scale(1); }
}
@keyframes drift-blue {
  0%   { transform: translate(0px,    0px)   scale(1); }
  25%  { transform: translate(-60px,  40px)  scale(1.12); }
  50%  { transform: translate(25px,  -65px)  scale(0.92); }
  75%  { transform: translate(55px,   25px)  scale(1.08); }
  100% { transform: translate(0px,    0px)   scale(1); }
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.glow-blob.purple {
  background: #7B3FE4;
  opacity: 0.65 !important;
  animation: drift-purple 5s ease-in-out infinite;
}
.glow-blob.blue {
  background: #1E90FF;
  opacity: 0.6 !important;
  animation: drift-blue 6s ease-in-out infinite;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, #000 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, #000 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.section.light .grid-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}

.section .container { position: relative; z-index: 1; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.55);
  border-bottom: 1px solid var(--border-dark-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo .mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--brava-gradient);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 18px -6px rgba(123,63,228,0.6);
}
.nav-links { display: flex; gap: 28px; align-items: center; color: var(--text-secondary); font-size: 14px; }
.nav-links a:hover { color: var(--text-primary); }

.btn-whatsapp {
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.btn-whatsapp:hover {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
  box-shadow: 0 6px 20px rgba(37,211,102,.35) !important;
  transform: translateY(-2px);
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  text-align: center;
}
.hero-grid > div:first-child {
  max-width: 860px;
  width: 100%;
}
.hero-cta {
  justify-content: center;
}
.hero-sub {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .highlight { display: inline; }
.hero .h1 {
  font-size: clamp(40px, 5.4vw, 72px);
}
.hero-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(15px, 1.2vw, 18px);
  white-space: pre-line;
  line-height: 1.7;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 20px;
  display: flex; gap: 20px; flex-wrap: wrap;
  color: var(--text-tertiary);
  font-size: 13px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .check { color: #4ade80; }

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  max-width: 560px;
}
.hero-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--brava-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat .label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

/* CRM mockup */
.mockup-wrap {
  position: relative;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}
.mockup-frame {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, #15151E 0%, #0E0E14 100%);
  border: 1px solid var(--border-dark);
  box-shadow:
    0 40px 100px -30px rgba(123,63,228,0.45),
    0 20px 50px -20px rgba(30,144,255,0.35),
    0 1px 0 rgba(255,255,255,0.04) inset;
  overflow: hidden;
}
.mockup-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(0,0,0,0.4);
}
.mockup-tab .dots { display: flex; gap: 6px; }
.mockup-tab .dots span {
  width: 10px; height: 10px; border-radius: 999px;
  background: #2A2A3A;
}
.mockup-tab .url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-left: 12px;
}

.crm-app {
  display: grid;
  grid-template-columns: 88px 200px 1fr;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}
.crm-rail {
  background: rgba(0,0,0,0.5);
  border-right: 1px solid var(--border-dark);
  display: flex; flex-direction: column;
  align-items: center; padding: 14px 6px; gap: 4px;
}
.crm-rail .logo-dot {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--brava-gradient);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
}
.crm-rail .ic {
  width: 76px;
  padding: 7px 6px;
  border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ic-label {
  font-size: 9.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}
.crm-rail .ic.active {
  background: rgba(123,63,228,0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(123,63,228,0.4);
}
.crm-rail .ic:hover:not(.active) {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
}
.crm-list {
  background: rgba(0,0,0,0.25);
  border-right: 1px solid var(--border-dark);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.crm-list-head {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.crm-list-head h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.crm-list-head .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(123,63,228,0.2);
  color: #c9b6ff;
  letter-spacing: 0.05em;
}
.crm-search {
  margin: 10px 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex; align-items: center; gap: 8px;
}
.crm-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-dark-soft);
  cursor: default;
}
.crm-row.active { background: rgba(123,63,228,0.12); border-left: 2px solid; border-image: var(--brava-gradient) 1; }
.crm-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A2A3A, #15151E);
  display: grid; place-items: center;
  color: #fff;
  font-size: 11px; font-weight: 600;
  flex: 0 0 32px;
  position: relative;
}
.crm-avatar.ai {
  background: var(--brava-gradient);
}
.crm-avatar .badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brava-gradient);
  border: 2px solid #15151E;
  display: grid; place-items: center;
  font-size: 7px; color: #fff;
  font-family: 'JetBrains Mono', monospace;
}
.crm-row .meta { flex: 1; min-width: 0; }
.crm-row .top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.crm-row .name { font-size: 12.5px; font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm-row .time { font-size: 10px; color: var(--text-tertiary); font-family: 'JetBrains Mono', monospace; }
.crm-row .preview { font-size: 11.5px; color: var(--text-secondary); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm-row .tags { display: flex; gap: 4px; margin-top: 5px; }
.crm-row .tag {
  font-size: 9.5px;
  font-family: 'JetBrains Mono', monospace;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.crm-row .tag.hot { background: rgba(255, 99, 71, 0.18); color: #ffb0a3; }
.crm-row .tag.ai { background: rgba(123,63,228,0.2); color: #c9b6ff; }
.crm-row .unread {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brava-gradient);
  color: #fff;
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
}

.crm-conv {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(123,63,228,0.04) 0%, transparent 30%);
}
.crm-conv-head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-dark);
}
.crm-conv-head .who { flex: 1; }
.crm-conv-head .who .n { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; }
.crm-conv-head .who .s { font-size: 11px; color: var(--text-tertiary); margin-top: 1px; display: flex; align-items: center; gap: 6px; }
.crm-conv-head .who .s::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.crm-conv-head .actions { display: flex; gap: 6px; }
.crm-conv-head .actions .pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(123,63,228,0.18);
  border: 1px solid rgba(123,63,228,0.3);
  color: #c9b6ff;
  display: flex; align-items: center; gap: 5px;
  letter-spacing: 0.04em;
}
.crm-conv-head .actions .pill .live {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brava-gradient);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.crm-thread {
  flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}
.msg {
  max-width: 78%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.45;
}
.msg.in {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark-soft);
  border-bottom-left-radius: 4px;
}
.msg.out {
  align-self: flex-end;
  background: var(--brava-gradient);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 18px -8px rgba(123,63,228,0.5);
}
.msg .stamp { font-size: 9.5px; opacity: 0.7; margin-top: 4px; font-family: 'JetBrains Mono', monospace; display: flex; align-items: center; gap: 5px; }
.msg .stamp .ai-tag { background: rgba(255,255,255,0.18); padding: 1px 6px; border-radius: 999px; }

.crm-typing {
  align-self: flex-start;
  display: inline-flex; gap: 4px; padding: 10px 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark-soft);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
}
.crm-typing span {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--text-secondary);
  animation: bounce 1.2s infinite;
}
.crm-typing span:nth-child(2) { animation-delay: 0.15s; }
.crm-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.crm-compose {
  margin: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.crm-compose .ai-toggle {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brava-gradient);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* Floating mockup elements */
.floater {
  position: absolute;
  background: #ffffff;
  backdrop-filter: blur(8px);
  border: 1px solid #E6E6E6;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
}
.floater .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #8E8E94;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.floater .val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 4px;
  background: var(--brava-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Mockup modo claro ── */
.mockup-frame {
  background: #ffffff;
  border: 1px solid #E6E6E6;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
}
.mockup-tab {
  background: #F5F5F5;
  border-bottom: 1px solid #E6E6E6;
}
.mockup-tab .dots span { background: #D8D8D8; }
.mockup-tab .url { color: #8E8E94; }

.crm-rail {
  background: #F5F5F5;
  border-right: 1px solid #E6E6E6;
}
.crm-rail .ic { color: #8E8E94; }
.crm-rail .ic:hover:not(.active) { background: #EBEBEB; color: #4A4A52; }
.crm-rail .ic.active {
  background: rgba(123,63,228,0.1);
  color: #7B3FE4;
  box-shadow: inset 0 0 0 1px rgba(123,63,228,0.25);
}

.crm-list {
  background: #FAFAFA;
  border-right: 1px solid #E6E6E6;
}
.crm-list-head { border-bottom: 1px solid #E6E6E6; }
.crm-list-head h4 { color: #0A0A0F; }
.crm-list-head .badge { background: rgba(123,63,228,0.1); color: #7B3FE4; }

.crm-search {
  background: #F0F0F0;
  border: 1px solid #E6E6E6;
  color: #8E8E94;
}
.crm-row { border-bottom: 1px solid #F0F0F0; }
.crm-row .name { color: #0A0A0F; }
.crm-row .time { color: #8E8E94; }
.crm-row .preview { color: #4A4A52; }
.crm-row .tag { background: #F0F0F0; color: #4A4A52; }
.crm-row .tag.hot { background: rgba(255,99,71,0.1); color: #c0392b; }
.crm-row .tag.ai  { background: rgba(123,63,228,0.1); color: #7B3FE4; }
.crm-avatar { background: linear-gradient(135deg, #E6E6E6, #D8D8D8); color: #4A4A52; }
.crm-avatar.ai { background: var(--brava-gradient); color: #fff; }
.crm-avatar .badge { border-color: #fff; }

.crm-conv { background: #ffffff; }
.crm-conv-head { border-bottom: 1px solid #E6E6E6; }
.crm-conv-head .who .n { color: #0A0A0F; }
.crm-conv-head .who .s { color: #8E8E94; }

.msg.in {
  background: #F5F5F5;
  border: 1px solid #E6E6E6;
  color: #0A0A0F;
}
.crm-typing {
  background: #F5F5F5;
  border: 1px solid #E6E6E6;
}
.crm-typing span { background: #8E8E94; }

.crm-compose {
  background: #F5F5F5;
  border: 1px solid #E6E6E6;
  color: #8E8E94;
}

.float-tl { top: -22px; left: -28px; }
.float-br { bottom: -24px; right: -22px; }

/* ═══════════════════════════════════════════
   MICRO-ANIMAÇÕES
═══════════════════════════════════════════ */

/* Entrada hero */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floater-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero .h1          { animation: fade-up .7s cubic-bezier(.22,1,.36,1) both; }
.hero .hero-sub    { animation: fade-up .7s .15s cubic-bezier(.22,1,.36,1) both; }
.hero .hero-cta    { animation: fade-up .7s .28s cubic-bezier(.22,1,.36,1) both; }
.mockup-wrap       { animation: fade-up .9s .1s cubic-bezier(.22,1,.36,1) both; }

/* Floaters flutuando */
.float-tl { animation: floater-float 4s ease-in-out infinite; }
.float-br { animation: floater-float 5s 1s ease-in-out infinite; }

/* Scroll reveal — elementos com .reveal ficam invisíveis até JS adicionar .visible */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Nav links */
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--brava-gradient);
  transition: width .25s cubic-bezier(.22,1,.36,1);
  border-radius: 999px;
}
.nav-links a:hover::after { width: 100%; }

/* Botões */
.btn {
  transition: transform .15s cubic-bezier(.22,1,.36,1),
              box-shadow .15s ease,
              background .2s ease,
              opacity .15s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(123,63,228,.45);
}

/* Cards hover lift */
.card, .plan-card, [class*="bv-card"], .feature-card, .objection-card {
  transition: transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease, border-color .2s;
}
.card:hover, .plan-card:hover, .feature-card:hover, .objection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,.35);
}

/* Mockup frame pulse sutil */
.mockup-frame {
  transition: box-shadow .3s ease;
}
.mockup-frame:hover {
  box-shadow: 0 48px 96px -20px rgba(123,63,228,.2), 0 12px 32px rgba(0,0,0,.08);
}

/* Mockup row hover */
.crm-row {
  transition: background .15s ease;
}
.crm-row:hover { background: rgba(123,63,228,.06); }

/* Badge pulse na navbar */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,63,228,.4); }
  50%       { box-shadow: 0 0 0 5px rgba(123,63,228,0); }
}
.badge { animation: badge-pulse 2.5s ease infinite; }

/* ═══════════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .crm-app { grid-template-columns: 88px 170px 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 60px 0 80px; }
  .hero .h1 { font-size: clamp(32px, 7vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .crm-app { grid-template-columns: 88px 1fr; }
  .crm-list { display: none; }
}

@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero .h1 { font-size: clamp(28px, 8vw, 40px); }
  .crm-app { grid-template-columns: 1fr; }
  .crm-rail { display: none; }
  .float-tl { top: -14px; left: -10px; padding: 8px 10px; }
  .float-br { bottom: -14px; right: -10px; padding: 8px 10px; }
  .floater .val { font-size: 16px; }
}
