/* ════════════════════════════════════════
   OMNIU PARA CLÍNICAS — LANDING 2026
   Light medical theme + OmniU institutional colors
   Source: Site Institucional 2026/style.css (production source of truth)
   ════════════════════════════════════════ */

:root {
  /* ── OMNIU INSTITUTIONAL COLORS (matching live website) ── */
  --omniu-green: #b5ff00;      /* Neon lime — primary brand accent */
  --omniu-green-dark: #8bc34a; /* Darker variant for hover states */
  --omniu-cyan: #00e5ff;       /* Electric cyan — secondary accent */
  --omniu-cyan-dark: #00b8d4;  /* Darker cyan for legibility on light bg */
  --omniu-deep: #0a1929;       /* Deep navy/black — headlines, dark surfaces */
  --omniu-deep-soft: #1a2942;  /* Slightly lighter dark */
  --omniu-orange: #FF6B35;     /* From institutional — urgency only */
  --omniu-red: #FF4757;

  /* ── DERIVED LIGHT-THEME ACCENTS ── */
  --green-text: #5a8a00;       /* Neon green is unreadable on white — use darker for text */
  --green-text-dark: #4a7300;
  --green-light-bg: #f4ffd6;   /* Soft neon-green tint for backgrounds/badges */
  --green-mid-bg: #e8ff9e;     /* Mid neon-green tint */
  --cyan-text: #0091a8;        /* Darker cyan for text legibility */
  --cyan-text-dark: #006d80;
  --cyan-light-bg: #e0fbff;    /* Soft cyan tint for backgrounds */
  --orange-light: #fff0e6;

  /* ── NEUTRAL PALETTE (light theme) ── */
  --bg: #fafbfc;
  --bg-alt: #f3f6fa;
  --white: #ffffff;
  --text: #425466;
  --text-dim: #6b7c93;
  --text-soft: #8898aa;
  --border: #e6ebf1;
  --border-soft: #f0f3f7;

  /* ── BRAND ALIASES ── */
  --brand-blue: var(--omniu-deep);      /* Headlines use deep navy (institutional dark) */
  --brand-blue-dark: #050b15;
  --brand-blue-light: #eef2f7;
  --brand-green: var(--green-text);     /* Body usage of green = darker readable variant */
  --brand-green-dark: var(--green-text-dark);
  --brand-green-light: var(--green-light-bg);
  --brand-cyan: var(--cyan-text);
  --brand-cyan-light: var(--cyan-light-bg);
  --brand-orange: var(--omniu-orange);
  --brand-orange-light: var(--orange-light);

  /* ── PURE NEON (only for buttons/glows where it shines on dark bgs) ── */
  --neon-green: var(--omniu-green);
  --neon-cyan: var(--omniu-cyan);

  /* ── LEGACY MAPPING ── */
  --navy: var(--brand-blue);
  --navy-light: var(--omniu-deep-soft);
  --mint: var(--brand-green);
  --mint-dark: var(--brand-green-dark);
  --mint-light: var(--brand-green-light);
  --blue: var(--brand-blue);
  --blue-light: var(--brand-blue-light);
  --coral: var(--brand-orange);
  --coral-light: var(--brand-orange-light);
  --yellow: #FFC857;

  /* ── SHADOWS / RADIUS ── */
  --shadow-sm: 0 1px 3px rgba(10,25,41,0.04), 0 1px 2px rgba(10,25,41,0.06);
  --shadow: 0 4px 12px rgba(10,25,41,0.06), 0 2px 4px rgba(10,25,41,0.04);
  --shadow-lg: 0 20px 48px rgba(10,25,41,0.1), 0 8px 16px rgba(10,25,41,0.06);
  --shadow-xl: 0 30px 80px rgba(10,25,41,0.14);
  --shadow-neon: 0 8px 32px rgba(181,255,0,0.35), 0 4px 16px rgba(0,229,255,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

/* ═══════ TYPOGRAPHY ═══════ */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(10,25,41,0.06);
}
.section-label-green {
  color: var(--green-text-dark);
  background: var(--brand-green-light);
  border-color: rgba(139,195,74,0.25);
}
.section-label-cyan {
  color: var(--cyan-text-dark);
  background: var(--brand-cyan-light);
  border-color: rgba(0,229,255,0.25);
}
.section-label-coral, .section-label-orange {
  color: var(--brand-orange);
  background: var(--brand-orange-light);
  border-color: rgba(255,107,53,0.25);
}
.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--brand-blue);
  margin-bottom: 20px;
}
.section-desc {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-dim);
  line-height: 1.7;
}
/* Section title accents — institutional gradient (green → cyan) */
.text-accent {
  background: linear-gradient(135deg, var(--green-text) 0%, var(--cyan-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.text-accent-green {
  background: linear-gradient(135deg, var(--green-text) 0%, var(--green-text-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.text-accent-orange { color: var(--brand-orange); }

/* ═══ INSTITUTIONAL GRADIENT TEXT (matching Site Institucional) ═══ */
.gradient-text {
  background: linear-gradient(135deg, var(--green-text) 0%, var(--cyan-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: 0.2px;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* PRIMARY — uses institutional neon gradient (green → cyan) */
.btn-primary {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
  color: var(--omniu-deep);
  font-weight: 700;
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(181,255,0,0.45), 0 8px 24px rgba(0,229,255,0.35);
  filter: brightness(1.06);
}
.btn-outline {
  background: white;
  color: var(--brand-blue);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--neon-cyan);
  color: var(--cyan-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.18);
}
.btn-pulse { animation: btnPulse 2.5s infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-neon); }
  50% {
    box-shadow: 0 12px 40px rgba(181,255,0,0.55), 0 6px 20px rgba(0,229,255,0.4),
                0 0 0 10px rgba(181,255,0,0.08);
  }
}

/* ═══════ NAVBAR ═══════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
  background: rgba(250,251,252,0.0);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 32px; width: auto; display: block; }
.logo-sub {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
  padding-left: 12px;
  border-left: 1px solid var(--border);
  line-height: 1.2;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--navy); background: var(--bg-alt); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav-text-link:hover { color: var(--navy); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfc 0%, #f6fbfd 60%, #fafbfc 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}
.shape-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(181,255,0,0.32), transparent 70%);
  top: -120px; right: -120px;
}
.shape-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,229,255,0.22), transparent 70%);
  bottom: -200px; left: -200px;
}
/* Subtle dot grid (matches institutional vibe) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10,25,41,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(10,25,41,0.06), 0 0 0 1px rgba(0,229,255,0.12);
  position: relative;
  z-index: 2;
}
.badge-pulse {
  width: 9px; height: 9px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(181,255,0,0.25), 0 0 12px rgba(181,255,0,0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,255,0,0.5), 0 0 12px rgba(181,255,0,0.6); }
  50% { box-shadow: 0 0 0 10px rgba(181,255,0,0), 0 0 18px rgba(181,255,0,0.4); }
}
.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--brand-blue);
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-subtitle strong { color: var(--navy); font-weight: 700; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hero-stat-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand-green-light) 0%, var(--brand-cyan-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-text-dark);
  flex-shrink: 0;
  border: 1px solid rgba(0,229,255,0.2);
}
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat-num {
  display: inline;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hero-stat-suffix {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-trust {
  font-size: 13px;
  color: var(--text-soft);
}

/* ═══════ PHONE MOCKUP ═══════ */
.hero-right { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,153,102,0.25), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.phone-mock {
  width: 320px;
  background: white;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  border: 8px solid #1a1d23;
}
.phone-notch {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #1a1d23;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.wa-header {
  background: #075e54;
  color: white;
  padding: 14px 14px 12px;
  border-radius: 22px 22px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009966, #00529C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.wa-name { font-size: 14px; font-weight: 600; }
.wa-status { font-size: 11px; opacity: 0.85; display: flex; align-items: center; gap: 4px; }
.wa-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.wa-icons { margin-left: auto; display: flex; gap: 14px; }
.wa-icons svg { width: 16px; height: 16px; }
.wa-chat {
  background: #e5ddd5;
  padding: 14px 12px;
  height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.wa-chat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}
.wa-msg {
  position: relative;
  max-width: 80%;
  padding: 7px 10px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #303030;
  z-index: 1;
  animation: msgIn 0.4s ease-out backwards;
}
.wa-in { background: white; align-self: flex-start; border-top-left-radius: 0; }
.wa-out { background: #dcf8c6; align-self: flex-end; border-top-right-radius: 0; }
.wa-time {
  position: absolute;
  bottom: 3px;
  right: 8px;
  font-size: 9px;
  color: #888;
}
.wa-confirm .wa-card {
  background: rgba(0,153,102,0.12);
  border-left: 3px solid var(--mint);
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}
.wa-card-title { font-weight: 700; font-size: 12px; color: var(--mint-dark); }
.wa-card-line { font-size: 11px; color: #555; margin-top: 2px; }
.wa-typing {
  align-self: flex-start;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  gap: 4px;
  z-index: 1;
}
.wa-typing span {
  width: 6px; height: 6px;
  background: #aaa;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-msg:nth-child(1) { animation-delay: 0.2s; }
.wa-msg:nth-child(2) { animation-delay: 0.6s; }
.wa-msg:nth-child(3) { animation-delay: 1s; }
.wa-msg:nth-child(4) { animation-delay: 1.4s; }
.wa-msg:nth-child(5) { animation-delay: 1.8s; }
.wa-msg:nth-child(6) { animation-delay: 2.2s; }
.wa-msg:nth-child(7) { animation-delay: 2.6s; }
.wa-msg:nth-child(8) { animation-delay: 3s; }

/* ═══════ SOCIAL PROOF ═══════ */
.social-proof {
  background: white;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-title {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
.social-proof-title strong { color: var(--brand-blue); font-weight: 800; }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.logo-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  transition: all 0.25s;
  position: relative;
}
.logo-item img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.85);
  opacity: 0.65;
  transition: all 0.25s;
}
/* For logos that are white-on-transparent (invisible on white card),
   invert them so they show up as dark gray */
.logo-item.logo-item-invert img {
  filter: grayscale(100%) contrast(0.85) invert(1) brightness(0.55);
  opacity: 0.55;
}
.logo-item:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10,25,41,0.08);
}
.logo-item:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
}
.logo-item.logo-item-invert:hover img {
  filter: grayscale(100%) contrast(0.85) invert(1) brightness(0.2);
  opacity: 1;
}
/* Special "more clinics" card */
.logo-item-more {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-cyan-light) 100%);
  border-color: rgba(0,229,255,0.2);
  flex-direction: column;
  gap: 2px;
  padding: 14px;
}
.logo-more-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-more-text {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════ GRIDS ═══════ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ═══════ PROBLEM ═══════ */
.problem-section { background: var(--bg); }
.pain-card {
  background: white;
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-light);
}
.pain-icon {
  width: 52px; height: 52px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pain-icon svg { width: 26px; height: 26px; }
.pain-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--brand-blue); margin-bottom: 10px; font-weight: 700; }
.pain-card p { font-size: 14.5px; color: var(--text-dim); }

/* ═══════ SOLUTION ═══════ */
.solution-section { background: white; }
.solution-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, white 0%, #f9fdfb 100%);
  transition: all 0.3s;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint);
}
.solution-icon {
  width: 52px; height: 52px;
  background: var(--mint);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 16px rgba(0,153,102,0.25);
}
.solution-icon svg { width: 26px; height: 26px; }
.solution-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--brand-blue); margin-bottom: 10px; font-weight: 700; }
.solution-card p { font-size: 14.5px; color: var(--text-dim); }

