
/* =========================================================
   BotConversa Design System — Colors & Type
   ---------------------------------------------------------
   Source of truth for all color & typography tokens used
   across slides, UI kits, and design artifacts.

   Tokens were lifted from the live site CSS variables
   (see _source/estilo.txt) and remapped to semantic names.
   ========================================================= */

/* ---------- Fonts -------------------------------------- */
/* The site uses a geometric sans for headlines and a slightly
   softer sans for UI/body. Closest free match: Plus Jakarta Sans
   for headlines + Inter for body/UI. Update this @import if real
   font files are provided. */
:root {
  /* ============================================
     COLOR — RAW PALETTE (from live site)
     ============================================ */

  /* Brand blues */
  --bc-blue-50:  #eaf3ff;   /* hero wash, soft fills */
  --bc-blue-100: #d6e6ff;
  --bc-blue-200: #9cc1e7;
  --bc-blue-300: #83b5ff;
  --bc-blue-400: #6ea8ff;
  --bc-blue-500: #599cff;   /* lighter primary, links */
  --bc-blue-600: #3083ff;
  --bc-blue-700: #2b76e5;   /* PRIMARY BRAND BLUE — CTAs, key accents */
  --bc-blue-800: #184280;   /* deep navy headings on light bg */
  --bc-blue-900: #0e274d;   /* darkest navy, used for hero text */
  --bc-blue-950: #0a1a33;
  --bc-blue-deep: #133466;

  /* Page / surface — light mode */
  --bc-bg-page: #f7faff;        /* default page background */
  --bc-bg-card: #ffffff;        /* card surface */
  --bc-bg-card-2: #f5f5f5;      /* subtle alt card */
  --bc-bg-card-3: #e8e8e8;      /* press / divider tone */
  --bc-overlay-light: rgba(255,255,255,0.8);

  /* Page / surface — dark sections */
  --bc-bg-dark-1: #18191c;      /* deepest, full-bleed dark sections */
  --bc-bg-dark-2: #1c1e22;
  --bc-bg-dark-3: #212327;      /* dark card */
  --bc-bg-dark-4: #26282d;
  --bc-bg-dark-5: #2a2d32;
  --bc-bg-dark-6: #2f3238;      /* dark border / chip */
  --bc-overlay-dark: rgba(54,58,91,0.18);

  /* Neutrals (grays) */
  --bc-gray-100: #fffc;         /* near-white w/ slight transparency */
  --bc-gray-200: #f5f5f5;
  --bc-gray-300: #eaeaeb;
  --bc-gray-400: #d5d6d7;
  --bc-gray-500: #c1c1c3;
  --bc-gray-600: #acadaf;
  --bc-gray-700: #97989c;
  --bc-gray-800: #6d6f74;
  --bc-gray-900: #2f3238;       /* primary body text on light bg */

  /* Semantic accents */
  --bc-green:        #28c765;   /* WhatsApp green / success */
  --bc-orange:       #f57b3b;
  --bc-yellow:       #ff9d00;
  --bc-pink:         #f65db4;
  --bc-purple:       #9c43d5;
  --bc-purple-deep:  #5547c0;
  --bc-red:          #ea3e55;   /* destructive */

  /* Tinted accent fills (used on dark cards as glow halos) */
  --bc-tint-green:  rgba(233,249,240,0.10);
  --bc-tint-orange: rgba(254,242,235,0.10);
  --bc-tint-yellow: rgba(255,245,229,0.10);
  --bc-tint-pink:   rgba(254,239,248,0.10);
  --bc-tint-purple: rgba(240,227,249,0.10);
  --bc-tint-white:  rgba(255,255,255,0.15);

  /* ============================================
     COLOR — SEMANTIC TOKENS (use these in code)
     ============================================ */

  /* Light theme — default */
  --fg-1:        var(--bc-blue-900);   /* primary text on light */
  --fg-2:        var(--bc-gray-900);   /* secondary text */
  --fg-3:        var(--bc-gray-800);   /* tertiary / captions */
  --fg-muted:    var(--bc-gray-700);
  --fg-onbrand:  #ffffff;              /* text on blue/dark surfaces */
  --fg-link:     var(--bc-blue-700);

  --bg-page:     var(--bc-bg-page);
  --bg-surface:  var(--bc-bg-card);
  --bg-elevated: #ffffff;
  --bg-subtle:   var(--bc-blue-50);

  --border-subtle: var(--bc-gray-300);
  --border-strong: var(--bc-gray-400);

  --brand:         var(--bc-blue-700);
  --brand-hover:   var(--bc-blue-800);
  --brand-press:   var(--bc-blue-900);
  --brand-soft:    var(--bc-blue-50);
  --accent-green:  var(--bc-green);
  --danger:        var(--bc-red);

  /* Dark surfaces (used in alternating sections, not page-wide) */
  --dark-bg:        var(--bc-bg-dark-1);
  --dark-surface:   var(--bc-bg-dark-3);
  --dark-elevated:  var(--bc-bg-dark-4);
  --dark-border:    var(--bc-bg-dark-6);
  --dark-fg-1:      #ffffff;
  --dark-fg-2:      var(--bc-gray-600);
  --dark-fg-3:      var(--bc-gray-700);

  /* ============================================
     TYPE — FAMILIES
     ============================================ */
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* TYPE — SCALE (fluid-friendly px values) */
  --fs-display-1: 72px;   /* hero on landing */
  --fs-display-2: 56px;
  --fs-h1:        48px;   /* section headers (light) */
  --fs-h2:        40px;
  --fs-h3:        28px;
  --fs-h4:        22px;
  --fs-lead:      20px;   /* subheadline / paragraph lead */
  --fs-body:      16px;
  --fs-small:     14px;
  --fs-caption:   12px;
  --fs-eyebrow:   13px;   /* small all-caps label */

  /* Line heights */
  --lh-tight:    1.05;
  --lh-snug:     1.2;
  --lh-normal:   1.5;
  --lh-loose:    1.7;

  /* Weights */
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   800;

  /* Letter spacing */
  --tr-tight:   -0.02em;
  --tr-normal:   0;
  --tr-wide:     0.02em;
  --tr-eyebrow:  0.08em;

  /* ============================================
     SPACING / RADII / SHADOWS / EFFECTS
     ============================================ */
  --sp-0: 0;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* Soft elevation suited to the light/airy hero feel */
  --shadow-1: 0 1px 2px rgba(14,39,77,0.05), 0 1px 1px rgba(14,39,77,0.03);
  --shadow-2: 0 4px 12px rgba(14,39,77,0.06), 0 2px 4px rgba(14,39,77,0.04);
  --shadow-3: 0 12px 32px rgba(14,39,77,0.10), 0 4px 8px rgba(14,39,77,0.05);
  --shadow-4: 0 24px 60px rgba(14,39,77,0.14), 0 8px 16px rgba(14,39,77,0.06);
  --shadow-brand: 0 12px 32px rgba(43,118,229,0.30);

  /* Used in dark-section glows (the soft blue halo above dark sections) */
  --glow-blue: radial-gradient(60% 80% at 50% 0%, rgba(89,156,255,0.55), rgba(43,118,229,0) 60%);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   140ms;
  --dur-base:   220ms;
  --dur-slow:   420ms;
}

/* =========================================================
   SEMANTIC ELEMENT STYLES
   Apply via class or unscoped — the cards/UI kits use these.
   ========================================================= */

