/* ================================================================
   NCCAPS — Landing Page
   Tokens conforme especificação (seção 2 do documento de referência)
   ================================================================ */

:root {
  /* Cores */
  --navy:        #14183D;
  --navy-2:      #4B5480;
  --text:        #64708A;
  --teal:        #4F46E5;
  --green:       #06B6D4;
  --green-soft:  #C7D0FF;
  --bg:          #F7F8FC;
  --surface:     #FFFFFF;
  --surface-2:   #EEF0FA;
  --border:      #DEE1EE;

  --gradient: linear-gradient(90deg, #4F46E5, #06B6D4);

  /* Tipografia */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --ink: #0B1424; /* base escura "tech" */

  /* Layout */
  --max: 1160px;
  --radius: 20px;
  /* Sombra suave em camadas (design "Surgical Precision") */
  --shadow:
    0 0 0 1px rgba(17, 24, 39, 0.05),
    0 1px 1px -0.5px rgba(17, 24, 39, 0.05),
    0 3px 3px -1.5px rgba(17, 24, 39, 0.05),
    0 6px 6px -3px rgba(17, 24, 39, 0.04),
    0 12px 12px -6px rgba(17, 24, 39, 0.04),
    0 24px 24px -12px rgba(17, 24, 39, 0.04);
  --shadow-lg:
    0 0 0 1px rgba(17, 24, 39, 0.05),
    0 8px 24px -6px rgba(17, 24, 39, 0.12),
    0 24px 48px -12px rgba(17, 24, 39, 0.14);
}

/* -------- Reset -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 24px;
}

.narrow { max-width: 860px; }
.center  { text-align: center; }

/* -------- Tipografia utilitária -------- */
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  background: rgba(79, 70, 229, 0.10);
  border: 1px solid var(--green-soft);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Selo de empresa verificada (usado nos cards e no chat) */
.verified-badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 5px;
  line-height: 0;
}
.verified-badge svg { width: 18px; height: 18px; }

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-text {
  color: var(--text);
  font-size: 16px;
  margin-top: 16px;
}

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

.section { padding-block: clamp(56px, 8vw, 96px); }
#beneficios { background: radial-gradient(760px 340px at 12% 0%, rgba(79, 70, 229, 0.06), transparent 62%); }
#funcionalidades { background: radial-gradient(760px 340px at 88% 0%, rgba(6, 182, 212, 0.07), transparent 62%); }

.section-head { margin-bottom: 48px; }
.section-head.center { margin-inline: auto; max-width: 720px; }

/* -------- Botões -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  border-radius: 9999px;
  padding: 12px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.30);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(79, 70, 229, 0.38); }

.btn-outline {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* -------- Cards genéricos -------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

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

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand-logo { height: 34px; width: auto; }
.brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
  display: inline-block;
}
.brand-word > span { color: var(--teal); }
.brand-word-sm { font-size: 16px; }
.brand-word-light { color: #fff; }
.brand-word-light > span { color: var(--green); }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a { color: var(--navy-2); transition: color .2s; }
.main-nav a:hover { color: var(--teal); }
.site-header .btn { margin-left: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ================= HERO ================= */
.hero {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(79, 70, 229,.10), transparent 60%),
    var(--bg);
  padding-block: clamp(56px, 8vw, 100px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 6px 0 18px;
}
.hero-text {
  color: var(--text);
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 28px;
}
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-2);
}
.hero-badges li { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 16px; height: 16px; color: var(--teal); flex: 0 0 auto; }