/* ═══════ DEMO ═══════ */
.demo-section { background: var(--bg-alt); }
.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.demo-tab {
  padding: 12px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s;
}
.demo-tab:hover { border-color: var(--mint); color: var(--mint-dark); }
.demo-tab.active {
  background: var(--mint);
  color: white;
  border-color: var(--mint);
  box-shadow: 0 8px 20px rgba(0,153,102,0.3);
}
.demo-panel {
  display: none;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.demo-panel.active { display: grid; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.demo-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; color: var(--brand-blue); margin-bottom: 14px; font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
.demo-text p { color: var(--text-dim); margin-bottom: 20px; }
.demo-bullets { list-style: none; }
.demo-bullets li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--border-soft);
}
.demo-bullets li:last-child { border-bottom: none; }
.demo-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--mint-light) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b894' stroke-width='3'><path d='M20 6L9 17l-5-5'/></svg>") center/12px no-repeat;
  border-radius: 50%;
}
.demo-chat {
  background: #e5ddd5;
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

/* ═══════ FEATURES ═══════ */
.features-section { background: white; }
.feature-card {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: all 0.3s;
}
.feature-card:hover {
  background: white;
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--mint-light);
  color: var(--mint-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; color: var(--brand-blue); margin-bottom: 8px; font-weight: 700; }
.feature-card p { font-size: 14px; color: var(--text-dim); }

/* ═══════ RESULTS ═══════ */
.results-section { background: var(--bg-alt); }
.case-card {
  background: white;
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-highlight {
  border: 2px solid var(--mint);
  background: linear-gradient(180deg, white 0%, #f9fdfb 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.case-name { font-family: 'Space Grotesk', sans-serif; font-size: 17px; color: var(--brand-blue); font-weight: 700; margin-bottom: 18px; letter-spacing: -0.3px; }
.case-metric {
  font-size: 56px;
  font-weight: 900;
  color: var(--mint-dark);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.case-metric-sign { font-size: 36px; }
.case-metric-suffix { font-size: 32px; }
.case-metric-label { font-size: 13px; color: var(--text-soft); margin-bottom: 22px; font-weight: 600; }
.case-quote {
  font-size: 14.5px;
  color: var(--text);
  font-style: italic;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 18px;
  line-height: 1.55;
}
.case-author { display: flex; align-items: center; gap: 12px; }
.case-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.case-author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.case-author-role { font-size: 12px; color: var(--text-soft); }

/* ═══════ INTEGRATIONS ═══════ */
.integrations-section { background: white; }
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.integration-item {
  padding: 22px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  text-align: center;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  transition: all 0.2s;
}
.integration-item:hover {
  background: white;
  border-color: var(--mint);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ═══════ PRICING SECTION REMOVED — strategy: agendamento de demo, sem preço público ═══════ */

/* ═══════ ROI ═══════ */
.roi-section { background: white; }
.roi-card {
  background: linear-gradient(135deg, var(--navy) 0%, #143a5e 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-xl);
  color: white;
}
.roi-input { margin-bottom: 28px; }
.roi-input label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.roi-input strong { color: var(--mint); font-size: 18px; }
.roi-input input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  -webkit-appearance: none;
  outline: none;
}
.roi-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--mint);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,153,102,0.5);
}
.roi-input input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--mint);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.roi-output {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.roi-output-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-output-row:last-of-type { border-bottom: none; margin-bottom: 18px; }
.roi-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.roi-value { font-size: 30px; font-weight: 800; letter-spacing: -1px; }
.roi-loss .roi-value { color: var(--coral); }
.roi-recover .roi-value { color: var(--mint); }
.roi-percent .roi-value { color: var(--yellow); }

/* ═══════ STAFF SAVINGS ═══════ */
.savings-section { background: var(--bg-alt); }
.savings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.savings-chart { position: relative; }
.savings-bars { display: flex; flex-direction: column; gap: 16px; }
.savings-bar-row { display: flex; align-items: center; gap: 16px; }
.savings-bar-label { width: 120px; flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--text); text-align: right; }
.savings-bar-track { flex: 1; height: 40px; background: var(--border-soft); border-radius: 8px; position: relative; overflow: hidden; }
.savings-bar-fill {
  height: 100%; border-radius: 8px; display: flex; align-items: center; justify-content: flex-end;
  padding-right: 12px; font-size: 13px; font-weight: 800; color: white; letter-spacing: -0.3px;
  width: 0; transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.savings-bar-fill.cost { background: linear-gradient(90deg, #ff6b6b, #ee5a24); }
.savings-bar-fill.save { background: linear-gradient(90deg, var(--mint), var(--omniu-cyan)); }
.savings-bars.animate .savings-bar-fill { width: var(--w); }
.savings-vs {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px;
  padding: 24px; background: white; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.savings-vs-card { text-align: center; flex: 1; }
.savings-vs-num { font-size: 2rem; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.savings-vs-num.red { color: #ee5a24; }
.savings-vs-num.green { color: var(--green-text); }
.savings-vs-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.savings-vs-divider { width: 2px; height: 50px; background: var(--border); flex-shrink: 0; }
.savings-result {
  margin-top: 32px; padding: 28px; text-align: center;
  background: linear-gradient(135deg, var(--green-light-bg), var(--cyan-light-bg));
  border: 2px solid var(--mint); border-radius: var(--radius);
}
.savings-result-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--green-text-dark);
  letter-spacing: -1px; line-height: 1;
}
.savings-result-label { font-size: 14px; color: var(--text); margin-top: 6px; }
.savings-text h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.savings-text p { color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.savings-roles { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.savings-role {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.savings-role:hover { border-color: var(--mint); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateX(4px); }
.savings-role-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.savings-role-icon.red { background: #fff0ee; }
.savings-role-icon.green { background: var(--green-light-bg); }
.savings-role-info { flex: 1; }
.savings-role-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.savings-role-detail { font-size: 12.5px; color: var(--text-dim); }
.savings-role-cost { font-weight: 800; font-size: 14px; white-space: nowrap; }
.savings-role-cost.red { color: #ee5a24; }
.savings-role-cost.green { color: var(--green-text); }

@media (max-width: 900px) {
  .savings-grid { grid-template-columns: 1fr; gap: 32px; }
  .savings-bar-label { width: 80px; font-size: 11px; }
}

/* ═══════ FAQ ═══════ */
.faq-section { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open { border-color: var(--mint); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--mint-light);
  color: var(--mint-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--mint); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 26px 22px; font-size: 15px; color: var(--text-dim); line-height: 1.7; }

/* ═══════ URGENCY ═══════ */
.urgency-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.urgency-card {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  border: 2px solid var(--coral-light);
  box-shadow: var(--shadow-lg);
  max-width: 820px;
  margin: 0 auto;
}
.urgency-card h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.2;
}
.urgency-counter {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  color: var(--coral);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 18px;
}
.urgency-card p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════ FINAL CTA ═══════ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2f4f 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,153,102,0.18), transparent 70%);
  border-radius: 50%;
  top: -200px; right: -200px;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-text .section-title { color: white; }
.cta-text .section-desc { color: rgba(255,255,255,0.7); }
.cta-text .section-label { background: rgba(0,153,102,0.15); color: var(--mint); }
.cta-bullets { list-style: none; margin-top: 24px; }
.cta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
}
.cta-bullets svg {
  width: 20px; height: 20px;
  color: var(--mint);
  flex-shrink: 0;
}
.cta-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: var(--bg);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--mint);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,153,102,0.1);
}
.form-trust {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: 10px;
  font-size: 14px;
  color: var(--mint-dark);
  text-align: center;
}
.form-success.show { display: block; }

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--brand-blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-logo {
  margin-bottom: 14px;
  display: block;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer a:hover { color: var(--mint); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.footer-social svg { width: 18px; height: 18px; color: white; }
.footer-social a:hover { background: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ═══════ MODAL ═══════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal.show { display: flex; }
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.75);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px;
  max-width: 800px;
  width: 90%;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  font-size: 24px;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.modal-video {
  background: var(--bg-alt);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-placeholder {
  text-align: center;
  color: var(--text-soft);
}
.modal-placeholder svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--mint);
}

/* ═══════ ANIMATIONS ═══════ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ RESPONSIVE ═══════ */

/* ── Global overflow protection ── */
html { overflow-x: hidden; }

/* ── Tablet ≤1024px ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-stats { max-width: 100%; }
  .hero-right { margin-top: 40px; }
  .demo-panel { grid-template-columns: 1fr; }
  .roi-card { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Mobile ≤768px ── */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  /* ── Mobile Navigation ── */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,25,41,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    animation: navSlideIn 0.35s ease forwards;
  }
  @keyframes navSlideIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .nav-links.open .nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.2s;
  }
  .nav-links.open .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--neon-green);
  }
  .nav-text-link { display: none; }
  .nav-hamburger {
    display: flex;
    position: relative;
    z-index: 101;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .nav-hamburger span {
    transition: all 0.3s;
  }
  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: white;
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: white;
  }

  /* ── Hero ── */
  .hero { padding: 100px 0 50px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat { padding: 10px 14px; }
  .hero-stat-num { font-size: 18px; }
  .hero-stat-suffix { font-size: 14px; }
  .hero-stat-icon { width: 34px; height: 34px; }
  .hero-stat-icon svg { width: 16px; height: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { text-align: center; font-size: 12px; }

  /* ── Grids ── */
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }

  /* ── Cards lighter padding ── */
  .pain-card, .solution-card { padding: 24px 20px; }
  .roi-card, .urgency-card, .cta-form, .demo-panel { padding: 24px 20px; }
  .case-highlight { transform: none; }

  /* ── Demo section ── */
  .demo-tabs { gap: 6px; }
  .demo-tab { padding: 10px 16px; font-size: 13px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 50px 0 24px; }

  /* ── Urgency ── */
  .urgency-card { padding: 40px 24px; }

  /* ── Pain CTA bar ── */
  .pain-cta-bar { flex-direction: column; text-align: center; padding: 28px 20px; }
  .pain-cta-title { font-size: 18px; }

  /* ── Comparison table scroll indicator ── */
  .comparison-wrap {
    position: relative;
  }
  .comparison-wrap::after {
    content: '→';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,82,156,0.4);
    animation: scrollHintPulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
  }
  @keyframes scrollHintPulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) translateX(0); }
    50% { opacity: 0.6; transform: translateY(-50%) translateX(4px); }
  }
  .comparison-wrap::-webkit-scrollbar { height: 6px; }
  .comparison-wrap::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
  .comparison-wrap::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 10px; }

  /* ── CTA section ── */
  .final-cta { padding: 60px 0; }
  .cta-text { text-align: center; }
  .cta-text .section-label { display: inline-block; }
}