.bc-display-1 {
  font-family: var(--font-display);
  font-size: var(--fs-display-1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--fg-1);
}
.bc-display-2 {
  font-family: var(--font-display);
  font-size: var(--fs-display-2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--fg-1);
}
.bc-h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--tr-tight);
  color: var(--fg-1);
}
.bc-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--tr-tight);
  color: var(--fg-1);
}
.bc-h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semi);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}
.bc-h4 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semi);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}
.bc-lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--fg-2);
}
.bc-p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--fg-2);
}
.bc-small {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
  color: var(--fg-3);
}
.bc-caption {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  line-height: var(--lh-normal);
  color: var(--fg-3);
}
.bc-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--fg-link);
}
.bc-mono {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--fg-2);
}

/* Brand accent used on second line of headlines */
.bc-accent { color: var(--brand); }


/* Marketing site shared styles. Builds on top of colors_and_type.css. */

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg-page);
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
}

/* container */
.bc-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* nav — floating liquid glass pill */
html { scroll-padding-top: 100px; }

.bc-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, calc(100vw - 32px));
  height: 64px;
  padding: 0 8px 0 26px;
  border-radius: 999px;
  background: linear-gradient(180deg,
    color-mix(in oklab, white 55%, transparent) 0%,
    color-mix(in oklab, white 30%, transparent) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid color-mix(in oklab, white 55%, transparent);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 -1px 0 rgba(255,255,255,0.25) inset,
    0 0 0 1px rgba(15,23,30,0.04),
    0 18px 40px -16px rgba(15,23,30,0.18),
    0 6px 18px -8px rgba(15,23,30,0.10);
  transition: top .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
@supports not (background: color-mix(in oklab, white 55%, transparent)) {
  .bc-nav {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.30) 100%);
    border: 1px solid rgba(255,255,255,0.55);
  }
}
.bc-nav-logo { display: flex; align-items: center; }
.bc-nav-logo img { height: 26px; }
.bc-nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.bc-nav-links a {
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-standard);
}
.bc-nav-links a:hover { color: var(--brand); }
.bc-nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bc-nav-login {
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
.bc-nav-login:hover { color: var(--fg-1); }
.bc-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fff;
  border: 0;
  padding: 12px 22px;
  border-radius: 999px;
  font: 600 14px/1 var(--font-body);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.bc-nav-cta:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.24);
}
.bc-nav-cta i {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

/* buttons */
.bc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; border: 0;
  font: 700 13px/1 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--radius-pill); cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  box-shadow: 0 6px 16px rgba(43, 118, 229, 0.18);
}
.bc-btn:hover { background: var(--brand-hover); box-shadow: var(--shadow-brand); transform: translateY(-1px); }
.bc-btn:active { transform: scale(0.98); background: var(--brand-press); }
.bc-btn-ghost {
  background: transparent; border: 1px solid var(--border-subtle); color: var(--fg-1);
  font: 600 13px/1 var(--font-body); letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 22px; border-radius: var(--radius-pill); cursor: pointer;
}
.bc-btn-ghost:hover { background: #fff; }

/* eyebrow chip */
.bc-eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(14, 39, 77, 0.06);
  color: var(--brand); font: 600 12px/1.2 var(--font-body);
  box-shadow: var(--shadow-1);
}
.bc-eyebrow-chip svg { width: 14px; height: 14px; }

/* hero */
.bc-hero { position: relative; overflow: hidden; padding: 80px 24px 0; text-align: center; }
.bc-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 50% 90%, #d6e6ff 0%, #eaf3ff 45%, #f7faff 100%);
}
.bc-hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image:
    radial-gradient(ellipse 1300px 380px at 50% 110%, transparent 24.6%, rgba(89,156,255,0.30) 25%, transparent 25.4%),
    radial-gradient(ellipse 1000px 290px at 50% 110%, transparent 24.6%, rgba(89,156,255,0.30) 25%, transparent 25.4%),
    radial-gradient(ellipse 720px 210px at 50% 110%, transparent 24.6%, rgba(89,156,255,0.30) 25%, transparent 25.4%),
    radial-gradient(ellipse 480px 140px at 50% 110%, transparent 24.6%, rgba(89,156,255,0.30) 25%, transparent 25.4%);
}
.bc-hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: 40px; align-items: center;
}
.bc-hero-text { display: flex; flex-direction: column; align-items: center; }
.bc-hero-media {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.bc-hero-media-glow {
  position: absolute; inset: -8% -6%;
  z-index: -1; pointer-events: none;
  background:
    radial-gradient(45% 45% at 30% 35%, rgba(43,118,229,0.22) 0%, transparent 65%),
    radial-gradient(45% 45% at 70% 70%, rgba(40,199,101,0.18) 0%, transparent 65%);
  filter: blur(40px);
}
.bc-hero-media-img {
  width: 100%; max-width: 560px; height: auto;
  filter: drop-shadow(0 24px 60px rgba(14,39,77,0.14)) drop-shadow(0 6px 16px rgba(14,39,77,0.06));
  animation: bc-hero-float 6s ease-in-out infinite;
}
@keyframes bc-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .bc-hero-media-img { animation: none; }
}
@media (min-width: 920px) {
  .bc-hero { text-align: left; padding: 100px 32px 0; }
  .bc-hero-content {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
  }
  .bc-hero-text { align-items: flex-start; text-align: left; }
  .bc-hero-text .bc-sub { margin-left: 0; margin-right: 0; max-width: 540px; }
  .bc-hero-text .cc-hero-actions { justify-content: flex-start; }
  .bc-hero-stats { margin-left: 0; margin-right: 0; max-width: 540px; }
}
.bc-hero h1 {
  margin: 24px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg-1);
}
.bc-hero h1 .bc-accent { color: var(--brand); display: block; }
.bc-hero .bc-sub {
  font-size: 18px;
  color: var(--fg-3);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* logo cloud */
.bc-logocloud {
  padding: 60px 24px;
  text-align: center;
}
.bc-logocloud .bc-cap {
  font-size: 13px; color: var(--fg-3); margin-bottom: 28px;
}
.bc-logocloud .bc-row {
  display: flex; gap: 56px; justify-content: center; align-items: center; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.08em;
  color: var(--fg-3); opacity: 0.7;
}
.bc-logocloud .bc-row span { font-size: 22px; }

/* feature grid */
.bc-features { padding: 80px 24px; }
.bc-features-head { text-align: center; margin-bottom: 48px; }
.bc-features-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 14px;
}
.bc-features-head p { color: var(--fg-3); font-size: 16px; margin: 0; }
.bc-feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
.bc-feature {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-2);
  transition: all var(--dur-base) var(--ease-standard);
}
.bc-feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
.bc-feature .bc-feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bc-blue-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.bc-feature .bc-feat-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.bc-feature h4 {
  margin: 0 0 6px; font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--fg-1); letter-spacing: -0.01em;
}
.bc-feature p { margin: 0; font-size: 13.5px; color: var(--fg-3); line-height: 1.5; }

