/* ============================================================
   M7 CONSULTORIA — Design System
   Paleta de marca: #1573E6 / #0C2E66 / #4FA3FF
   Tipografia: Space Grotesk (títulos) + Montserrat (texto)
   ============================================================ */

:root {
  --primary: #1573E6;
  --primary-light: #4FA3FF;
  --primary-dark: #0C2E66;
  --accent: #5AA0FF;
  --navy: #081634;
  --navy-2: #0c2147;

  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #0b1220;
  --ink-soft: #475569;
  --ink-faint: #94a3b8;
  --line: #e6ebf3;

  --success: #10b981;

  --grad-brand: linear-gradient(135deg, #4FA3FF 0%, #1573E6 45%, #0C2E66 100%);
  --grad-brand-soft: linear-gradient(135deg, #1573E6 0%, #0C2E66 100%);
  --grad-text: linear-gradient(120deg, #4FA3FF 0%, #1573E6 60%);

  --shadow-sm: 0 2px 8px -2px rgba(12, 46, 102, .12);
  --shadow: 0 18px 40px -16px rgba(12, 46, 102, .28);
  --shadow-lg: 0 40px 80px -28px rgba(8, 22, 52, .45);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }

::selection { background: var(--primary); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 70px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  background: rgba(21,115,230,.08); padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(21,115,230,.16);
}
.section-title { font-size: clamp(28px, 4vw, 44px); margin: 18px 0 14px; }
.section-sub { color: var(--ink-soft); font-size: 17px; max-width: 620px; }
.center .section-sub { margin-inline: auto; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; transition: .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand-soft); color: #fff; box-shadow: 0 12px 28px -10px rgba(21,115,230,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(21,115,230,.7); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(37,211,102,.6); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(37,211,102,.7); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid rgba(21,115,230,.4); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: .3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; margin: 14px auto 0; max-width: var(--container);
  padding: 0 18px 0 22px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(12,46,102,.08); border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.nav.scrolled .nav-inner { background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.brand img { width: 38px; height: 38px; }
.brand b { color: inherit; }
.brand span { color: var(--ink); letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); padding: 9px 14px; border-radius: 999px; transition: .2s; }
.nav-links a:hover { color: var(--primary); background: rgba(21,115,230,.07); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 170px 0 90px;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(79,163,255,.18), transparent 60%),
    radial-gradient(800px 500px at 0% 10%, rgba(21,115,230,.10), transparent 55%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(12,46,102,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(12,46,102,.045) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 20%, #000, transparent 75%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(36px, 5.4vw, 62px); margin: 22px 0 20px; }
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--font-head); font-size: 26px; color: var(--ink); }
.hero-trust .t span { font-size: 13px; color: var(--ink-faint); }
.hero-trust .div { width: 1px; height: 36px; background: var(--line); }

/* Hero visual — browser mockup */
.mockup {
  border-radius: 16px; overflow: hidden; background: #0b1220;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(12,46,102,.12);
}
.mockup-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #0e1b34; }
.mockup-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mockup-bar i:nth-child(1){ background:#ff5f57 } .mockup-bar i:nth-child(2){ background:#febc2e } .mockup-bar i:nth-child(3){ background:#28c840 }
.mockup-bar .url { margin-left: 12px; flex: 1; background: rgba(255,255,255,.08); color: #9fb4d4; font-size: 12px; padding: 5px 12px; border-radius: 7px; font-family: var(--font-head); }
.mockup img { width: 100%; display: block; }
.hero-visual { position: relative; }
.hero-visual .float-card {
  position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line);
  font-family: var(--font-head); animation: floaty 5s ease-in-out infinite;
}
.hero-visual .fc-1 { bottom: -22px; left: -26px; }
.hero-visual .fc-2 { top: 24px; right: -28px; animation-delay: 1.5s; }
.float-card .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--grad-brand-soft); }
.float-card .ic svg { width: 20px; height: 20px; }
.float-card b { font-size: 15px; display: block; } .float-card small { color: var(--ink-faint); font-weight: 500; font-family: var(--font-body); }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-12px) } }

/* ---------- Logos / trust strip ---------- */
.strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.strip span { font-family: var(--font-head); font-weight: 600; color: var(--ink-faint); font-size: 15px; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: .3s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(21,115,230,.25); }
.card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--grad-brand-soft); margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 15px; }
.card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.card .tags span { font-size: 12px; color: var(--primary); background: rgba(21,115,230,.08); padding: 4px 10px; border-radius: 999px; font-weight: 600; }