/* Hero mockup */
.hero-media { display: flex; justify-content: center; }
.hero-card {
  width: 320px;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--gradient);
  color: #fff;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-head);
}
.chat-header small { opacity: .85; display: block; font-size: 12px; }
.verified {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  vertical-align: middle;
}
.verified svg { width: 11px; height: 11px; color: #fff; }
.chat-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f7f9;
  min-height: 200px;
}
.bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}
.bubble.in  { background: #fff; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.out { background: var(--green-soft); color: var(--navy); align-self: flex-end; border-bottom-right-radius: 4px; }

.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ================= CARROSSEL DE MARCAS ================= */
.brands {
  padding-block: 40px;
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.brands-title {
  text-align: center;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.brand-chip {
  flex: 0 0 auto;
  padding: 12px 26px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy-2);
  font-size: 15px;
  display: flex;
  align-items: center;
}
.brand-chip-img { padding: 8px 20px; }
.brand-chip-img img { height: 30px; width: auto; object-fit: contain; }
.logo-placeholder {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-2);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================= API / NOTÍCIA ================= */
.api-section .btn { margin-top: 26px; }

.news-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}
.news-copy .btn { margin-top: 22px; }
.news-stat {
  text-align: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 18px;
  padding: 36px 24px;
}
.news-stat .big-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
.news-stat p { margin-top: 8px; font-weight: 600; }

/* ================= ICON CARDS ================= */
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.28);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.icon-badge svg { width: 27px; height: 27px; }
.icon-card:hover .icon-badge,
.feature-card:hover .icon-badge {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.38);
}
.icon-card h3, .feature-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  margin-bottom: 8px;
}
.icon-card p, .feature-card p { color: var(--text); font-size: 15px; }
.card { transition: transform .18s ease, box-shadow .18s ease; }
.icon-card:hover, .feature-card:hover, .partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card { display: flex; flex-direction: column; }
.link-more {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
}
.link-more:hover { text-decoration: underline; }

/* ================= PARCEIROS ================= */
.partners-section { background: var(--surface); }
.partner-card { text-align: center; }
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 64px;
  margin-bottom: 20px;
}
.partner-logos img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid var(--green-soft);
}
.cross { color: var(--text); font-size: 22px; font-weight: 300; }
.partner-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 6px;
}
.by-brand {
  font-size: 0.8em;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.by-brand span { color: var(--teal); font-weight: 700; }
.partner-tag {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
  margin-bottom: 12px;
}
.partner-card p { color: var(--text); font-size: 14.5px; }

/* ================= INDICADORES ================= */
.stats-section {
  background: var(--navy);
  color: #fff;
}
.stats-grid { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat p { color: #B9C2D4; font-weight: 600; margin-top: 6px; }

/* ================= PLANOS ================= */
.plans-grid { align-items: stretch; }
.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 32px 28px;
}
.plan-card.featured {
  border-color: var(--teal);
  box-shadow: 0 20px 48px rgba(79, 70, 229, 0.20);
  transform: translateY(-8px);
}
.popular-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 12px;
}
.plan-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 46px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 24px;
}
.plan-price .currency { font-size: 22px; vertical-align: super; margin-right: 2px; }
.plan-price .per { font-size: 15px; font-weight: 600; color: var(--text); }
.plan-price-custom { font-size: 30px; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--navy-2);
}
.plan-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ================= FAQ ================= */
.faq-section { background: var(--surface); }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 22px;
}
.acc-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform .2s ease;
}
.acc-item[open] summary::after { transform: rotate(45deg); }
.acc-body { padding: 0 0 20px; color: var(--text); font-size: 15px; }