/* dark showcase */
.bc-dark { position: relative; background: var(--dark-bg); padding: 96px 24px; overflow: hidden; }
.bc-dark::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 220px; pointer-events: none;
  background: radial-gradient(60% 100% at 50% 0%, rgba(89,156,255,0.55), rgba(43,118,229,0) 60%);
}
.bc-dark-content { position: relative; max-width: 1180px; margin: 0 auto; text-align: center; }
.bc-dark h2 {
  margin: 0 0 12px; color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em;
}
.bc-dark h2 .bc-accent { color: var(--bc-blue-500); }
.bc-dark .bc-sub-dark { color: #97989c; max-width: 620px; margin: 0 auto 56px; font-size: 16px; line-height: 1.55; }

.bc-dark-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; text-align: left; }
.bc-dark-card {
  background: var(--dark-surface); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 24px; color: #fff;
}
.bc-dark-card.tall { grid-row: span 2; }
.bc-dark-card.brand { background: var(--brand); border-color: var(--bc-blue-800); }
.bc-dark-card h4 {
  margin: 14px 0 8px; font-family: var(--font-display);
  font-weight: 700; font-size: 17px; color: #fff;
}
.bc-dark-card p { margin: 0; color: #97989c; font-size: 13.5px; line-height: 1.55; }
.bc-dark-card.brand p { color: rgba(255,255,255,0.85); }
.bc-dark-card .bc-feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(89,156,255,0.12); color: var(--bc-blue-500);
  display: flex; align-items: center; justify-content: center;
}
.bc-dark-card.brand .bc-feat-icon { background: rgba(255,255,255,0.18); color: #fff; }
.bc-dark-card .bc-feat-icon svg { width: 20px; height: 20px; stroke-width: 1.7; }

/* fake screenshot */
.bc-mockchat {
  background: #fff; border-radius: 12px; padding: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  font-family: var(--font-body); color: #2f3238;
}
.bc-mockchat .row {
  display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start;
}
.bc-mockchat .bub {
  background: #eaf3ff; padding: 8px 12px; border-radius: 12px 12px 12px 4px;
  font-size: 12px; max-width: 70%;
}
.bc-mockchat .bub.me {
  background: var(--brand); color: #fff; border-radius: 12px 12px 4px 12px; margin-left: auto;
}
.bc-mockchat .bub.green { background: #e9f9f0; color: #1c8a47; }

/* comparison */
.bc-compare { padding: 80px 24px; }
.bc-compare-head { text-align: center; margin-bottom: 48px; }
.bc-compare-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4.5vw, 44px); letter-spacing: -0.02em; color: var(--fg-1); margin: 0 0 14px; }
.bc-compare-head p { color: var(--fg-3); font-size: 16px; margin: 0; }
.bc-compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.bc-compare-card {
  background: #fff; border-radius: var(--radius-xl); padding: 28px 32px;
  box-shadow: var(--shadow-2);
}
.bc-compare-card.con { background: linear-gradient(180deg, #f7faff 0%, #eaf3ff 100%); border: 1px solid #d6e6ff; }
.bc-compare-card h4 { margin: 0 0 16px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; display: flex; gap: 10px; align-items: center; color: var(--fg-1); }
.bc-compare-card.con h4 { color: var(--brand-press); }
.bc-compare-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.bc-compare-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg-2); line-height: 1.5; }
.bc-compare-card .mark { flex: none; width: 18px; height: 18px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; }
.bc-compare-card .mark.x { background: #eaeaeb; color: #97989c; }
.bc-compare-card .mark.v { background: var(--brand); color: #fff; }

/* pricing */
.bc-pricing { background: var(--dark-bg); padding: 96px 24px; }
.bc-pricing-head { text-align: center; margin-bottom: 48px; }
.bc-pricing-head h2 { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em; margin: 0 0 14px; }
.bc-pricing-head p { color: #97989c; font-size: 16px; margin: 0; }
.bc-pricing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
.bc-pricing-card {
  background: var(--dark-surface); border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl); padding: 32px; color: #fff;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.bc-pricing-card .bc-tier { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.bc-pricing-card .bc-pill-current {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px; border-radius: 999px; font-size: 12px; color: #97989c;
}
.bc-pricing-card .bc-recommended {
  position: absolute; top: 24px; right: 24px;
  background: var(--brand); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font: 700 11px/1 var(--font-body); letter-spacing: 0.06em; text-transform: uppercase;
}
.bc-pricing-card .bc-price { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.02em; }
.bc-pricing-card .bc-price small { font-size: 14px; font-weight: 500; color: #97989c; margin-left: 6px; }
.bc-pricing-card .bc-price-desc { font-size: 13px; color: #97989c; }
.bc-pricing-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bc-pricing-card li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; color: #d5d6d7; }
.bc-pricing-card li svg { flex: none; width: 16px; height: 16px; color: var(--bc-blue-500); margin-top: 2px; stroke-width: 2; }
.bc-pricing-card .bc-feat-cat { font-size: 13px; font-weight: 700; color: #fff; margin-top: 8px; }
.bc-pricing-card .bc-btn { width: 100%; justify-content: center; }

/* faq */
.bc-faq { padding: 80px 24px; }
.bc-faq-head { text-align: center; margin-bottom: 36px; }
.bc-faq-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4.5vw, 44px); letter-spacing: -0.02em; color: var(--fg-1); margin: 0 0 14px; }
.bc-faq-head p { color: var(--fg-3); font-size: 15px; margin: 0; }
.bc-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.bc-faq-item {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-1);
  padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14.5px; color: var(--fg-1); font-weight: 500;
  transition: all var(--dur-base) var(--ease-standard);
}
.bc-faq-item:hover { box-shadow: var(--shadow-2); }
.bc-faq-item.open { background: #fff; }
.bc-faq-item .bc-q { display: flex; gap: 12px; align-items: center; }
.bc-faq-item .bc-toggle { width: 18px; height: 18px; color: var(--fg-3); transition: transform var(--dur-base) var(--ease-standard); }
.bc-faq-item.open .bc-toggle { transform: rotate(45deg); color: var(--brand); }
.bc-faq-content {
  max-width: 760px; margin: -8px auto 0; padding: 0 22px 18px;
  font-size: 14px; color: var(--fg-3); line-height: 1.6;
  background: #fff; border-radius: 0 0 14px 14px; box-shadow: var(--shadow-1);
}

/* cta banner */
.bc-cta-banner { padding: 60px 24px 100px; }
.bc-cta-banner-inner {
  position: relative; max-width: 1080px; margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #eaf3ff 100%);
  border-radius: 32px; padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.bc-cta-banner-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; color: var(--fg-1); margin: 0 0 12px; }
.bc-cta-banner-inner p { color: var(--fg-3); font-size: 15px; margin: 0 0 24px; }
.bc-cta-art-l, .bc-cta-art-r { position: absolute; bottom: 24px; width: 56px; height: 56px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-2); display: flex; align-items: center; justify-content: center; }
.bc-cta-art-l { left: 8%; }
.bc-cta-art-r { right: 8%; }
.bc-cta-art-l img, .bc-cta-art-r img { width: 36px; height: 36px; }

/* footer */
.bc-footer { padding: 56px 24px 32px; background: var(--bg-page); border-top: 1px solid var(--border-subtle); }
.bc-footer-row { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.bc-footer-brand img { height: 26px; margin-bottom: 14px; }
.bc-footer-brand p { font-size: 13px; color: var(--fg-3); max-width: 320px; margin: 0; line-height: 1.55; }
.bc-footer-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg-1); margin: 0 0 14px; }
.bc-footer-col a { display: block; margin-bottom: 10px; color: var(--fg-3); font-size: 13.5px; text-decoration: none; }
.bc-footer-col a:hover { color: var(--brand); }
.bc-footer-bottom { max-width: 1180px; margin: 36px auto 0; padding-top: 18px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 12px; color: var(--fg-3); }
.bc-footer-socials { display: flex; gap: 12px; }
.bc-footer-socials a {
  width: 28px; height: 28px; border-radius: 999px; background: #fff; border: 1px solid var(--border-subtle);
  display: inline-flex; align-items: center; justify-content: center; color: var(--fg-3);
}
.bc-footer-socials a:hover { color: var(--brand); border-color: var(--brand); }
.bc-footer-socials svg { width: 14px; height: 14px; }

/* responsive */
@media (max-width: 900px) {
  .bc-feature-row { grid-template-columns: 1fr 1fr; }
  .bc-dark-grid { grid-template-columns: 1fr 1fr; }
  .bc-compare-row, .bc-pricing-row, .bc-footer-row { grid-template-columns: 1fr; }
  .bc-nav-links { display: none; }
}
@media (max-width: 560px) {
  .bc-nav { padding: 0 6px 0 18px; height: 58px; }
  .bc-nav-login { display: none; }
  .bc-nav-cta { padding: 10px 16px; font-size: 13px; }
}


/* Chatclipy-specific tweaks layered on top of BotConversa design system */

/* WhatsApp green token already in DS as --bc-green / --accent-green */

/* ================== NAV ===================== */
.cc-logo {
  display: inline-block;
}
.cc-logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(140deg, var(--bc-blue-700) 0%, var(--bc-blue-500) 60%, var(--bc-green) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(43,118,229,0.30);
}
.cc-logo-mark svg { color: #fff; width: 16px; height: 16px; }
.cc-logo-mark.lg { width: 38px; height: 38px; border-radius: 11px; }
.cc-logo-mark.lg svg { width: 20px; height: 20px; }
.cc-logo-mark.sm { width: 24px; height: 24px; border-radius: 7px; }
.cc-logo-mark.sm svg { width: 12px; height: 12px; }

.bc-nav-links a.active { color: var(--brand); }

/* ---- Dropdown "Recursos" ---- */
.bc-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.bc-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--dur-fast) var(--ease-standard);
  line-height: 1;
}
.bc-nav-dropdown-trigger:hover { color: var(--brand); }
.bc-nav-dropdown-trigger svg {
  width: 14px; height: 14px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.bc-nav-dropdown:hover .bc-nav-dropdown-trigger svg,
.bc-nav-dropdown:focus-within .bc-nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.bc-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(14,39,77,0.08);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 8px 32px rgba(14,39,77,0.12),
    0 2px 8px rgba(14,39,77,0.06);
  padding: 8px;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 100;
}
/* Ponte invisível que preenche o gap entre o trigger e o painel,
   impedindo que o hover suma ao descer o mouse */
