/* Brand webfonts (Manual de Marca v1.5) — carregadas via CDN.
   @import no topo para que o compilador resolva os @font-face de Lato e Cabinet Grotesk. */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800&display=swap');

/* ============================================================
   EAD Plataforma — Design System compartilhado do site
   Base: Manual de Marca v1.5  ·  reaproveitado da LP corporativa
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Cores oficiais */
  --violeta:      #7c038e;   /* VIOLETA ESCURO — institucional / CTA */
  --violeta-deep: #240342;   /* BLACK VIOLETA — fundos escuros */
  --violeta-sat:  #9600ff;   /* VIOLETA SATURADO — hover/accent */
  --magenta:      #fe00fe;   /* MAGENTA — pop */
  --branco:       #ffffff;

  /* Neutros com tinte violeta */
  --bg:        #ffffff;
  --bg-soft:   #f7f4fa;
  --bg-strip:  #f0eaf4;
  --ink:       #240342;
  --ink-2:     #3a1a4f;
  --muted:     #6f5f80;
  --muted-2:   #9c8eaf;
  --line:      #ece4f1;
  --line-2:    #d6c8e2;

  --shadow-sm: 0 1px 2px rgba(36,3,66,.06), 0 1px 1px rgba(36,3,66,.04);
  --shadow-md: 0 10px 30px -10px rgba(36,3,66,.18), 0 4px 12px -4px rgba(36,3,66,.08);
  --shadow-lg: 0 30px 60px -20px rgba(124,3,142,.28), 0 10px 24px -8px rgba(36,3,66,.14);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --header-h: 72px;
  --whatsapp-bar-h: 56px;
  --cookie-banner-h: 0px;

  --f-display: 'Lato', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; /* @kind font */
  --f-body:    'Cabinet Grotesk', 'Lato', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; /* @kind font */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
  padding-top: var(--header-h);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

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

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--f-display); color: var(--ink); margin: 0; letter-spacing: -0.02em; line-height: 1.12; font-weight: 900; }
h1 { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.03em; }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
h3 { font-size: 20px; font-weight: 700; }
p  { margin: 0; color: var(--muted); font-family: var(--f-body); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--violeta); background: rgba(124,3,142,.10);
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(124,3,142,.18);
}
.eyebrow.dark { color: #e4c8ec; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.eyebrow .lu { width: 14px; height: 14px; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { text-wrap: balance; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 28px; border-radius: 12px; border: 1px solid transparent;
  font: inherit; font-family: var(--f-body); font-weight: 700; font-size: 16px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  will-change: transform;
}
.btn-primary { background: var(--violeta); color: #fff; box-shadow: 0 10px 24px -8px rgba(124,3,142,.55), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-primary:hover { background: var(--violeta-sat); box-shadow: 0 14px 32px -8px rgba(150,0,255,.65); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); background: var(--violeta-deep); }
.site-header .header-actions .btn-primary { background: #4d0560; box-shadow: 0 10px 24px -8px rgba(36,3,66,.5), inset 0 1px 0 rgba(255,255,255,.14); }
.site-header .header-actions .btn-primary:hover { background: #5f0a78; box-shadow: 0 14px 32px -8px rgba(36,3,66,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--violeta); color: var(--violeta); background: #fff; }
.btn-sm { height: 46px; padding: 0 20px; font-size: 15px; border-radius: 10px; }
.btn-block { width: 100%; }
.btn .lu { width: 18px; height: 18px; stroke-width: 2.25; }

/* ---------- Global header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  transition: transform .28s ease;
  will-change: transform;
}
.site-header.is-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) { .site-header { transition: none; } }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .logo { display: inline-flex; align-items: center; flex: none; }
.site-header .logo img { height: 42px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  font-family: var(--f-body); font-size: 15px; font-weight: 600; color: var(--ink-2);
  text-decoration: none; padding: 9px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: var(--violeta); background: rgba(124,3,142,.07); }
.site-nav a.active { color: var(--violeta); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.header-actions .btn { height: 44px; padding: 0 18px; font-size: 14px; border-radius: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 10px;
  background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle .lu { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu { display: none; }
@media (max-width: 920px) {
  .site-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    display: block; position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
    background: #fff; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu nav { display: flex; flex-direction: column; padding: 12px 24px 24px; }
  .mobile-menu a {
    font-family: var(--f-display); font-weight: 700; font-size: 17px; color: var(--ink);
    text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-of-type { border-bottom: 0; }
  .mobile-menu .btn { margin-top: 16px; width: 100%; }
}

/* ---------- Logos marquee ---------- */
.logos { background: var(--bg-soft); padding: 64px 0 56px; position: relative; overflow: hidden; }
.logos-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.logos-head .eyebrow { margin-bottom: 14px; }
.logos-head h3 { font-family: var(--f-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
.logos-viewport {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logos-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: logos-scroll 38s linear infinite; }
.logos-viewport:hover .logos-track { animation-play-state: paused; }
@keyframes logos-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
/* Marquee de marcas é movimento contínuo e essencial à composição — mantido mesmo com reduce-motion */
.logos-track .logo-mark { flex: 0 0 auto; height: 44px; display: flex; align-items: center; justify-content: center; }
.logos-track .logo-mark img { height: 38px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1) brightness(.45); opacity: .9; transition: opacity .2s, filter .2s; }
.logos-track .logo-mark:hover img { filter: none; opacity: 1; }

/* ---------- Stat cards (compact band) ---------- */
.stats { padding: 64px 0; background: #fff; }
.stats .section-head { margin-bottom: 36px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--violeta-deep); border-radius: var(--radius-lg); overflow: hidden; max-width: 1000px; margin: 0 auto; }
.stat-card { background: transparent; border: 0; border-radius: 0; padding: 30px 32px; color: #fff; display: flex; flex-direction: column; }
.stat-card + .stat-card { border-left: 1px solid rgba(255,255,255,.1); }
.stat-card:hover { transform: none; box-shadow: none; }
.stat-card .stat-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; margin-bottom: 16px; }
.stat-card .stat-icon .lu { width: 19px; height: 19px; color: var(--magenta); }
.stat-card .stat-num { font-family: var(--f-display); font-size: 48px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px; }
.stat-card .stat-num .unit { font-size: 26px; vertical-align: top; margin-left: 2px; font-weight: 800; color: var(--magenta); }
.stat-card .stat-label { font-family: var(--f-body); font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.45; }

/* ---------- Generic feature/benefit cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { border-color: var(--violeta); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card .icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: rgba(124,3,142,.10); color: var(--violeta); display: grid; place-items: center; margin-bottom: 16px; }
.card .icon-wrap .lu { width: 20px; height: 20px; }
.card h3 { font-size: 16px; margin-bottom: 7px; font-family: var(--f-display); font-weight: 900; }
.card p { font-size: 14px; line-height: 1.5; }

/* ---------- Audience split cards (home) ---------- */
.audience { padding: 80px 0; background: var(--bg-soft); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
.aud-card {
  position: relative; border-radius: var(--radius-lg); padding: 30px; overflow: hidden;
  border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--violeta); }
.aud-card.dark { background: var(--violeta-deep); border-color: rgba(255,255,255,.08); color: #fff; }
.aud-card .aud-tag { font-family: var(--f-body); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--violeta); margin-bottom: 14px; }
.aud-card.dark .aud-tag { color: var(--magenta); }
.aud-card h3 { font-size: 23px; margin-bottom: 10px; min-height: 58px; }
.aud-card.dark h3 { color: #fff; }
.aud-card > p { font-size: 15px; color: var(--ink-2); margin-bottom: 16px; min-height: 66px; }
.aud-card.dark > p { color: rgba(255,255,255,.8); }
.aud-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; flex: 1; }
.aud-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.aud-card.dark li { color: rgba(255,255,255,.85); }
.aud-card li .lu { width: 18px; height: 18px; color: var(--violeta); flex: none; margin-top: 2px; }
.aud-card.dark li .lu { color: var(--magenta); }
.aud-card .btn { align-self: flex-start; }
.aud-card.dark .btn-primary { background: #fff; color: var(--violeta-deep); }
.aud-card.dark .btn-primary:hover { background: var(--magenta); color: #fff; }

/* ---------- Ecosystem / integrations ---------- */
.eco { padding: 96px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.eco::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(36,3,66,.05) 1px, transparent 1px); background-size: 24px 24px; -webkit-mask-image: radial-gradient(800px 500px at 50% 40%, #000 0%, transparent 72%); mask-image: radial-gradient(800px 500px at 50% 40%, #000 0%, transparent 72%); pointer-events: none; }
.eco .container { position: relative; z-index: 1; }
.eco h2 .accent { background: linear-gradient(135deg, var(--violeta), var(--violeta-sat) 60%, var(--magenta)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 920px; margin: 0 auto; }
.eco-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.eco-card:hover { border-color: var(--violeta); transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(36,3,66,.2); }
.eco-logo { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; flex: none; font-family: var(--f-display); font-weight: 900; font-size: 13px; color: var(--violeta); }
.eco-logo img { width: 24px; height: 24px; object-fit: contain; }
.eco-meta span { font-size: 11px; color: var(--muted); font-family: var(--f-body); }
.eco-meta strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.eco-foot { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }
.eco-foot a { color: var(--violeta); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.eco-foot a:hover { text-decoration: underline; }
.eco-foot .lu { width: 14px; height: 14px; }
@media (max-width: 920px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .eco { padding: 64px 0; } }

/* ---------- Cards reveal toggle ---------- */
.cards-toggle-wrap { display: flex; justify-content: center; margin-top: 32px; }
.cards-toggle { height: 52px; padding: 0 28px; border-radius: 999px; }
.cards-toggle .chev { transition: transform .25s ease; }
.cards-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.card.extra { animation: card-in .35s ease both; }
@keyframes card-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cards-toggle-wrap.mobile-only { display: none; }
@media (max-width: 700px) {
  .cards-grid.reveal-mobile:not(.show-all) .card:nth-child(n+5) { display: none; }
  .cards-toggle-wrap.mobile-only { display: flex; }
}

/* ---------- Product showcase ---------- */
.showcase { padding: 96px 0; background: var(--bg-soft); overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 980px; margin: 0 auto; }
.showcase-grid.reverse .showcase-text { order: 2; }
.showcase-text h2 { margin-bottom: 16px; text-wrap: balance; }
.showcase-text p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin-bottom: 20px; }
.showcase-text ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.showcase-text li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.showcase-text li .lu { width: 20px; height: 20px; color: var(--violeta); flex: none; margin-top: 1px; }
.showcase-visual { position: relative; }
.showcase-visual img { width: 100%; height: auto; display: block; border: 0; border-radius: 0; box-shadow: none; background: none; filter: drop-shadow(0 20px 36px rgba(36,3,66,.22)); }
/* screenshot com callouts (fundo transparente): transborda a coluna no desktop para ganhar presença */
@media (min-width: 901px) { .showcase-visual img { width: 122%; max-width: none; margin-right: -22%; } }
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .showcase-grid.reverse .showcase-text { order: 0; }
  .showcase-visual { order: -1; }
  /* quando o texto está dividido em lead/tail, a imagem entra entre o título e o texto/CTA */
  .showcase-grid:has(.sc-lead) { display: flex; flex-direction: column; align-items: stretch; gap: 28px; }
  .showcase-grid:has(.sc-lead) .showcase-text { display: contents; }
  .showcase-grid:has(.sc-lead) .sc-lead { order: 1; }
  .showcase-grid:has(.sc-lead) .showcase-visual { order: 2; }
  .showcase-grid:has(.sc-lead) .sc-tail { order: 3; }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 96px 0; background: #fff; }
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; transition: border-color .2s, transform .2s, box-shadow .2s; }
.tcard:hover { border-color: var(--violeta); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tcard .stars { display: flex; gap: 2px; margin-bottom: 16px; color: #f4b400; }
.tcard .stars .lu, .tcard .stars svg { width: 16px; height: 16px; fill: #f4b400; stroke: #f4b400; color: #f4b400; }
.tcard blockquote { margin: 0 0 22px; font-size: 15px; line-height: 1.6; color: var(--ink-2); font-style: italic; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.tcard .who .meta { font-size: 13px; color: var(--muted); }
.tcard .who .meta strong { display: block; color: var(--ink); font-family: var(--f-display); font-weight: 800; font-size: 14px; }
@media (max-width: 900px) { .tg { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .showcase, .testimonials { padding: 64px 0; } }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 640px) {
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: block; padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-top: 1px solid var(--line); }
  .mobile-cta .btn { width: 100%; height: 52px; }
  body.has-mcta { padding-bottom: 78px; }
}

/* ---------- FAQ (compartilhado) ---------- */
.faq { padding: 96px 0; background: var(--bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--violeta); box-shadow: 0 12px 28px -16px rgba(36,3,66,.18); }
.faq-item summary { padding: 22px 26px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--f-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 12px; height: 12px; border-right: 2px solid var(--violeta); border-bottom: 2px solid var(--violeta); transform: rotate(45deg); transition: transform .25s; flex: none; margin-top: -3px; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.faq-item .faq-body strong { color: var(--ink); }
@media (max-width: 540px) {
  .faq { padding: 64px 0; }
  .faq-item summary { font-size: 15px; padding: 18px 20px; }
  .faq-item .faq-body { padding: 0 20px 20px; }
}

/* ---------- Dark CTA ---------- */
.dark-cta { background: var(--violeta-deep); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.dark-cta::before { content: ''; position: absolute; inset: auto auto -200px -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(150,0,255,.32), transparent 60%); pointer-events: none; }
.dark-cta::after { content: ''; position: absolute; inset: -200px -200px auto auto; width: 600px; height: 600px; background: radial-gradient(circle, rgba(254,0,254,.18), transparent 60%); pointer-events: none; }
.dark-cta .container { position: relative; z-index: 1; text-align: center; }
.dark-cta h2 { color: #fff; font-size: clamp(30px, 4.2vw, 50px); max-width: 820px; margin: 18px auto 20px; text-wrap: balance; }
.dark-cta h2 .accent { color: var(--magenta); }
.dark-cta p { color: #cdc1d8; font-size: 18px; max-width: 600px; margin: 0 auto 36px; }
.dark-cta .btn-primary { background: #fff; color: var(--violeta-deep); height: 60px; padding: 0 32px; box-shadow: 0 10px 30px -8px rgba(254,0,254,.4); }
.dark-cta .btn-primary:hover { background: var(--magenta); color: #fff; box-shadow: 0 14px 36px -8px rgba(254,0,254,.6); }
.dark-cta .cta-trust { margin-top: 32px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; color: #b8a8c8; font-size: 13px; }
.dark-cta .cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.dark-cta .cta-trust .lu { width: 16px; height: 16px; color: var(--magenta); }

/* ---------- Footer ---------- */
.site-footer { background: var(--violeta-deep); color: #cdc1d8; padding: 48px 0 40px; font-size: 14px; }
.footer-seals { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; padding: 0 24px 36px; margin: 0 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-seals .seal { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.4; max-width: 260px; }
.footer-seals .seal img { width: auto; object-fit: contain; flex: none; }
.footer-seals .seal.aws img { height: 44px; filter: brightness(0) invert(1); opacity: .85; }
.footer-seals .seal.gptw img { height: 72px; background: #fff; border-radius: 6px; padding: 4px 6px; }
.footer-seals .seal strong { display: block; color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 13px; margin-bottom: 2px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; max-width: 1080px; margin: 0 auto; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #9d8fb0; font-size: 14px; max-width: 280px; }
.footer-brand .footer-seals-mini { margin-top: 22px; }
.footer-copy { grid-column: 1 / -1; margin-top: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #7d6d92; font-size: 12px; }
/* (footer-copy now lives beside the seals in the brand column) */
.footer-col h4 { font-family: var(--f-display); font-weight: 800; font-size: 14px; color: #fff; margin: 0 0 16px; }
.footer-col a { display: block; color: #cdc1d8; text-decoration: none; padding: 6px 0; font-size: 14px; transition: color .15s; }
.footer-col a.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; }
.footer-col a.footer-whatsapp svg { width: 16px; height: 16px; flex: none; color: #25d366; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.fb-left { display: flex; flex-direction: column; gap: 10px; }
.footer-seals-mini { display: flex; align-items: center; gap: 18px; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social a { color: #cdbfe0; display: inline-flex; transition: color .2s, transform .2s; }
.footer-social a:hover { color: #fff; transform: translateY(-1px); }
.footer-social a .lu, .footer-social a svg { width: 19px; height: 19px; }
.footer-seals-mini .seals-divider { width: 1px; height: 26px; background: rgba(255,255,255,.16); flex: none; }
.footer-seals-mini img { width: auto; object-fit: contain; flex: none; }
.footer-seals-mini img.aws { height: 30px; filter: brightness(0) invert(1); opacity: .8; }
.footer-seals-mini img.gptw { height: 52px; background: #fff; border-radius: 6px; padding: 3px 5px; }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal a { color: #9d8fb0; text-decoration: none; font-size: 13px; }
.footer-bottom .legal a:hover { color: #fff; }
.footer-bottom .copy { color: #7d6d92; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 920px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  .stats, .audience, .dark-cta { padding: 64px 0; }
  .audience-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 15px; }
  .stats { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 24px 22px; }
  .stat-card + .stat-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .stat-card .stat-num { font-size: 42px; }
  .cards-grid { grid-template-columns: 1fr; }
  .aud-card { padding: 28px 24px; }
  .aud-card h3 { font-size: 24px; }
  .dark-cta h2 { font-size: 28px; }
  .dark-cta p { font-size: 16px; }
  .dark-cta .cta-trust { gap: 14px 20px; font-size: 12px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { margin-bottom: 12px; }
  .footer-brand p { max-width: 100%; font-size: 13.5px; margin-bottom: 4px; }
  .footer-seals-mini { flex-wrap: wrap; gap: 16px 18px; margin-top: 18px; }
  .footer-seals-mini img.gptw { height: 46px; }
  .footer-seals-mini img.aws { height: 28px; }
  .footer-copy { grid-column: 1 / -1; margin-top: 6px; }
}

/* ---------- Escala progressiva em telas grandes de desktop ----------
   Em telas largas o conteúdo (travado em 1200px) deixava muita margem
   vazia e parecia pequeno. zoom escala TUDO proporcionalmente —
   tipografia, espaços, imagens e container. A escala cresce por faixa
   para acompanhar monitores maiores, sempre mantendo o conteúdo dentro
   da largura (sem scroll horizontal) e sem tocar em mobile/tablet.
   Notebooks (até ~1536px) ficam em escala natural; só monitores
   realmente grandes recebem o zoom. */
@media (min-width: 1600px) { body { zoom: 1.08; } }
@media (min-width: 1800px) { body { zoom: 1.16; } }
@media (min-width: 2100px) { body { zoom: 1.26; } }

/* ---------- Hierarquia de subtítulo no mobile/tablet ----------
   Em larguras 541–768px (faixa comum em webviews/in-app) o subtítulo
   ficava em 22px enquanto a headline trava em ~30px. Estes seletores
   têm especificidade maior que os overrides inline das páginas. */
@media (max-width: 768px) {
  .hero .hero-inner .sub,
  section.page-hero .sub,
  .demo .demo-side > p { font-size: 17px; line-height: 1.5; }
}
@media (max-width: 540px) {
  .hero .hero-inner .sub,
  section.page-hero .sub,
  .demo .demo-side > p { font-size: 16px; line-height: 1.5; }
}

/* ---------- Barra WhatsApp fixa ---------- */
.whatsapp-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(45, 45, 45, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, visibility 0.28s;
}
.whatsapp-bar.is-visible {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-bar { transition: none; }
}
.whatsapp-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  min-height: var(--whatsapp-bar-h);
  padding: 10px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.whatsapp-bar-text {
  margin: 0;
  color: #fff;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
.whatsapp-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.whatsapp-bar-btn:hover {
  background: #1ebe57;
  color: #fff;
}
.whatsapp-bar-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  :root { --whatsapp-bar-h: 72px; }
  .whatsapp-bar-inner {
    gap: 10px;
    padding: 10px 16px;
  }
  .whatsapp-bar-text {
    font-size: 13px;
    max-width: 100%;
  }
  .whatsapp-bar-btn {
    font-size: 13px;
    padding: 9px 14px;
  }
}
@media (max-width: 400px) {
  :root { --whatsapp-bar-h: 88px; }
  .whatsapp-bar-inner {
    flex-direction: column;
    gap: 8px;
  }
}

/* ---------- Aviso de cookies ---------- */
body.has-cookie-banner {
  --cookie-banner-h: 88px;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(36, 3, 66, 0.12);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}
.cookie-banner-copy {
  flex: 1 1 280px;
  min-width: 0;
}
.cookie-banner-title {
  margin: 0 0 4px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.cookie-banner-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.cookie-banner-text strong {
  color: var(--ink-2);
  font-weight: 700;
}
.cookie-banner-text a {
  color: var(--violeta);
  font-weight: 700;
  text-decoration: none;
}
.cookie-banner-text a:hover {
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  background: var(--violeta);
  color: #fff;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(124, 3, 142, 0.55);
  transition: background 0.2s, transform 0.15s, opacity 0.25s;
}
.cookie-banner-btn:hover {
  background: var(--violeta-sat);
  transform: translateY(-1px);
}
.cookie-banner-btn:active {
  transform: translateY(0);
}
.cookie-banner.is-closing {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.has-cookie-banner .whatsapp-bar.is-visible {
  bottom: var(--cookie-banner-h);
}
@media (max-width: 640px) {
  body.has-cookie-banner {
    --cookie-banner-h: 132px;
  }
  .cookie-banner-inner {
    padding: 14px 16px;
    gap: 12px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 400px) {
  body.has-cookie-banner {
    --cookie-banner-h: 148px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner.is-closing {
    transition: none;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0 0;
  background: #fff;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: var(--container, 1120px);
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li + li::before {
  content: '/';
  color: var(--muted-2);
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--violeta);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span[aria-current] {
  color: var(--ink-2);
}