/* ── Small phone ≤480px ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone-mock { width: 280px; }
  .hero { padding: 90px 0 40px; }
  .hero-badge { font-size: 11px; padding: 8px 14px; }
  .logo-wall { gap: 10px; }
  .logo-item { height: 68px; padding: 14px 16px; }
  .logo-more-num { font-size: 18px; }
  .urgency-card { padding: 32px 18px; }
  .roi-card { padding: 20px 16px; }
  .roi-value { font-size: 24px; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a p { padding: 0 20px 18px; font-size: 14px; }
}

/* ── Reduced motion support ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ════════════════════════════════════════
   NEW SECTIONS — IMPORTED FROM INSTITUTIONAL SITE
   Adapted to clinic context with brand colors
   ════════════════════════════════════════ */

/* ═══════ NAVBAR LOGO IMG ═══════ */
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* ═══════ CLIENT LOGO CARDS (real POC clients) ═══════ */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.client-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.client-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 4px;
  line-height: 1.3;
}
.client-card-meta {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.client-card-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ═══════ 5 PILLARS (Plataforma) ═══════ */
.pillars-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pillar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.3s;
  position: relative;
}
.pillar-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-blue-light);
  line-height: 1;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pillar-icon svg {
  width: 24px;
  height: 24px;
}
.pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.pillar-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ═══════ 11 AI FUNCTIONS GRID ═══════ */
.ai-functions-section {
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
}
.aif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.aif-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: all 0.3s;
  position: relative;
}
.aif-card:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,217,245,0.12);
}
.aif-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.aif-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, rgba(0,217,245,0.15) 100%);
  color: var(--brand-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aif-icon svg {
  width: 22px;
  height: 22px;
}
.aif-toggle {
  display: flex;
  align-items: center;
}
.aif-toggle-track {
  width: 32px;
  height: 18px;
  background: var(--brand-green);
  border-radius: 100px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 2px;
  justify-content: flex-end;
}
.aif-toggle-thumb {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.aif-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.aif-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ═══════ FOLLOW-UP SECTION ═══════ */
.followup-section {
  background: white;
}
.followup-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.followup-text .section-label { margin-bottom: 18px; }
.followup-text .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.followup-text .section-desc {
  text-align: left;
  margin-bottom: 28px;
}
.feature-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.feature-checks li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--brand-green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009966' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.followup-mockup, .organizer-mockup {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.followup-mock-header, .organizer-mock-header {
  background: var(--bg-alt);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.followup-mock-dots {
  display: flex;
  gap: 6px;
}
.followup-mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.followup-mock-body, .organizer-mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.followup-campaign {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}
.followup-campaign.active-camp {
  background: var(--brand-green-light);
  border-color: rgba(0,153,102,0.2);
}
.camp-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.camp-status-dot.green { background: var(--brand-green); box-shadow: 0 0 0 4px rgba(0,153,102,0.15); }
.camp-status-dot.yellow { background: #facc15; }
.camp-status-dot.gray { background: var(--text-soft); }
.camp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.camp-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
}
.camp-meta {
  font-size: 12px;
  color: var(--text-soft);
}
.camp-toggle {
  width: 36px;
  height: 20px;
  border-radius: 100px;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}
.camp-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.camp-toggle.on {
  background: var(--brand-green);
}
.camp-toggle.on::after {
  left: calc(100% - 18px);
}
.followup-queue-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}
.queue-progress {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.queue-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan));
  border-radius: 100px;
}