.bc-nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.bc-nav-dropdown:hover .bc-nav-dropdown-panel,
.bc-nav-dropdown:focus-within .bc-nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.bc-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--fg-2);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.bc-nav-dropdown-item:hover {
  background: var(--bc-blue-50);
  color: var(--brand);
}
.bc-nav-dropdown-item svg {
  width: 15px; height: 15px;
  color: var(--brand);
  flex-shrink: 0;
  opacity: 0.85;
}

/* ================== HERO ==================== */
/* override slightly for tighter feel */
.bc-hero { padding: 120px 24px 0; }
.bc-hero h1 .bc-accent { display: inline; }
.bc-hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px; max-width: 720px; margin: 36px auto 0;
}
.bc-hero-stat {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(14,39,77,0.06);
  border-radius: 16px; padding: 18px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-1);
}
.bc-hero-stat .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; line-height: 1;
  color: var(--brand); letter-spacing: -0.02em;
}
.bc-hero-stat .lab {
  font-size: 12px; color: var(--fg-3);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 8px;
}

.cc-hero-actions {
  display: inline-flex; gap: 12px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}

/* ================== HERO CHAT MOCK ============ */
.cc-hero-mock-wrap {
  margin: 56px auto 0; max-width: 760px;
  position: relative;
}
.cc-phone {
  width: 300px; margin: 0 auto;
  background: #fff;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(14,39,77,0.18), 0 8px 20px rgba(14,39,77,0.08);
  border: 1px solid rgba(14,39,77,0.08);
  position: relative;
  z-index: 2;
}
.cc-phone-screen {
  background: #f7faff; border-radius: 28px; overflow: hidden;
  height: 540px; display: flex; flex-direction: column;
}
.cc-phone-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 22px 6px; font-size: 11px; color: var(--fg-1);
  font-weight: 600;
}
.cc-phone-statusbar .icons { display: flex; gap: 5px; align-items: center; }
.cc-phone-statusbar svg { width: 12px; height: 12px; }

.cc-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--bc-green);
  color: #fff;
}
.cc-chat-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: #fff; color: var(--bc-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.cc-chat-info h4 { font-size: 13px; font-weight: 700; margin: 0; }
.cc-chat-info .stat {
  font-size: 11px; opacity: 0.92; margin-top: 1px;
  display: flex; align-items: center; gap: 5px;
}
.cc-chat-info .stat .dot {
  width: 6px; height: 6px; border-radius: 999px; background: #fff;
  animation: cc-blink 1.6s ease infinite;
}
@keyframes cc-blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.cc-chat-body {
  flex: 1;
  background:
    linear-gradient(180deg, rgba(232,238,224,0.55) 0%, rgba(232,238,224,0.35) 100%),
    repeating-linear-gradient(45deg, rgba(43,118,229,0.04) 0 2px, transparent 2px 16px);
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.cc-msg { max-width: 78%; padding: 8px 11px; font-size: 12.5px; line-height: 1.4;
  border-radius: 12px; box-shadow: 0 1px 1px rgba(14,39,77,0.05); }
.cc-msg.user { align-self: flex-end; background: #d2f5dd; color: #0e2a1a; border-bottom-right-radius: 3px; }
.cc-msg.bot { align-self: flex-start; background: #fff; color: var(--fg-1); border-bottom-left-radius: 3px; }
.cc-msg .time {
  display: block; text-align: right;
  font-size: 9.5px; color: rgba(14,39,77,0.45); margin-top: 3px;
}
.cc-msg .typing { display: inline-flex; gap: 3px; }
.cc-msg .typing span {
  width: 6px; height: 6px; border-radius: 999px; background: #97989c;
  animation: cc-bounce 1s ease infinite;
}
.cc-msg .typing span:nth-child(2){ animation-delay: 0.15s; }
.cc-msg .typing span:nth-child(3){ animation-delay: 0.30s; }
@keyframes cc-bounce { 0%,80%,100%{ transform: translateY(0); opacity: 0.5; } 40%{ transform: translateY(-3px); opacity: 1; } }

.cc-chat-input {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: #fff;
  border-top: 1px solid rgba(14,39,77,0.05);
}
.cc-chat-input .field {
  flex: 1; background: #f0f3f9; border-radius: 999px;
  padding: 7px 12px; font-size: 11.5px; color: var(--fg-3);
}
.cc-chat-input .send {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--bc-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cc-chat-input .send svg { width: 14px; height: 14px; }

/* floating side cards around the phone */
.cc-hero-stat-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 14px;
  box-shadow: var(--shadow-3); border: 1px solid rgba(14,39,77,0.06);
  display: flex; align-items: center; gap: 10px; min-width: 168px;
  text-align: left;
  z-index: 3;
}
.cc-hero-stat-card.left { left: max(0px, calc(50% - 280px)); top: 80px; transform: rotate(-2deg); }
.cc-hero-stat-card.right-top { right: max(0px, calc(50% - 280px)); top: 40px; transform: rotate(2deg); }
.cc-hero-stat-card.right-bottom { right: max(0px, calc(50% - 290px)); bottom: 40px; transform: rotate(-1.5deg); }
.cc-hero-stat-card .ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bc-blue-50); color: var(--brand);
  flex: none;
}
.cc-hero-stat-card .ico.green { background: rgba(40,199,101,0.12); color: var(--bc-green); }
.cc-hero-stat-card .ico svg { width: 16px; height: 16px; }
.cc-hero-stat-card .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: var(--fg-1); letter-spacing: -0.01em;
  line-height: 1;
}
.cc-hero-stat-card .num small { color: var(--bc-green); font-weight: 700; }
.cc-hero-stat-card .lab {
  font-size: 11px; color: var(--fg-3); margin-top: 3px;
}