/* ---------- Demo section (dark) ---------- */
.dark { background: var(--navy); color: #e8eefb; position: relative; overflow: hidden; }
.dark::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(900px 500px at 85% 0%, rgba(21,115,230,.22), transparent 60%), radial-gradient(700px 400px at 0% 100%, rgba(79,163,255,.12), transparent 60%);
}
.dark .container { position: relative; z-index: 1; }
.dark .section-title, .dark h3 { color: #fff; }
.dark .section-sub { color: #aebfdc; }
.dark .eyebrow { color: #8fc0ff; background: rgba(143,192,255,.12); border-color: rgba(143,192,255,.22); }

.demo-wrap { display: grid; grid-template-columns: 290px 1fr; gap: 28px; margin-top: 42px; align-items: start; }
.demo-tabs { display: flex; flex-direction: column; gap: 8px; }
.demo-tab {
  display: flex; align-items: center; gap: 13px; text-align: left; width: 100%;
  padding: 14px 16px; border-radius: 14px; color: #c2d2ef; font-weight: 500; font-size: 15px;
  border: 1px solid transparent; transition: .2s; font-family: var(--font-head);
}
.demo-tab .ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #8fc0ff; flex-shrink: 0; }
.demo-tab .ic svg { width: 19px; height: 19px; }
.demo-tab:hover { background: rgba(255,255,255,.05); color: #fff; }
.demo-tab.active { background: rgba(21,115,230,.16); border-color: rgba(79,163,255,.4); color: #fff; }
.demo-tab.active .ic { background: var(--grad-brand-soft); color: #fff; }
.demo-stage { position: relative; }
.demo-screen { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.demo-screen .mockup-bar { background: #0a1730; }
.demo-screen img { width: 100%; display: block; }
.demo-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.demo-meta h4 { color: #fff; font-size: 19px; }
.demo-login {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  padding: 12px 18px; border-radius: 12px; font-size: 14px; color: #c2d2ef;
}
.demo-login code { font-family: var(--font-head); color: #8fc0ff; background: rgba(143,192,255,.12); padding: 2px 8px; border-radius: 6px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.shot {
  border-radius: 14px; overflow: hidden; cursor: pointer; position: relative;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); transition: .3s;
}
.shot:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.shot img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.shot .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 13px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  background: linear-gradient(transparent, rgba(8,22,52,.85)); }
.shot .zoom { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.9); display: grid; place-items: center; opacity: 0; transition: .25s; }
.shot:hover .zoom { opacity: 1; }
.shot .zoom svg { width: 17px; height: 17px; color: var(--primary); }

/* ---------- Morris / IA feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 30px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .chk { width: 26px; height: 26px; border-radius: 8px; background: rgba(21,115,230,.12); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.dark .feature-list .chk { background: rgba(143,192,255,.16); color: #8fc0ff; }
.feature-list .chk svg { width: 15px; height: 15px; }
.feature-list b { font-family: var(--font-head); }
.feature-list p { color: var(--ink-soft); font-size: 14.5px; }
.dark .feature-list p { color: #aebfdc; }

/* ---------- Portfolio teaser + grid ---------- */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.pf-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: .3s ease; display: flex; flex-direction: column;
}
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(21,115,230,.25); }
.pf-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #eef3fb; }
.pf-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: 1.6s cubic-bezier(.2,.7,.3,1); }
.pf-card:hover .pf-thumb img { object-position: bottom; }
.pf-badge { position: absolute; top: 12px; left: 12px; font-size: 12px; font-weight: 600; font-family: var(--font-head); color: #fff; background: rgba(8,22,52,.7); backdrop-filter: blur(6px); padding: 5px 11px; border-radius: 999px; }
.pf-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pf-body h3 { font-size: 19px; margin-bottom: 6px; }
.pf-body p { color: var(--ink-soft); font-size: 14px; flex: 1; }
.pf-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 18px; }
.pf-tags span { font-size: 11.5px; color: var(--primary); background: rgba(21,115,230,.08); padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.pf-actions { display: flex; gap: 10px; }
.pf-actions a { flex: 1; }
.pf-actions .btn { width: 100%; padding: 11px; font-size: 13.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  background: var(--grad-brand); border-radius: var(--radius-lg); padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-box::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 40px 40px; }
.cta-box h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); position: relative; }
.cta-box p { color: rgba(255,255,255,.9); font-size: 18px; margin: 14px auto 30px; max-width: 560px; position: relative; }
.cta-box .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #9fb1d2; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand span { color: #fff; }
.footer .brand b { color: inherit; }
.footer-about { margin-top: 18px; font-size: 14.5px; max-width: 300px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-family: var(--font-head); }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: #9fb1d2; margin-bottom: 11px; transition: .2s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cdd9ef; transition: .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: .25s; animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5) } 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0) } 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0) } }

/* ---------- Lightbox / Modal ---------- */
.lightbox, .modal {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,16,32,.88); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open, .modal.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .close, .modal .close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; transition: .2s;
}
.lightbox .close:hover, .modal .close:hover { background: rgba(255,255,255,.24); }
.lightbox .close svg, .modal .close svg { width: 24px; height: 24px; }
.modal-frame {
  width: min(1200px, 95vw); height: min(760px, 86vh); background: #0b1220; border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.modal-frame .mockup-bar { background: #0e1b34; }
.modal-frame iframe { flex: 1; width: 100%; border: none; background: #fff; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 150px 0 60px; background:
  radial-gradient(900px 500px at 85% -10%, rgba(79,163,255,.16), transparent 60%); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); }
.page-hero p { color: var(--ink-soft); font-size: 18px; max-width: 620px; margin-top: 16px; }
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: var(--ink-faint); margin-bottom: 18px; font-weight: 500; }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .feature, .demo-wrap { grid-template-columns: 1fr; }
  .demo-wrap { gap: 22px; }
  .demo-tabs { flex-direction: row; flex-wrap: wrap; }
  .demo-tab { flex: 1 1 auto; }
  .hero-visual { margin-top: 20px; }
  .cards, .gallery, .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn span.hide-sm { display: none; }
  .nav-toggle { display: grid; }
  .mobile-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 92px; left: 18px; right: 18px;
    background: #fff; border-radius: 18px; padding: 14px; box-shadow: var(--shadow); border: 1px solid var(--line);
  }
  .mobile-open .nav-links a { padding: 13px 16px; }
  .section { padding: 64px 0; }
  .cards, .gallery, .pf-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 60px; }
  .cta-box { padding: 44px 24px; }
  .demo-tabs { flex-direction: column; }
}