/* ═══════ LEAD ORGANIZER ═══════ */
.organizer-section {
  background: var(--bg-alt);
}
.organizer-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.organizer-text .section-label { margin-bottom: 18px; }
.organizer-text .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.organizer-text .section-desc {
  text-align: left;
  margin-bottom: 28px;
}
.org-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}
.org-rule-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.org-rule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.org-rule-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
}
.org-rule-meta {
  font-size: 11px;
  color: var(--text-soft);
}
.org-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
}
.org-status.processing {
  color: #d97706;
  background: #fef3c7;
}
.org-status.completed {
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
}

/* ═══════ SMART CALENDAR ═══════ */
.calendar-section {
  background: white;
}
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.calendar-text .section-label { margin-bottom: 18px; }
.calendar-text .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.calendar-text .section-desc {
  text-align: left;
  margin-bottom: 28px;
}
.cal-mockup {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cal-mock-header {
  background: var(--brand-blue);
  color: white;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
}
.cal-nav-arrows {
  display: flex;
  gap: 6px;
}
.cal-nav-btn {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.18);
  border-radius: 6px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.3); }
.cal-grid-mock {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.cal-day-header {
  background: var(--bg-alt);
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cal-day {
  background: white;
  padding: 14px 10px;
  min-height: 70px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  position: relative;
}
.cal-day.dim { color: var(--text-soft); background: var(--bg); }
.cal-day.today {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}
.cal-event {
  display: block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-event.green { background: var(--brand-green); }
.cal-event.blue { background: var(--brand-blue); }
.cal-event.purple { background: #8b5cf6; }
.cal-event.orange { background: var(--brand-orange); }

/* ═══════ PIPELINE PACIENTES ═══════ */
.pipeline-section {
  background: var(--bg);
}
.pipeline-mockup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.pipe-column {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  min-height: 280px;
}
.pipe-column.won {
  background: var(--brand-green-light);
}
.pipe-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
}
.pipe-count {
  background: white;
  color: var(--brand-blue);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.pipe-card-mock {
  background: white;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.pipe-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 4px;
}
.pipe-card-value {
  font-size: 13px;
  color: var(--brand-green-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.pipe-card-temp {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 100px;
}
.pipe-card-temp.hot { background: #fee2e2; color: #dc2626; }
.pipe-card-temp.warm { background: #fef3c7; color: #d97706; }
.pipe-card-temp.won-tag { background: var(--brand-green); color: white; }

/* ═══════ 6 NUMBERS / METRICS ═══════ */
.numbers-section {
  background: linear-gradient(180deg, white 0%, var(--brand-blue-light) 100%);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.number-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s;
}
.number-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}
.nc-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}
.nc-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -2px;
}
.nc-suffix {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-green);
}
.nc-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
}
.nc-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ═══════ HOW IT WORKS — 3 STEPS ═══════ */
.how-section {
  background: white;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: white;
  background: var(--brand-blue);
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--brand-blue);
  font-size: 24px;
}
.step-connector::after {
  content: '→';
  font-weight: 700;
  color: var(--brand-blue);
}

/* ═══════ RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS ═══════ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .aif-grid { grid-template-columns: repeat(2, 1fr); }
  .followup-layout, .organizer-layout, .calendar-layout { grid-template-columns: 1fr; gap: 40px; }
  .pipeline-mockup { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { transform: rotate(90deg); padding: 0; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pillars-grid, .aif-grid { grid-template-columns: 1fr; }
  .pipeline-mockup { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .nc-value { font-size: 44px; }
  .nc-suffix { font-size: 22px; }
  .followup-text .section-title,
  .organizer-text .section-title,
  .calendar-text .section-title,
  .followup-text .section-desc,
  .organizer-text .section-desc,
  .calendar-text .section-desc { text-align: center; }
}

/* ════════════════════════════════════════
   ADDITIONAL SECTIONS — verticals, comparison, security, pain-cta
   Adapted from Landing Clinicas 2026 reference
   ════════════════════════════════════════ */

/* ═══════ PAIN CTA BAR ═══════ */
.pain-cta-bar {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 48px rgba(0,82,156,0.25);
}
.pain-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 6px;
}
.pain-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.pain-cta-bar .btn-primary {
  background: white;
  color: var(--brand-blue);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.pain-cta-bar .btn-primary:hover {
  background: var(--brand-green-light);
  color: var(--brand-blue-dark);
}

/* ═══════ VERTICALS SECTION ═══════ */
.verticals-section {
  background: white;
}
.vertical-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
.vertical-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s;
}
.vertical-tab:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-2px);
}
.vertical-tab.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
  box-shadow: 0 8px 24px rgba(0,82,156,0.25);
}
.vt-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}
.vt-icon svg { width: 20px; height: 20px; }
.vertical-panel {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.vertical-panel.active {
  display: grid;
  animation: vpFadeIn 0.5s ease;
}
@keyframes vpFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.vp-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.vp-badge-estetica { background: #fce7f3; color: #be185d; }
.vp-badge-ortodontia { background: var(--brand-blue-light); color: var(--brand-blue); }
.vp-badge-medica { background: #ccfbf1; color: #0f766e; }
.vp-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.2;
  margin-bottom: 14px;
}
.vp-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 26px;
}
.vp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}
.vp-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all 0.2s;
}
.vp-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.vp-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 2px;
}
.vp-feature span {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}
.vp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.vp-dot-estetica { background: #ec4899; box-shadow: 0 0 0 4px #fce7f3; }
.vp-dot-ortodontia { background: var(--brand-blue); box-shadow: 0 0 0 4px var(--brand-blue-light); }
.vp-dot-medica { background: #14b8a6; box-shadow: 0 0 0 4px #ccfbf1; }
.vp-quote {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.vp-quote-estetica {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border-color: #fbcfe8;
}
.vp-quote-ortodontia {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, #dbeafe 100%);
  border-color: #bfdbfe;
}
.vp-quote-medica {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-color: #99f6e4;
}
.vp-quote p {
  font-size: 14.5px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}
.vp-quote-author {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
}
.vp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-card-stat {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
  width: 100%;
  max-width: 320px;
}
.vp-card-stat::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, transparent 50%, currentColor 100%);
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}
.vp-card-estetica { color: #ec4899; }
.vp-card-ortodontia { color: var(--brand-blue); }
.vp-card-medica { color: #14b8a6; }
.vp-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: currentColor;
  position: relative;
}
.vp-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.vp-card-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: currentColor;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.vp-card-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 4px;
}
.vp-card-foot {
  font-size: 12px;
  color: var(--text-soft);
}

/* ═══════ COMPARISON TABLE ═══════ */
.comparison-section {
  background: var(--bg-alt);
}
.comparison-wrap {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table thead th {
  padding: 18px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th.comp-feature {
  text-align: left;
  width: 32%;
  background: var(--bg-alt);
}
.comparison-table thead th.comp-omniu {
  background: var(--brand-blue);
  color: white;
  font-size: 15px;
  position: relative;
}
.comp-th-name {
  display: block;
  font-weight: 800;
}
.comp-th-badge {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.22);
  border-radius: 100px;
  font-weight: 600;
}
.comparison-table tbody td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.comparison-table tbody td.comp-feature {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}
.comparison-table tbody tr:hover {
  background: rgba(0,82,156,0.02);
}
.comparison-table tbody td.comp-omniu {
  background: var(--brand-blue-light);
  font-weight: 600;
}
.comp-yes {
  color: var(--brand-green);
  font-size: 18px;
  font-weight: 700;
}
.comp-yes-strong {
  color: var(--brand-green-dark);
  font-size: 13px;
  font-weight: 800;
  background: white;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--brand-green);
  display: inline-block;
}
.comp-no {
  color: #cbd5e1;
  font-size: 18px;
}
.comp-meh {
  color: var(--text-soft);
  font-size: 12px;
  font-style: italic;
}
.comparison-foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 16px;
}