/* ================== OBJECTIONS =============== */
.cc-objections {
  background: var(--bg-page);
  padding: 80px 24px;
}
.cc-objections-head { text-align: center; margin-bottom: 40px; }
.cc-objections-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em;
  color: var(--fg-1); margin: 14px 0 10px;
}
.cc-objections-head p { color: var(--fg-3); font-size: 16px; margin: 0; }
.cc-objections-grid {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.cc-obj-card {
  background: #fff; border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(14,39,77,0.05);
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  align-items: flex-start;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.cc-obj-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(14,39,77,0.10), 0 4px 10px -2px rgba(14,39,77,0.05);
  border-color: rgba(43,118,229,0.18);
}
.cc-obj-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; margin-top: 1px;
}
.cc-obj-icon::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: currentColor; opacity: 0.10;
}
.cc-obj-icon svg { width: 20px; height: 20px; stroke-width: 2; position: relative; z-index: 1; }
.cc-obj-icon.tone-red    { color: #e23a52; }
.cc-obj-icon.tone-blue   { color: var(--brand); }
.cc-obj-icon.tone-green  { color: #16a34a; }
.cc-obj-icon.tone-orange { color: #ea7c1c; }
.cc-obj-icon.tone-amber  { color: #d4a017; }
.cc-obj-body { min-width: 0; }
.cc-obj-quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16.5px; color: var(--bc-blue-900);
  margin: 0 0 6px; letter-spacing: -0.005em; line-height: 1.35;
}
.cc-obj-answer { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.cc-obj-answer strong { color: var(--brand); font-weight: 700; }
.cc-obj-card.featured {
  background: linear-gradient(135deg, #f7faff 0%, #eaf3ff 100%);
  border-color: rgba(43,118,229,0.20);
  box-shadow: 0 6px 18px -4px rgba(43,118,229,0.10), var(--shadow-1);
}
@media (min-width: 720px) {
  .cc-obj-card { padding: 20px 26px; gap: 18px; grid-template-columns: 44px 1fr; }
  .cc-obj-icon { width: 44px; height: 44px; border-radius: 12px; }
  .cc-obj-icon svg { width: 22px; height: 22px; }
  .cc-obj-quote { font-size: 17px; }
  .cc-obj-answer { font-size: 14.5px; }
}

/* ================== HOW IT WORKS ============== */
.cc-howto {
  padding: 96px 24px;
  background: var(--bg-page);
  position: relative;
}
.cc-howto-head { text-align: center; margin-bottom: 56px; }
.cc-howto-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 14px;
}
.cc-howto-head p { color: var(--fg-3); font-size: 16px; margin: 0; }
.cc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.cc-step {
  background: #fff; border-radius: 20px;
  padding: 32px 28px; box-shadow: var(--shadow-2);
  border: 1px solid rgba(14,39,77,0.04);
  position: relative;
}
.cc-step .badge {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(43,118,229,0.25);
}
.cc-step h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.01em;
  color: var(--fg-1); margin: 18px 0 10px;
}
.cc-step p { font-size: 14px; color: var(--fg-3); line-height: 1.6; margin: 0; }
.cc-step .arrow {
  position: absolute; top: 50%; right: -16px; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); z-index: 2;
}
.cc-step .arrow svg { width: 16px; height: 16px; }
.cc-step:last-child .arrow { display: none; }

/* ================== TESTIMONIALS ============== */
.cc-testi {
  padding: 96px 24px;
  background: var(--bg-page);
}
.cc-testi-head { text-align: center; margin-bottom: 48px; }
.cc-testi-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 14px;
}
.cc-testi-head p { color: var(--fg-3); font-size: 16px; margin: 0; }
.cc-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
.cc-testi-card {
  background: #fff; border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow-2);
  border: 1px solid rgba(14,39,77,0.04);
  display: flex; flex-direction: column; gap: 18px;
}
.cc-testi-head-row { display: flex; align-items: center; gap: 12px; }
.cc-testi-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(140deg, var(--bc-blue-700), var(--bc-blue-500));
  color: #fff; font-family: var(--font-display); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.cc-testi-name { font-weight: 700; font-size: 14.5px; color: var(--fg-1); }
.cc-testi-role { font-size: 12px; color: var(--fg-3); }
.cc-testi-quote { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; margin: 0; }
.cc-testi-stars { color: #ff9d00; display: flex; gap: 1px; }
.cc-testi-stars svg { width: 14px; height: 14px; fill: currentColor; stroke: currentColor; }
.cc-testi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.cc-testi-stat { text-align: center; }
.cc-testi-stat .v { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--brand); letter-spacing: -0.01em; }
.cc-testi-stat .l { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ================== ROI CALCULATOR ============== */
.cc-roi {
  padding: 96px 24px;
  background: linear-gradient(180deg, #f7faff 0%, #eaf3ff 100%);
}
.cc-roi-head { text-align: center; margin-bottom: 48px; }
.cc-roi-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 14px;
}
.cc-roi-head p { color: var(--fg-3); font-size: 16px; margin: 0; }
.cc-roi-card {
  max-width: 980px; margin: 0 auto;
  background: #fff; border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(14,39,77,0.04);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
}
.cc-roi-inputs { display: flex; flex-direction: column; gap: 22px; }
.cc-roi-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--fg-1); margin-bottom: 6px;
  display: block;
}
.cc-roi-input {
  width: 100%; padding: 14px 16px;
  background: #f7faff; border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--fg-1);
  transition: all var(--dur-base) var(--ease-standard);
}
.cc-roi-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43,118,229,0.15); background: #fff; }
.cc-roi-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--bc-blue-500) var(--p,20%), var(--bc-blue-100) var(--p,20%));
  outline: none;
}
.cc-roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 999px;
  background: #fff; border: 3px solid var(--brand);
  box-shadow: 0 4px 10px rgba(43,118,229,0.30);
  cursor: pointer;
}
.cc-roi-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 999px;
  background: #fff; border: 3px solid var(--brand);
  box-shadow: 0 4px 10px rgba(43,118,229,0.30);
}
.cc-roi-range-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--fg-3); margin-top: 8px; }
.cc-roi-range-row .v { font-weight: 700; color: var(--brand); }

.cc-roi-result {
  background: linear-gradient(140deg, var(--bc-blue-700) 0%, var(--bc-blue-800) 100%);
  border-radius: 22px; padding: 32px;
  color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.cc-roi-result::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(89,156,255,0.5), transparent 60%);
  pointer-events: none;
}
.cc-roi-result-content { position: relative; z-index: 1; }
.cc-roi-result .label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); margin-bottom: 12px;
}
.cc-roi-result .value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; letter-spacing: -0.025em;
  line-height: 1; margin-bottom: 14px;
}
.cc-roi-result .desc { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.cc-roi-result .desc strong { color: var(--bc-blue-300); }

.cc-roi-disclaimer {
  max-width: 980px; margin: 20px auto 0;
  font-size: 12px; color: var(--fg-3);
  text-align: center; line-height: 1.55;
  padding: 14px 24px; border-top: 1px dashed rgba(14,39,77,0.12);
}

/* ================== PRICING (light, BC style) ============== */
.cc-pricing-light {
  padding: 96px 24px;
  background: var(--bg-page);
}
.cc-pricing-light .bc-pricing-head h2 { color: var(--fg-1); }
.cc-pricing-light .bc-pricing-head p { color: var(--fg-3); }
.cc-pricing-row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; position: relative; }