/* ============================================================
   ADIÇÕES — carrossel do hero, ícone WhatsApp (Font Awesome),
   seção de Business Intelligence
   ============================================================ */

/* WhatsApp: verde mais fechado p/ texto BRANCO legível + ícone Font Awesome */
.btn-wa { background: linear-gradient(135deg, #1FC15F 0%, #0A8F4A 100%); color: #fff !important; font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,.25); box-shadow: 0 12px 26px -10px rgba(15,150,75,.6); }
.btn-wa:hover { color: #fff !important; background: linear-gradient(135deg, #2DE072 0%, #14B85F 100%);
  box-shadow: 0 0 0 3px rgba(45,224,114,.3), 0 18px 40px -8px rgba(37,211,102,.9); }
/* garante texto branco no botão do rodapé (vence .footer-col a) */
.footer-col a.btn-wa, .footer-col a.btn-wa:hover { color: #fff !important; }
.fa-whatsapp { line-height: 1; }
.btn .fa-whatsapp { font-size: 18px; }
.nav-cta .btn .fa-whatsapp { font-size: 16px; }
.wa-float .fa-whatsapp { font-size: 30px; }
.footer-social .fa-whatsapp,
.footer-social .fa-globe { font-size: 18px; }

/* Carrossel do hero */
.hero-carousel { position: relative; aspect-ratio: 16 / 10; background: #0b1220; }
.hero-carousel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top;
  opacity: 0; transition: opacity 1s ease; }
.hero-carousel img.active { opacity: 1; }
.hc-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 2; }
.hc-dots i { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.45); transition: .3s; cursor: pointer; }
.hc-dots i.on { width: 22px; background: #fff; }

/* Business Intelligence */
.bi-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center; margin-top: 44px; }
.bi-featured .demo-screen { cursor: zoom-in; }
.bi-copy h3 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
.bi-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.bi-thumb {
  border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; border: 1px solid var(--line);
  background: #0b1220; box-shadow: var(--shadow-sm); transition: .3s; }
.bi-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bi-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.bi-thumb span { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 11px 9px; color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  background: linear-gradient(transparent, rgba(8,22,52,.9)); }
.bi-live-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600;
  font-size: 13px; color: var(--success); background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 16px; }
.bi-live-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1.6s infinite; }

@media (max-width: 980px) {
  .bi-featured { grid-template-columns: 1fr; }
  .bi-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* Grid de 4 colunas (Comercial & Marketing) */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* Avatares com IA */
.avatar-frame { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12); }
.avatar-frame img { width: 100%; display: block; }
.avatar-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: #fff;
  background: rgba(21,115,230,.92); backdrop-filter: blur(6px); padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(21,115,230,.6); }
.avatar-badge i { font-size: 14px; }

/* Plataformas (logos) */
.platforms { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; margin-top: 40px; }
.platforms .pl { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600;
  font-size: 15px; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); padding: 11px 20px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.platforms .pl i { font-size: 19px; }
.platforms .pl .g-google { background: linear-gradient(90deg,#4285F4,#EA4335,#FBBC05,#34A853); -webkit-background-clip: text; background-clip: text; color: transparent; }
.platforms .pl .c-meta { color: #0866FF; }
.platforms .pl .c-insta { color: #E1306C; }
.platforms .pl .c-linkedin { color: #0A66C2; }
.platforms .pl .c-wa { color: #25D366; }