/* ═══════ SECURITY SECTION ═══════ */
.security-section {
  background: white;
}
.security-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.security-text .section-label { margin-bottom: 18px; }
.security-text .section-title { text-align: left; margin-bottom: 18px; }
.security-text .section-desc { text-align: left; margin-bottom: 30px; }
.security-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}
.security-item:hover {
  border-color: var(--brand-green);
  background: var(--brand-green-light);
  transform: translateX(4px);
}
.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security-icon svg { width: 22px; height: 22px; }
.security-icon-green { background: var(--brand-green-light); color: var(--brand-green-dark); }
.security-icon-blue { background: var(--brand-blue-light); color: var(--brand-blue); }
.security-icon-cyan { background: #ccfbf1; color: #0f766e; }
.security-icon-purple { background: #ede9fe; color: #7c3aed; }
.security-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 4px;
}
.security-item span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sec-badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.3s;
}
.sec-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sec-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  font-weight: 800;
  color: white;
}
.sec-badge-icon svg { width: 22px; height: 22px; }
.sec-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 4px;
}
.sec-badge span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.5;
}
.sec-badge-lgpd { border-color: rgba(0,153,102,0.2); }
.sec-badge-lgpd .sec-badge-icon { background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%); }
.sec-badge-aes { border-color: rgba(0,82,156,0.2); }
.sec-badge-aes .sec-badge-icon { background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%); }
.sec-badge-cfm { border-color: rgba(124,58,237,0.2); }
.sec-badge-cfm .sec-badge-icon { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.sec-badge-uptime { border-color: rgba(0,217,245,0.25); }
.sec-badge-uptime .sec-badge-icon { background: linear-gradient(135deg, var(--brand-cyan) 0%, #0891b2 100%); }
.sec-badge-iso {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-color: var(--brand-blue-dark);
}
.sec-badge-iso .sec-badge-icon { background: rgba(255,255,255,0.18); }
.sec-badge-iso strong { color: white; }
.sec-badge-iso span { color: rgba(255,255,255,0.8); }

/* ═══════ RESPONSIVE FOR NEW SECTIONS ═══════ */
@media (max-width: 1024px) {
  .vertical-panel { grid-template-columns: 1fr; gap: 40px; }
  .vp-features { grid-template-columns: 1fr; }
  .security-layout { grid-template-columns: 1fr; gap: 50px; }
  .pain-cta-bar { flex-direction: column; text-align: center; padding: 32px 24px; }
}
@media (max-width: 768px) {
  .vertical-tabs { flex-direction: column; }
  .vertical-tab { width: 100%; justify-content: center; }
  .pain-cta-title { font-size: 19px; }
  .vp-card-num { font-size: 48px; }
  .security-badges { grid-template-columns: 1fr; }
  .sec-badge-iso { grid-column: span 1; }
  .comparison-table { font-size: 12px; }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 8px; }
}

/* ════════════════════════════════════════
   DASHBOARD SHOWCASE — Real product mockup
   Inspired by reference HTML
   ════════════════════════════════════════ */

.dashboard-showcase {
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.dashboard-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181,255,0,0.08), transparent 65%);
  pointer-events: none;
}
.dashboard-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.08), transparent 65%);
  pointer-events: none;
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dashboard-text .section-title { text-align: left; }
.dashboard-text .section-desc { margin-bottom: 30px; }
.dashboard-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.dashboard-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.db-bullet-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
  color: var(--omniu-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(181,255,0,0.3);
}
.db-bullet-icon svg { width: 14px; height: 14px; }
.dashboard-bullets li strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.dashboard-bullets li span {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Dashboard visual container ── */
.dashboard-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(181,255,0,0.18) 0%, rgba(0,229,255,0.18) 100%);
  border-radius: 32px;
  filter: blur(48px);
  transform: scale(0.95);
  pointer-events: none;
}