.cc-price-card {
  background: #fff; border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(14,39,77,0.06);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: all var(--dur-base) var(--ease-standard);
}
.cc-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.cc-price-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-3), 0 0 0 4px rgba(43,118,229,0.06);
}
.cc-price-tag {
  position: absolute; top: -14px; right: 24px;
  background: var(--brand); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.cc-price-tier {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--fg-1); letter-spacing: -0.01em;
}
.cc-price-desc { font-size: 13.5px; color: var(--fg-3); line-height: 1.5; margin: 0; }
.cc-price-amount { display: flex; align-items: baseline; gap: 4px; }
.cc-price-amount .cur { font-size: 18px; color: var(--fg-3); font-weight: 600; }
.cc-price-amount .num { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: var(--fg-1); letter-spacing: -0.025em; }
.cc-price-amount .per { font-size: 14px; color: var(--fg-3); font-weight: 500; margin-left: 4px; }
.cc-price-note { font-size: 12px; color: var(--brand); font-weight: 600; }
.cc-price-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cc-price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--fg-2); line-height: 1.5;
}
.cc-price-features li .ck {
  flex: none; width: 18px; height: 18px; border-radius: 999px;
  background: var(--bc-blue-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.cc-price-features li .ck svg { width: 11px; height: 11px; stroke-width: 3; }
.cc-price-extras {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-subtle);
  font-size: 12px; color: var(--fg-3); line-height: 1.6;
}
.cc-price-extras strong { color: var(--fg-1); display: block; margin-bottom: 4px; font-weight: 700; }

.bc-btn.full { width: 100%; justify-content: center; }
.bc-btn-ghost.full { width: 100%; justify-content: center; }
.bc-btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bc-green); color: #fff; border: 0;
  font: 700 13px/1 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--radius-pill); cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  box-shadow: 0 6px 16px rgba(40,199,101,0.25);
}
.bc-btn-green:hover { background: #1ea053; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(40,199,101,0.35); }
.bc-btn-green.full { width: 100%; justify-content: center; }

.cc-pricing-blur {
  position: absolute; inset: -20px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(247,250,255,0.7);
  border-radius: 28px;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-standard);
}
.cc-pricing-blur.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ================== FAQ already in DS ============== */
.cc-faq-section { padding: 96px 24px; background: var(--bg-page); }

/* ================== CTA / FOOTER ================ */
.cc-cta-banner {
  padding: 60px 24px 100px;
  background: var(--bg-page);
}
.cc-cta-banner-inner {
  position: relative; max-width: 1080px; margin: 0 auto;
  background:
    radial-gradient(60% 100% at 50% 100%, rgba(89,156,255,0.18), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eaf3ff 100%);
  border-radius: 32px;
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(14,39,77,0.06);
  overflow: hidden;
}
.cc-cta-banner-inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 14px;
}
.cc-cta-banner-inner h2 .bc-accent { color: var(--brand); }
.cc-cta-banner-inner p { color: var(--fg-3); font-size: 16px; margin: 0 0 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cc-cta-art-l, .cc-cta-art-r {
  position: absolute; bottom: 32px; width: 64px; height: 64px;
  border-radius: 18px; background: #fff;
  box-shadow: var(--shadow-2);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(14,39,77,0.06);
}
.cc-cta-art-l { left: 6%; transform: rotate(-6deg); }
.cc-cta-art-r { right: 6%; transform: rotate(6deg); }
.cc-cta-art-l img, .cc-cta-art-r img { width: 36px; height: 36px; }
.cc-cta-art-l .ico, .cc-cta-art-r .ico { color: var(--brand); }
.cc-cta-art-r .ico { color: var(--bc-green); }
.cc-cta-art-l svg, .cc-cta-art-r svg { width: 28px; height: 28px; }

/* ================== FLOATING WHATSAPP ============ */
.cc-wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 999px;
  background: var(--bc-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(40,199,101,0.40);
  cursor: pointer; text-decoration: none;
  transition: transform var(--dur-base) var(--ease-standard);
}
.cc-wa-fab:hover { transform: translateY(-3px) scale(1.04); }
.cc-wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.cc-wa-fab::after {
  content: ""; position: absolute; inset: -6px; border-radius: 999px;
  border: 2px solid var(--bc-green); opacity: 0;
  animation: cc-pulse 2.4s ease-out infinite;
}
@keyframes cc-pulse {
  0%   { transform: scale(0.9); opacity: 0.6; }
  80%  { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

/* ================== MODAL ================ */
.cc-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(14,39,77,0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.cc-modal {
  background: #fff; border-radius: 24px;
  padding: 36px; max-width: 460px; width: 100%;
  box-shadow: var(--shadow-4);
  position: relative;
}
.cc-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 999px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--fg-3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
}
.cc-modal-close:hover { background: var(--bc-blue-50); color: var(--brand); }
.cc-modal-close svg { width: 18px; height: 18px; }
.cc-modal-step {
  font-size: 12px; color: var(--fg-3);
  text-align: center; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.cc-modal-step .now { color: var(--brand); font-weight: 700; }
.cc-modal h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; letter-spacing: -0.02em;
  color: var(--fg-1); text-align: center; margin: 0 0 12px;
}
.cc-modal p.sub { font-size: 14px; color: var(--fg-3); text-align: center; margin: 0 0 24px; line-height: 1.5; }
.cc-modal label { font-size: 13px; font-weight: 600; color: var(--fg-1); margin-bottom: 6px; display: block; }
.cc-modal input {
  width: 100%; padding: 14px 16px; background: #f7faff;
  border: 1px solid var(--border-subtle); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--fg-1);
  transition: all var(--dur-base) var(--ease-standard);
}
.cc-modal input:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(43,118,229,0.15); }
.cc-modal .err { font-size: 12.5px; color: var(--bc-red); margin-top: 6px; }
.cc-modal .ok { font-size: 12.5px; color: var(--bc-green); margin-top: 6px; }
.cc-modal .warn {
  background: #fff8e1; border: 1px solid #ffe39a;
  color: #8a6300; font-size: 12.5px;
  padding: 10px 14px; border-radius: 10px;
  margin: 16px 0 18px; line-height: 1.5;
}
.cc-modal .warn strong { color: #5c4300; }

/* code input */
.cc-modal input.code {
  text-align: center; font-size: 24px; letter-spacing: 0.5em;
  font-weight: 700; font-family: var(--font-display);
}

/* ================== RESPONSIVE ================ */
@media (max-width: 900px) {
  .cc-hero-stat-card { display: none; }
  .cc-steps { grid-template-columns: 1fr; }
  .cc-step .arrow { display: none; }
  .cc-testi-grid { grid-template-columns: 1fr; }
  .cc-pricing-row3 { grid-template-columns: 1fr; }
  .cc-roi-card { grid-template-columns: 1fr; padding: 28px; }
  .bc-hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .bc-hero-stat .num { font-size: 22px; }
}

/* User overrides — appended last so they override earlier rules */

.cc-logo-img { width: 30px; height: 30px; object-fit: contain; display: inline-block; border-radius: 7px; }
.cc-logo-img.lg { width: 38px; height: 38px; border-radius: 9px; }
.cc-logo-img.sm { width: 24px; height: 24px; border-radius: 6px; }
img.cc-logo-img { width: 100%; }
span.cc-logo-mark.sm { display: none; }
span.bc-eyebrow-chip { display: none; }
.cc-pricing-blur { display: none; }
.cc-price-amount.is-custom .num {
  font-size: 38px; line-height: 1.05; letter-spacing: -0.02em;
}
/* Align CTA buttons across pricing cards */
.cc-price-card .cc-price-features { flex-grow: 1; }
/* cc-logo-mark now shows an image instead of a lucide icon */
span.cc-logo-mark.sm { display: inline-flex; }
.cc-logo-mark { background: transparent; box-shadow: none; overflow: hidden; }
.cc-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Align divider line across testimonial cards */
.cc-testi-card .cc-testi-quote { flex-grow: 1; }
/* Align icon + text inside ghost button (Ver demonstração) */
.bc-btn-ghost { display: inline-flex; align-items: center; gap: 8px; }
.bc-btn-ghost svg { width: 16px; height: 16px; flex: none; }
/* Team card supporting note (below meta stats) */
.cc-team-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-3);
}
.cc-team-note strong {
  display: block;
  color: var(--fg-1);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
/* ====== FAQ + Demo video — two-column layout ====== */
.cc-faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .cc-faq-grid { grid-template-columns: 1fr; gap: 40px; }
}
/* Override the original centered/narrow list constraint when inside the grid */
.cc-faq-grid .bc-faq-list { max-width: none; margin: 0; width: 100%; }