/* ================= FOOTER ================= */
.site-footer {
  background: var(--navy);
  color: #C6CFDE;
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-logo { filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand .brand-word { margin-bottom: 16px; font-size: 26px; }
.footer-brand p { max-width: 320px; font-size: 15px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; font-size: 15px; margin-bottom: 10px; color: #C6CFDE; }
.footer-col a:hover { color: var(--teal); }
.footer-company { font-size: 13px; color: #8C99AE; margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 22px;
  text-align: center;
  font-size: 13px;
  color: #8C99AE;
}

/* ================= WHATSAPP FAB ================= */
.whatsapp-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform .18s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-text { margin-inline: auto; }
  .hero-copy { text-align: center; }
  .hero-badges { justify-content: center; }
  .news-card { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 767px) {
  .container { padding-inline: 18px; }
  .main-nav, .site-header .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
  }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(26px, 7vw, 32px); }
}

/* ================= REFINAMENTO VISUAL 2026 — PALETA NCCAPS ================= */
:root {
  --navy: #14183D;
  --navy-2: #4B5480;
  --text: #64708A;
  --teal: #4F46E5;   /* primária — índigo elétrico */
  --green: #06B6D4;  /* secundária — ciano */
  --green-soft: #C7D0FF;
  --bg: #F7F8FC;
  --surface: #fff;
  --surface-2: #EEF0FA;
  --border: #DEE1EE;
  --radius: 24px;
  --gradient: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --font-head: 'Poppins', system-ui, sans-serif;
}

body {
  background:
    linear-gradient(rgba(16,33,63,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,33,63,.022) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px;
}

.site-header {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(16,33,63,.08);
  box-shadow: 0 8px 30px rgba(16,33,63,.05);
}

.header-inner { height: 76px; }
.brand-word { letter-spacing: -.045em; }
.brand-word::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 3px 7px 3px 7px;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(79,70,229,.10);
  transform: rotate(-8deg);
}

.main-nav a { position: relative; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gradient);
  transition: right .2s ease;
}
.main-nav a:hover::after { right: 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 46%, rgba(255,255,255,.18), transparent 27%),
    radial-gradient(circle at 15% 0%, rgba(6,182,212,.20), transparent 34%),
    linear-gradient(135deg, #4F46E5 0%, #3f7fe6 52%, #06B6D4 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  right: -170px;
  top: -180px;
  border: 80px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.hero-grid { gap: clamp(48px, 8vw, 100px); position: relative; }
.hero-copy { animation: hero-copy-in .75s cubic-bezier(.22,.8,.3,1) both; }
.hero-title { color: #fff; font-size: clamp(46px, 6vw, 72px); max-width: 680px; }
.hero .gradient-text { background: none; -webkit-text-fill-color: #dfe4ff; color: #dfe4ff; }
.hero-text { color: rgba(255,255,255,.88); font-size: 19px; line-height: 1.72; }
.hero .kicker { color: #fff; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.34); }
.hero .hero-badges { color: #fff; }
.hero .hero-badges svg { color: #dfe4ff; }
.hero .btn-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(16,33,63,.28); }
.hero .btn-primary:hover { background: #0a1730; box-shadow: 0 16px 36px rgba(16,33,63,.36); }
.hero-card {
  width: 370px;
  border: 8px solid #fff;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(6,55,46,.28), 0 0 0 1px rgba(255,255,255,.3);
  animation: hero-card-in .85s .12s cubic-bezier(.22,.8,.3,1) both, float 5s 1s ease-in-out infinite;
}
.chat-header { padding: 20px; }
.chat-body { min-height: 260px; padding: 26px 20px; background-color: #f2f6f4; }
.bubble { padding: 12px 15px; box-shadow: 0 4px 12px rgba(16,33,63,.05); }

.brands { background: #fff; border-block-color: rgba(16,33,63,.07); }
.brand-chip { border-color: transparent; background: #f2f7f5; box-shadow: inset 0 0 0 1px rgba(16,33,63,.05); }

.card {
  border-color: rgba(16,33,63,.08);
  box-shadow: 0 10px 35px rgba(16,33,63,.055);
}
.icon-card, .feature-card { padding: 32px; }
.icon-card:hover, .feature-card:hover, .partner-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(16,33,63,.11);
  border-color: rgba(79,70,229,.28);
}
.icon-badge { width: 58px; height: 58px; border-radius: 18px; }

.news-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: linear-gradient(130deg, #14183D 0%, #2A2F6B 64%, #4b46c9 145%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(16,33,63,.20);
}
.news-card .section-title, .news-card .section-text { color: #fff; }
.news-card .section-text { opacity: .72; }
.news-card .btn-outline { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.news-stat { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.news-stat .big-number { color: #5BD6EE; }

.stats-section { background: linear-gradient(135deg, #12163A, #23285E); }
.stat { padding: 18px; }
.stat-number { background: linear-gradient(135deg, #8E97FF, #22C6E0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.acc-item { box-shadow: 0 7px 24px rgba(16,33,63,.04); }
.acc-item[open] { border-color: rgba(79,70,229,.35); }
.site-footer { background: linear-gradient(145deg, #121636, #1C2150); }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-card-in {
  from { opacity: 0; transform: translateX(30px) scale(.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.chat-avatar { animation: avatar-pulse 2.5s ease-in-out infinite; }
@keyframes avatar-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.25); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.btn, .icon-badge, .whatsapp-fab { will-change: transform; }

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-card { width: 330px; transform: none; }
}

@media (max-width: 767px) {
  .header-inner { height: 68px; }
  .hero { padding-top: 34px; }
  .hero-media { order: 0; }
  .hero-title { font-size: clamp(42px, 13vw, 58px); }
  .hero-badges { display: grid; justify-content: center; text-align: left; }
  .icon-card, .feature-card { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ================= HERO — LAYOUT DE REFERÊNCIA ================= */
body { background-color: #dfe8f5; }

.site-header {
  width: min(1280px, calc(100% - 56px));
  margin: 28px auto 0;
  top: 12px;
  border: 1px solid rgba(16,33,63,.10);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: rgba(242,251,248,.94);
  box-shadow: 0 -8px 30px rgba(27,48,83,.08);
}
.header-inner { height: 72px; }
.main-nav {
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(16,33,63,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 8px 24px rgba(16,33,63,.05);
}
.main-nav a { padding: 7px 13px; border-radius: 999px; font-size: 13px; }
.main-nav a:hover { color: var(--navy); background: #fff; }
.main-nav a::after { display: none; }
.site-header .btn { background: #fff; color: var(--navy); border-color: rgba(16,33,63,.08); box-shadow: 0 8px 24px rgba(16,33,63,.06); }

.hero {
  width: min(1280px, calc(100% - 56px));
  max-width: none;
  min-height: 690px;
  margin: 0 auto 56px;
  padding: 28px 0 24px;
  color: var(--navy);
  border: 1px solid rgba(16,33,63,.10);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(120,132,255,.20), transparent 28%),
    radial-gradient(circle at 15% 48%, rgba(6,182,212,.18), transparent 30%),
    linear-gradient(145deg, #eef0ff 0%, #e7eefb 52%, #eaf5ff 100%);
  box-shadow: 0 22px 60px rgba(27,48,83,.14);
}
.hero::before {
  width: 520px;
  height: 520px;
  right: -220px;
  top: -190px;
  border-color: rgba(31,177,131,.07);
}
.hero-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
  text-align: center;
}
.hero .kicker { margin-bottom: 10px; color: var(--navy); background: rgba(255,255,255,.72); border-color: rgba(16,33,63,.08); box-shadow: 0 8px 24px rgba(16,33,63,.05); }
.hero-title {
  width: 100%;
  max-width: none;
  margin: 0 auto 10px;
  color: var(--navy);
  text-align: center;
}
.hero-title-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: clamp(60px, 7.4vw, 94px);
  line-height: .95;
  letter-spacing: -.075em;
}
.hero-title-sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(27px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-text { max-width: 610px; margin: 0 auto 14px; color: #5d6c7f; font-size: 15px; line-height: 1.5; }
.hero-actions { display: flex; justify-content: center; gap: 12px; }
.hero-actions .btn { padding-block: 12px; }
.hero .btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 10px 24px rgba(79,70,229,.25); }
.hero .btn-primary:hover { background: linear-gradient(135deg,#4038D4,#0AA5C0); box-shadow: 0 14px 30px rgba(79,70,229,.3); }
.hero .btn-outline { background: rgba(255,255,255,.78); }
.hero .hero-badges { justify-content: center; gap: 10px 18px; margin-top: 10px; color: #526176; font-size: 12px; }
.hero .hero-badges svg { color: var(--teal); }

.floating-proof {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(16,33,63,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 15px 35px rgba(16,33,63,.11);
  animation: proof-float 4s ease-in-out infinite;
}
.floating-proof img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; }
.floating-proof span { display: flex; flex-direction: column; text-align: left; }
.floating-proof strong { font-size: 12px; line-height: 1.25; }
.floating-proof small { color: var(--text); font-size: 10px; }
.proof-left { left: 2%; top: 112px; }
.proof-right { right: 2%; top: 72px; animation-delay: -.9s; }

.hero-media {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 210px minmax(400px, 520px) 210px;
  align-items: end;
  gap: 16px;
  width: min(980px, 100%);
  margin-top: -12px;
  animation: dashboard-in .8s .15s cubic-bezier(.22,.8,.3,1) both;
}
.hero-card {
  width: 100%;
  border: 7px solid rgba(255,255,255,.92);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(16,33,63,.17);
  animation: none;
}
.chat-header { position: relative; padding: 17px 20px; }
.chat-status { margin-left: auto; padding: 5px 9px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: 10px; font-weight: 700; }
.hero .chat-body { min-height: 150px; padding: 12px 14px; gap: 6px; }
.hero .bubble { padding: 8px 12px; font-size: 12px; }
.hero .typing { padding: 7px 11px; }
.typing { align-self: flex-start; display: flex; gap: 4px; padding: 10px 13px; border-radius: 14px; background: #fff; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: #8a98a8; animation: typing-dot 1s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }

.hero-side-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(16,33,63,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(16,33,63,.11);
}
.mini-card-head { display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.mini-card-head span { color: var(--text); font-size: 11px; }
.mini-card-head strong { font: 700 24px/1 var(--font-head); }
.activity-bars { display: flex; align-items: end; gap: 6px; height: 58px; margin: 13px 0; padding: 8px; border-radius: 12px; background: #eef0fb; }
.activity-bars i { flex: 1; height: 38%; border-radius: 5px; background: #b7bdf5; animation: bar-rise 2.2s ease-in-out infinite alternate; transform-origin: bottom; }
.activity-bars i:nth-child(2) { height: 66%; animation-delay: -.4s; }
.activity-bars i:nth-child(3) { height: 88%; animation-delay: -.8s; }
.activity-bars i:nth-child(4) { height: 54%; animation-delay: -1.2s; }
.activity-bars i:nth-child(5) { height: 72%; animation-delay: -1.6s; }
.hero-side-card p { font-size: 11px; font-weight: 600; }
.channel-list { display: flex; gap: 7px; margin-top: 10px; }
.channel-list span { display: grid; place-items: center; min-width: 27px; height: 27px; padding: 0 6px; border-radius: 50%; background: #eef2f6; color: var(--navy); font-size: 9px; font-weight: 700; }
.performance-card > small { display: block; margin-top: 8px; color: var(--text); font-size: 9px; }
.chart-bars { display: flex; align-items: end; gap: 7px; height: 74px; margin-top: 12px; border-bottom: 1px solid var(--border); }
.chart-bars i { flex: 1; height: 28%; border-radius: 5px 5px 0 0; background: #bcc4f4; animation: chart-pulse 2.8s ease-in-out infinite alternate; }
.chart-bars i:nth-child(2) { height: 42%; }.chart-bars i:nth-child(3) { height: 57%; }.chart-bars i:nth-child(4) { height: 86%; background: var(--teal); }.chart-bars i:nth-child(5) { height: 50%; }.chart-bars i:nth-child(6) { height: 68%; }.chart-bars i:nth-child(7) { height: 78%; }
.chart-days { display: flex; justify-content: space-between; margin-top: 6px; color: var(--text); font-size: 8px; }

@keyframes proof-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-9px) rotate(1deg); } }
@keyframes dashboard-in { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes typing-dot { 0%,100% { transform: translateY(0); opacity: .45; } 50% { transform: translateY(-4px); opacity: 1; } }
@keyframes bar-rise { from { transform: scaleY(.65); } to { transform: scaleY(1); } }
@keyframes chart-pulse { from { filter: saturate(.8); } to { filter: saturate(1.35); } }

@media (max-width: 1024px) {
  .floating-proof { display: none; }
  .hero-media { order: 0; grid-template-columns: 180px minmax(360px, 1fr) 180px; }
}

@media (max-width: 767px) {
  .site-header, .hero { width: 100%; margin-inline: 0; border-inline: 0; border-radius: 0; }
  .site-header { margin-top: 0; top: 0; }
  .site-header.open .main-nav { top: 68px; border-radius: 0; }
  .hero { min-height: auto; margin-bottom: 28px; padding: 48px 0 38px; }
  .hero-title-main { gap: 12px; font-size: clamp(48px, 15vw, 64px); }
  .hero-title-sub { font-size: clamp(25px, 8vw, 34px); }
  .hero-text { padding-inline: 4px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; margin-inline: auto; }
  .hero-media { grid-template-columns: 1fr; width: min(350px, 100%); }
  .hero-side-card { display: none; }
  .hero-card { width: 100%; }
  .chat-status { display: none; }
}