/* ── Browser window / dashboard card ── */
.dashboard-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: white;
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(10,25,41,0.18),
    0 12px 32px rgba(10,25,41,0.08),
    0 0 0 1px rgba(10,25,41,0.04);
  overflow: hidden;
  z-index: 1;
}

/* Top bar (browser chrome) */
.db-topbar {
  background: var(--omniu-deep);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.db-dots {
  display: flex;
  gap: 6px;
}
.db-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.db-dot-red { background: #ff5f57; }
.db-dot-yellow { background: #febc2e; }
.db-dot-green { background: #28c840; }
.db-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-family: 'Inter', monospace;
  letter-spacing: -0.2px;
}
.db-url svg { width: 12px; height: 12px; color: var(--neon-green); }

/* Body */
.db-body {
  background: var(--bg);
  padding: 18px;
}

/* Stats row */
.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.db-stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  box-shadow: 0 1px 3px rgba(10,25,41,0.04);
}
.db-stat-card.db-stat-highlight {
  background: linear-gradient(135deg, white 0%, var(--brand-green-light) 100%);
  border-color: rgba(139,195,74,0.35);
}
.db-stat-label {
  font-size: 10px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
  font-weight: 600;
}
.db-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.db-stat-value-green { color: var(--green-text-dark); }
.db-stat-trend {
  font-size: 10px;
  font-weight: 700;
}
.db-stat-trend.up { color: var(--green-text-dark); }
.db-stat-trend.down { color: var(--green-text-dark); }

/* Agenda card */
.db-agenda {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.db-agenda-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
}
.db-agenda-date {
  color: var(--cyan-text-dark);
  font-weight: 600;
}
.db-agenda-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.db-appt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.db-appt-time {
  color: var(--text-soft);
  width: 38px;
  flex-shrink: 0;
  font-weight: 600;
}
.db-appt-info {
  flex: 1;
  padding: 5px 10px;
  border-radius: 7px;
  border: 1px solid;
}
.db-appt-info strong {
  font-weight: 700;
}
.db-appt-info span {
  margin-left: 4px;
}
.db-appt-info-green {
  background: var(--brand-green-light);
  border-color: rgba(139,195,74,0.3);
}
.db-appt-info-green strong, .db-appt-info-green span {
  color: var(--green-text-dark);
}
.db-appt-info-blue {
  background: var(--brand-blue-light);
  border-color: rgba(0,82,156,0.18);
}
.db-appt-info-blue strong, .db-appt-info-blue span {
  color: var(--brand-blue);
}
.db-appt-info-cyan {
  background: var(--brand-cyan-light);
  border-color: rgba(0,229,255,0.3);
}
.db-appt-info-cyan strong, .db-appt-info-cyan span {
  color: var(--cyan-text-dark);
}
.db-appt-status {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  flex-shrink: 0;
}
.db-appt-status-confirmed {
  background: var(--brand-green-light);
  color: var(--green-text-dark);
}
.db-appt-status-pending {
  background: #fef3c7;
  color: #b45309;
}

/* WhatsApp notification */
.db-notif {
  background: linear-gradient(135deg, #f0fdf4 0%, var(--brand-green-light) 100%);
  border: 1px solid rgba(139,195,74,0.35);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.db-notif-icon {
  width: 28px;
  height: 28px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}
.db-notif-icon svg {
  width: 15px;
  height: 15px;
  color: white;
}
.db-notif-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-text-dark);
  margin-bottom: 3px;
}
.db-notif-text {
  font-size: 11px;
  color: #4d6051;
  line-height: 1.4;
}

/* ── Floating badges ── */
.db-floating {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 16px 40px rgba(10,25,41,0.18),
    0 4px 12px rgba(10,25,41,0.08),
    0 0 0 1px rgba(10,25,41,0.04);
  z-index: 2;
}
.db-floating strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.2px;
}
.db-floating span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
}
.db-floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.db-floating-icon svg {
  width: 18px;
  height: 18px;
}
.db-floating-icon-green {
  background: linear-gradient(135deg, var(--neon-green) 0%, #cef33d 100%);
  color: var(--omniu-deep);
  box-shadow: 0 6px 16px rgba(181,255,0,0.4);
}
.db-floating-icon-cyan {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #50e7ff 100%);
  color: var(--omniu-deep);
  box-shadow: 0 6px 16px rgba(0,229,255,0.4);
}
.db-floating-tr {
  top: -20px;
  right: -16px;
  animation: floatUpDown 4s ease-in-out infinite;
}
.db-floating-bl {
  bottom: -20px;
  left: -16px;
  animation: floatUpDown 4s ease-in-out infinite 2s;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .dashboard-layout { grid-template-columns: 1fr; gap: 60px; }
  .dashboard-text .section-title { text-align: center; }
  .dashboard-text .section-desc { text-align: center; }
  .dashboard-text .btn-primary { display: flex; margin: 0 auto; }
  .dashboard-bullets { max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .db-floating { padding: 10px 14px; }
  .db-floating-tr { top: -16px; right: -8px; }
  .db-floating-bl { bottom: -16px; left: -8px; }
  .db-stats { gap: 6px; }
  .db-stat-card { padding: 10px 8px; }
  .db-stat-value { font-size: 18px; }
}
@media (max-width: 480px) {
  .db-floating-tr, .db-floating-bl { display: none; }
}