/* Left column — video card stays in view while user reads FAQs */
.cc-faq-media {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .cc-faq-media { position: static; top: auto; max-width: none; }
}

.cc-faq-media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0a1224;
  box-shadow:
    0 30px 60px -25px rgba(43,118,229,0.32),
    0 12px 30px -12px rgba(14,39,77,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  isolation: isolate;
}

/* Subtle macOS-style window chrome on top */
.cc-faq-media-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f3f5f9 0%, #e9edf3 100%);
  border-bottom: 1px solid rgba(14,39,77,0.06);
}
.cc-faq-media-bar span {
  width: 10px; height: 10px; border-radius: 999px;
  background: #d6dbe3;
}
.cc-faq-media-bar span:nth-child(1) { background: #ff5f57; }
.cc-faq-media-bar span:nth-child(2) { background: #febc2e; }
.cc-faq-media-bar span:nth-child(3) { background: #28c840; }

.cc-faq-media-video {
  display: block;
  width: 100%;
  height: auto;
  background: #0a1224;
  border: 0;
  outline: none;
}

.cc-faq-media-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(60% 55% at 50% 45%, rgba(43,118,229,0.28), transparent 72%);
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
}

.cc-faq-media-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 6px;
}
.cc-faq-media-caption strong {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
.cc-faq-media-caption span {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
}

/* ===== Mobile fixes (request batch) ===== */

/* 1. Extra breathing room above FAQ list — desktop only */
@media (min-width: 961px) {
  .bc-faq-list { margin-top: 40px !important; }
}

/* 2. Stack feature/dark grids into a single column on small phones to fix cramped/overflow layout */
@media (max-width: 600px) {
  .bc-feature-row { grid-template-columns: 1fr !important; gap: 14px; padding: 0 4px; }
  .bc-dark-grid   { grid-template-columns: 1fr !important; gap: 14px; }
}

/* 3. Hide decorative floating icons on the final CTA banner — they overlap the button on mobile */
@media (max-width: 720px) {
  .cc-cta-art-l, .cc-cta-art-r { display: none !important; }
}

/* 4. Fixed hero height on mobile (smartphone) */
@media (max-width: 720px) {
  
}


html, body { background: #f6f9ff; }#cc-preloader { position: fixed; inset: 0; z-index: 99999; background: linear-gradient(180deg, #f6f9ff 0%, #eaf3ff 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; transition: opacity .55s ease, visibility .55s ease; }#cc-preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }#cc-preloader .cc-pl-logo { width: 78px; height: 78px; border-radius: 22px; background: #fff; box-shadow: 0 18px 40px -16px rgba(43,118,229,0.30), 0 4px 12px -4px rgba(14,39,77,0.08); display: flex; align-items: center; justify-content: center; padding: 14px; animation: cc-pl-pulse 1.6s ease-in-out infinite; }#cc-preloader .cc-pl-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }#cc-preloader .cc-pl-bar { width: 140px; height: 3px; border-radius: 999px; background: rgba(43,118,229,0.15); overflow: hidden; position: relative; }#cc-preloader .cc-pl-bar::after { content: ""; position: absolute; inset: 0; width: 40%; background: linear-gradient(90deg, #2b76e5, #4d8ff0); border-radius: inherit; animation: cc-pl-slide 1.2s cubic-bezier(.55,.15,.45,.85) infinite; }#cc-preloader .cc-pl-text { font: 600 12px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #5b6b85; letter-spacing: 0.04em; text-transform: uppercase; }@keyframes cc-pl-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }@keyframes cc-pl-slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }


/* ============================================
   COMPARATIVO — extra styles for this page
   ============================================ */

/* Hero variant for content page */
.bc-hero.cmp-hero { padding: 120px 24px 32px; }
.bc-hero.cmp-hero h1 { 
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px); 
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--tr-tight);
  color: var(--fg-1);
  max-width: 880px;
  margin: 24px auto 18px;
  text-align: center;
}
.bc-hero.cmp-hero p.lede {
  max-width: 700px; margin: 0 auto 28px;
  font-size: 18px; color: var(--fg-2); line-height: 1.6;
}

.cmp-breadcrumb {
  font-size: 13px; color: var(--fg-3);
  display: inline-flex; gap: 8px; align-items: center;
  margin-bottom: 8px;
}
.cmp-breadcrumb a { color: var(--brand); font-weight: 500; text-decoration: none; }
.cmp-breadcrumb a:hover { text-decoration: underline; }
.cmp-breadcrumb span { color: var(--fg-3); }

.cmp-meta {
  display: inline-flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--fg-3);
  margin-top: 8px;
}
.cmp-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.cmp-meta-item i { width: 14px; height: 14px; }

/* Section blocks */
.cmp-section { padding: 56px 24px; position: relative; }
.cmp-section:first-of-type { padding-top: 32px; }
.cmp-section.alt { background: var(--bc-blue-50); }
.cmp-section .bc-container { max-width: 1180px; margin: 0 auto; }
.cmp-section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.cmp-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: var(--tr-tight);
  color: var(--fg-1);
  margin: 16px 0;
}
.cmp-section-head p { font-size: 17px; color: var(--fg-2); line-height: 1.55; }

/* Intro prose */
.cmp-prose { max-width: 760px; margin: 0 auto; font-size: 17px; color: var(--fg-2); line-height: 1.75; }
.cmp-prose p { margin-bottom: 18px; }
.cmp-prose strong { color: var(--fg-1); font-weight: 600; }

/* Criteria grid */
.cmp-criteria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
@media (max-width: 880px) { .cmp-criteria { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cmp-criteria { grid-template-columns: 1fr; } }
.cmp-criteria-card {
  background: #fff; border: 1px solid rgba(14,39,77,0.06);
  border-radius: 18px; padding: 24px;
  transition: all var(--dur-base) var(--ease-standard);
}
.cmp-criteria-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.cmp-criteria-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bc-blue-50); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cmp-criteria-icon i { width: 20px; height: 20px; }
.cmp-criteria-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--fg-1); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cmp-criteria-card p { font-size: 14px; color: var(--fg-3); line-height: 1.5; }

/* Comparison table */
.cmp-table-wrap {
  background: #fff; border: 1px solid rgba(14,39,77,0.06);
  border-radius: 24px; box-shadow: var(--shadow-2);
  overflow: hidden;
}
.cmp-table-scroll { overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 820px; }
.cmp-table thead th {
  background: var(--bc-blue-50); color: var(--fg-1);
  font-weight: 700; text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(14,39,77,0.06);
  white-space: nowrap;
}
.cmp-table thead th:first-child { position: sticky; left: 0; background: var(--bc-blue-50); }
.cmp-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(14,39,77,0.04);
  color: var(--fg-2);
}
.cmp-table tbody td:first-child {
  font-weight: 600; color: var(--fg-1);
  position: sticky; left: 0; background: #fff;
}
.cmp-table tbody tr:hover td { background: var(--bc-blue-50); }
.cmp-table tbody tr:hover td:first-child { background: var(--bc-blue-50); }
.cmp-table tbody tr.featured td {
  background: linear-gradient(90deg, rgba(40,199,101,0.06), rgba(43,118,229,0.04));
  border-left: 3px solid var(--bc-green);
}
.cmp-table tbody tr.featured td:first-child {
  background: linear-gradient(90deg, rgba(40,199,101,0.10), rgba(40,199,101,0.06));
}
.cell-yes { color: var(--bc-green); font-weight: 700; }
.cell-no  { color: var(--bc-gray-400); }
.tag-pill {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px;
  background: var(--bc-blue-50); color: var(--brand);
}
.tag-pill.green { background: rgba(40,199,101,0.10); color: var(--bc-green); }
.tag-pill.gray  { background: rgba(45,55,72,0.06); color: var(--fg-3); }
.cell-price { font-weight: 600; color: var(--fg-1); }
.cell-price small { color: var(--fg-3); font-weight: 400; display: block; font-size: 11px; }

/* Competitor cards */
.cmp-competitors {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.cmp-card {
  background: #fff; border: 1px solid rgba(14,39,77,0.06);
  border-radius: 22px; padding: 28px;
  position: relative; overflow: hidden;
  transition: all var(--dur-base) var(--ease-standard);
}
.cmp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand); opacity: 0.4;
}
.cmp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}
.cmp-card.featured {
  background: linear-gradient(180deg, #fff, #fafdff);
  border: 1px solid rgba(40,199,101,0.30);
}
.cmp-card.featured::before { background: var(--bc-green); opacity: 1; height: 4px; }

.cmp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.cmp-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bc-blue-50); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.cmp-card.featured .cmp-num { background: var(--bc-green); color: #fff; }
.cmp-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  color: var(--fg-1); letter-spacing: -0.02em; flex: 1;
}
.cmp-badge {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bc-blue-50); color: var(--brand);
}
.cmp-badge.br   { background: rgba(40,199,101,0.10); color: var(--bc-green); }
.cmp-badge.intl { background: rgba(45,55,72,0.06); color: var(--fg-3); }

.cmp-best { font-size: 13px; color: var(--fg-3); margin-bottom: 14px; }
.cmp-best strong { color: var(--fg-1); font-weight: 600; }

.cmp-price {
  display: inline-block;
  margin-bottom: 14px; padding: 10px 16px;
  background: var(--bc-blue-50);
  border-radius: 14px;
  font-size: 13px; color: var(--fg-2);
  line-height: 1.5; max-width: 100%;
}
.cmp-price strong { color: var(--fg-1); font-weight: 700; white-space: nowrap; }
.cmp-price .price-meta {
  display: block; font-size: 12px;
  color: var(--fg-3); margin-top: 2px;
}

.cmp-desc { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; margin-bottom: 16px; }

.cmp-list { margin-bottom: 14px; }
.cmp-list-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 8px;
}
.cmp-list ul { list-style: none; padding: 0; margin: 0; }
.cmp-list ul li {
  font-size: 14px; color: var(--fg-2);
  padding: 5px 0 5px 22px;
  position: relative; line-height: 1.5;
}
.cmp-list ul li::before {
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.cmp-pros li::before { content: '✓'; color: var(--bc-green); }
.cmp-cons li::before { content: '–'; color: var(--bc-gray-400); }

.cmp-versus {
  margin-top: 16px; padding: 14px 16px;
  background: var(--bc-blue-50);
  border-radius: 14px;
  border-left: 3px solid var(--brand);
}
.cmp-versus-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 4px;
}
.cmp-versus p { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; margin: 0; }

/* Why Chatclipy block */
.cmp-why {
  background: linear-gradient(135deg, var(--bc-blue-900), var(--bc-blue-deep));
  color: #fff;
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.cmp-why::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,199,101,0.18), transparent 70%);
  pointer-events: none;
}
.cmp-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
@media (max-width: 880px) {
  .cmp-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .cmp-why { padding: 48px 28px; }
}
.cmp-why-eyebrow {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(40,199,101,0.18); color: #5fe28d;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 18px;
}
.cmp-why h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: var(--tr-tight);
  margin-bottom: 18px;
}
.cmp-why h2 .accent {
  background: linear-gradient(90deg, #5fe28d, #28c765);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cmp-why p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.cmp-why ul { list-style: none; padding: 0; margin: 0; }
.cmp-why ul li {
  font-size: 15px; padding: 7px 0 7px 28px;
  position: relative; color: rgba(255,255,255,0.92);
}
.cmp-why ul li::before {
  content: '✓'; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--bc-green); color: #fff;
  font-size: 11px; font-weight: 800;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cmp-why-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bc-green); color: #fff;
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 999px;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-standard);
  box-shadow: 0 12px 28px rgba(40,199,101,0.35);
}
.cmp-why-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(40,199,101,0.45); }

/* FAQ */
.cmp-faq-list { max-width: 760px; margin: 0 auto; }
.cmp-faq-item {
  background: #fff; border: 1px solid rgba(14,39,77,0.06);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  transition: all var(--dur-base) var(--ease-standard);
}
.cmp-faq-item[open] { box-shadow: var(--shadow-1); }
.cmp-faq-item summary {
  list-style: none; padding: 18px 22px; cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: var(--fg-1);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.cmp-faq-item summary::-webkit-details-marker { display: none; }
.cmp-faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--fg-3); transition: transform 0.2s;
}
.cmp-faq-item[open] summary::after { content: '−'; }
.cmp-faq-body { padding: 0 22px 22px; font-size: 15px; color: var(--fg-2); line-height: 1.6; }

/* Pricing tweaks for this page */
@media (max-width: 880px) { .cc-pricing-row3 { grid-template-columns: 1fr; } }

/* Final CTA */
.cmp-final-cta {
  text-align: center; padding: 80px 24px;
  background: #fff;
}
.cmp-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: var(--tr-tight);
  color: var(--fg-1); margin-bottom: 16px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.cmp-final-cta p {
  font-size: 17px; color: var(--fg-2);
  max-width: 600px; margin: 0 auto 32px;
}

@media (max-width: 640px) {
  .cmp-section { padding: 56px 24px; }
  .cmp-competitors { grid-template-columns: 1fr; }
  .bc-hero.cmp-hero { padding: 110px 16px 40px; }
}


/* chatclipy.css força header.bc-hero { height: 800px } pra mídia lateral
   da home — comparativo não usa, então altura natural. */
header.bc-hero.cmp-hero { height: auto; }

/* Centraliza os 3 chips de meta do hero do comparativo
   (estavam inline-flex à esquerda; viraram flex full-width). */
header.bc-hero.cmp-hero .cmp-meta {
  display: flex;
  justify-content: center;
}

/* Centraliza o breadcrumb (mesmo motivo do .cmp-meta: era inline-flex). */
header.bc-hero.cmp-hero .cmp-breadcrumb {
  display: flex;
  justify-content: center;
}
