/* =========================================================
   EvaCloudd — Design System (v2, otimizado para conversão)
   HTML5 + CSS3 puro. Mobile-first. Light/Dark.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Marca — azul EvaCloudd */
  --brand-600: #1568c9;   /* azul "EVA" */
  --brand-500: #1f7ae0;
  --brand-400: #5aa2ee;
  --accent-500: #12a3e0;  /* azul-ciano "cloudd" */
  --accent-400: #35b6ef;
  --grad: linear-gradient(135deg, #1257c0 0%, #16a6e6 100%);
  --grad-soft: linear-gradient(135deg, rgba(21,104,201,.12), rgba(18,163,224,.12));

  /* WhatsApp */
  --wa: #25d366;
  --wa-dark: #1ebe59;

  /* Superfícies (light) */
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --surface: #ffffff;
  --border: #e6e9f2;
  --text: #0f172a;
  --text-soft: #475569;
  --text-mute: #64748b;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.14);
  --shadow-brand: 0 16px 40px rgba(21,104,201,.30);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1320px;
  --nav-h: 72px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

:root[data-theme="dark"] {
  --bg: #05070e;
  --bg-alt: #090d18;
  --surface: #0e1425;
  --border: #1c2740;
  --text: #f2f6ff;
  --text-soft: #aeb9d6;
  --text-mute: #7d89ac;
  --brand-600: #3d8bff;
  --brand-500: #4f97ff;
  --brand-400: #7db2ff;
  --accent-500: #22c3f0;
  --accent-400: #4bd4f7;
  --grad: linear-gradient(135deg, #2f74ff 0%, #22c3f0 100%);
  --grad-soft: linear-gradient(135deg, rgba(47,116,255,.16), rgba(34,195,240,.12));
  --shadow-sm: 0 1px 2px rgba(0,0,0,.5);
  --shadow-md: 0 12px 34px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.65);
  --shadow-brand: 0 20px 60px rgba(34,120,240,.4);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background .3s var(--ease), color .3s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-600); background: var(--grad-soft);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
:root[data-theme="dark"] .eyebrow { color: var(--accent-400); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.section-sub { color: var(--text-soft); font-size: 1.08rem; max-width: 640px; margin: 16px auto 0; }
.text-grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  will-change: transform; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(21,104,201,.42); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-600); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-size: 20px; box-shadow: var(--shadow-brand);
}
.logo b { font-weight: 800; }
.logo span { color: var(--accent-500); }
.logo-img { height: 38px; width: auto; display: block; }
.footer .logo-img { height: 34px; }
@media (max-width: 480px) { .logo-img { height: 32px; } }
/* imagem hero da home */
.hero-img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 50px rgba(21,104,201,.22)); animation: floaty 6s ease-in-out infinite; }
/* imagem que se funde ao fundo (bordas esfumaçadas, sem cartão) */
.hero-img--blend {
  filter: none;
  animation: none;                 /* sem flutuação: máscara + animação contínua travava */
  transform: translateZ(0);        /* camada própria na GPU */
  backface-visibility: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(0deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(0deg, transparent 0, #000 9%, #000 91%, transparent 100%);
          mask-composite: intersect;
}
/* imagens de destaque (pessoas + sistema, fundo transparente) */
.feat-img { width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 44px rgba(21,104,201,.20)); }
/* hero split das subpáginas (texto + imagem) */
.page-hero.hero-split { text-align: left; }
.page-hero.hero-split .container { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
.page-hero.hero-split .feat-img { max-height: 72vh; margin-inline: auto; }
.page-hero.hero-split.hero-up .container { transform: translateY(-5vh); }
.page-hero.hero-split.hero-up .feat-img { transform: scaleY(1.08); transform-origin: center; }
.page-hero.hero-split .feat-img.feat-85 { max-height: 61vh; width: 104%; }
.page-hero.hero-split .hero-cta { justify-content: flex-start; }
.page-hero.hero-split .breadcrumb { text-align: left; }
.page-hero.hero-split p { margin-inline: 0; }
@media (min-width: 900px) {
  .page-hero.hero-split .container { grid-template-columns: 1fr 1fr; }
  .page-hero.hero-split .feat-img { width: 122%; max-width: none; }
}
.page-hero { overflow-x: clip; }
.nav-links { display: none; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px; border-radius: 10px; font-weight: 600; color: var(--text-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-600); background: var(--grad-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  border: 1.5px solid var(--border); color: var(--text-soft); font-size: 18px; transition: .2s;
}
.theme-toggle:hover { color: var(--brand-600); border-color: var(--brand-500); }
.nav-cta { display: none; }
.hamburger {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--border); color: var(--text);
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span::before { transform: translateY(-6px); }
.hamburger span::after { transform: translateY(4px); }
.nav.open .hamburger span { background: transparent; }
.nav.open .hamburger span::before { transform: rotate(45deg); }
.nav.open .hamburger span::after { transform: rotate(-45deg) translateY(-1px); }

/* Menu overlay full-screen (estilo cinematográfico) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: calc(var(--nav-h) + 24px) 28px 40px; display: flex; flex-direction: column; justify-content: center; gap: 2px;
  transform: translateY(-100%); transition: transform .55s var(--ease); overflow-y: auto;
}
.mobile-menu::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 50% at 85% 10%, rgba(34,120,240,.16), transparent 60%), radial-gradient(50% 40% at 5% 90%, rgba(34,195,240,.12), transparent 60%); }
.nav.open + .mobile-menu, .mobile-menu.show { transform: translateY(0); }
.mobile-menu a { font-size: clamp(2rem, 9vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.25; color: var(--text); padding: 4px 0; border-radius: 0;
  opacity: 0; transform: translateY(22px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s; }
.mobile-menu.show a { opacity: 1; transform: none; }
.mobile-menu.show a:nth-child(1){ transition-delay:.10s } .mobile-menu.show a:nth-child(2){ transition-delay:.16s }
.mobile-menu.show a:nth-child(3){ transition-delay:.22s } .mobile-menu.show a:nth-child(4){ transition-delay:.28s }
.mobile-menu.show a:nth-child(5){ transition-delay:.34s } .mobile-menu.show a:nth-child(6){ transition-delay:.40s }
.mobile-menu a:hover { color: var(--accent-400); background: none; }
.mobile-menu .btn { margin-top: 30px; font-size: 1.05rem; align-self: flex-start; padding: 15px 30px; border-radius: 999px; line-height: 1; }
.mobile-menu a.btn-primary, .mobile-menu a.btn-wa { color: #fff; }
.mobile-menu a.btn-primary:hover, .mobile-menu a.btn-wa:hover { color: #fff; background: var(--grad); }
.mobile-menu a.btn-wa:hover { background: var(--wa-dark); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 100px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: -1;
  background: radial-gradient(60% 60% at 70% 20%, rgba(18,163,224,.20), transparent 60%),
              radial-gradient(50% 55% at 20% 10%, rgba(21,104,201,.22), transparent 60%);
  filter: blur(10px);
}
.hero-grid { display: grid; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
.hero p.lead { font-size: 1.18rem; color: var(--text-soft); margin-top: 20px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; color: var(--text-mute); font-size: .92rem; }
.hero-trust .stars { color: #f59e0b; letter-spacing: 2px; }
.hero-visual {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px;
}
.hero-visual .chat-bubble {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; opacity: 0;
  animation: rise .6s var(--ease) forwards;
}
.hero-visual .chat-bubble:nth-child(2){ animation-delay:.2s }
.hero-visual .chat-bubble:nth-child(3){ animation-delay:.4s; flex-direction: row-reverse; }
.hero-visual .chat-bubble:nth-child(4){ animation-delay:.6s }
.chat-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color:#fff; font-size:16px; flex-shrink:0; }
.chat-text { background: var(--bg-alt); padding: 10px 14px; border-radius: 14px; font-size: .92rem; color: var(--text-soft); max-width: 78%; }
.chat-bubble:nth-child(3) .chat-text { background: var(--grad); color: #fff; }
.chat-bubble:nth-child(3) .chat-avatar { background: var(--wa); }

/* Floating badge */
.float-badge {
  position: absolute; right: -14px; top: 30px; background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); border-radius: 14px; padding: 10px 14px; font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px; animation: floaty 4s ease-in-out infinite;
}
.float-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.2); }

/* ---------- Logos / faixa ---------- */
.logos { padding: 34px 0; border-block: 1px solid var(--border); }
.logos p { text-align: center; color: var(--text-mute); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-weight: 700; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 56px); opacity: .7; }
.logos-row span { font-weight: 800; font-size: 1.15rem; color: var(--text-mute); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat .num { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900; display: flex; align-items: center; justify-content: center; min-height: 3.2rem; line-height: 1; }
.stat .lbl { color: var(--text-mute); font-size: .92rem; margin-top: 4px; }

/* ---------- Cards de produto ---------- */
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-soft); display: grid; place-items: center; font-size: 26px; margin-bottom: 20px; }
.card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.card .tag { font-size: .78rem; font-weight: 700; color: var(--accent-500); text-transform: uppercase; letter-spacing: .06em; }
.card p { color: var(--text-soft); margin: 12px 0 18px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; color: var(--text-soft); }
.feature-list .check { color: var(--wa); flex-shrink: 0; margin-top: 3px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--brand-600); margin-top: 8px; transition: gap .2s; }
.card-link:hover { gap: 12px; }

/* ---------- Benefícios ---------- */
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit .b-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.benefit h4 { font-size: 1.12rem; margin-bottom: 4px; }
.benefit p { color: var(--text-soft); font-size: .96rem; }
.grid-2 { display: grid; gap: 30px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Split (produto detalhe) ---------- */
.split { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
.split .media { background: var(--grad-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; min-height: 260px; display: grid; place-items: center; }
.mock { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 18px; }
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mock-line { height: 12px; border-radius: 6px; background: var(--bg-alt); margin: 8px 0; }
.mock-line.w1 { width: 90%; } .mock-line.w2 { width: 65%; } .mock-line.w3 { width: 78%; }
.mock-line.grad { background: var(--grad); width: 45%; height: 30px; border-radius: 8px; }

/* ---------- Screenshot (moldura tipo navegador) ---------- */
.shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--surface); }
.shot-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2e6f0; }
.shot-bar i:nth-child(1){ background:#ff5f57 } .shot-bar i:nth-child(2){ background:#febc2e } .shot-bar i:nth-child(3){ background:#28c840 }
.shot-bar .url { margin-left: 10px; font-size: .78rem; color: var(--text-mute); background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 4px 12px; }
.shot img { display: block; width: 100%; height: auto; }
.shot-caption { text-align: center; font-size: .88rem; color: var(--text-mute); margin-top: 14px; }
/* Showcase: imagem grande com texto ao lado (empilha no mobile) */
.showcase { display: grid; gap: 34px; grid-template-columns: 1fr; align-items: center; }
.showcase > .shot { order: 2; }               /* mobile: imagem abaixo do texto */
.showcase .shot img { width: 100%; }
@media (min-width: 900px) {
  .showcase { grid-template-columns: 1.3fr 1fr; }
  .showcase > .shot { order: 0; }             /* imagem à esquerda */
  .showcase.rev { grid-template-columns: 1fr 1.3fr; }
  .showcase.rev > .shot { order: 2; }         /* imagem à direita */
}

/* ---------- Mockups de SITE (ClouddPages) ---------- */
.sitewrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #fff; }
.sitewrap .shot-bar { background: #eef1f8; }
.sitewrap .shot-bar .url { background:#fff; }
.site { background: #fff; color: #0f172a; font-size: 12px; }
.site-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid #eef1f8; }
.site-nav .brand { font-weight: 800; font-size: 14px; }
.site-nav .links { display: flex; gap: 12px; color: #64748b; }
.site-nav .cta { background: var(--accent); color:#fff; padding: 5px 12px; border-radius: 999px; font-weight: 700; }
.site-hero { padding: 30px 22px; display: grid; gap: 16px; grid-template-columns: 1.2fr .8fr; align-items: center; background: linear-gradient(135deg, var(--accent-soft), transparent); }
.site-hero h3 { font-size: 20px; line-height: 1.15; color:#0f172a; }
.site-hero p { color:#64748b; margin: 8px 0; }
.site-hero .b { display:inline-block; background: var(--accent); color:#fff; padding: 7px 14px; border-radius: 8px; font-weight:700; }
.site-hero .art { height: 96px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), #22d3ee); }
.site-strip { display:flex; gap:10px; padding: 16px 22px; }
.site-strip .c { flex:1; height: 62px; border-radius: 10px; background:#f1f5f9; border:1px solid #eef1f8; }
.site-strip .c .t { height: 8px; width: 60%; background: var(--accent); border-radius: 4px; margin: 12px; }
:root[data-theme="dark"] .site, :root[data-theme="dark"] .sitewrap { background:#0f162b; color:#eef2ff; }
:root[data-theme="dark"] .site-nav { border-color:#23304f; }
:root[data-theme="dark"] .site-strip .c { background:#121a30; border-color:#23304f; }
:root[data-theme="dark"] .site-hero h3 { color:#eef2ff; }

/* variações de cor por exemplo */
.acc-indigo { --accent:#4f46e5; --accent-soft:rgba(79,70,229,.12); }
.acc-emerald { --accent:#059669; --accent-soft:rgba(5,150,105,.12); }
.acc-rose { --accent:#e11d48; --accent-soft:rgba(225,29,72,.12); }
.acc-amber { --accent:#d97706; --accent-soft:rgba(217,119,6,.12); }
.acc-cyan { --accent:#0891b2; --accent-soft:rgba(8,145,178,.12); }

/* portfolio grid */
.portfolio { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .portfolio { grid-template-columns: 1fr 1fr; } }
.portfolio .tag-lbl { display:block; margin-top: 12px; font-weight: 700; }
.portfolio .tag-lbl small { display:block; color: var(--text-mute); font-weight: 500; }

/* Notebook + celular (responsivo) */
.devices { position: relative; }
.laptop { background:#0f162b; border-radius: 14px 14px 0 0; padding: 10px; border:1px solid var(--border); }
.laptop .screen { border-radius: 8px; overflow:hidden; background:#fff; }
.laptop .base { height: 14px; background: linear-gradient(#cbd3e6,#9aa6c4); border-radius: 0 0 12px 12px; margin: 0 -18px; }
.phone { position:absolute; right: -6px; bottom: -10px; width: 116px; background:#0f162b; border-radius: 16px; padding: 7px; border:1px solid var(--border); box-shadow: var(--shadow-lg); }
.phone .screen { border-radius: 10px; overflow:hidden; background:#fff; }

/* Passos (processo) */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); position:absolute; top:-16px; left:22px; width:36px; height:36px; border-radius:10px; background: var(--grad); color:#fff; display:grid; place-items:center; font-weight:800; box-shadow: var(--shadow-brand); }
.step h4 { margin: 10px 0 6px; }
.step p { color: var(--text-soft); font-size:.95rem; }

/* Diagrama de integração */
.intmap { display:flex; align-items:center; justify-content:center; gap: 14px; flex-wrap: wrap; }
.intnode { background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; font-weight:700; box-shadow: var(--shadow-sm); display:flex; align-items:center; gap:10px; }
.intnode .em { font-size: 22px; }
.inthub { background: var(--grad); color:#fff; border:none; box-shadow: var(--shadow-brand); font-size:1.05rem; padding: 20px 26px; }
.intarrow { color: var(--brand-500); font-size: 24px; font-weight: 800; }
.intcol { display:flex; flex-direction:column; gap:10px; }

/* ---------- Mockup de Agentes de IA (dark fixo) ---------- */
.ai-mock { background: #0b1020; border-color: #23304f; }
.ai-mock .shot-bar { background: #0f162b; border-color: #23304f; }
.ai-mock .shot-bar .url { background: #121a30; border-color: #23304f; color: #94a3c4; }
.ai-body { padding: 22px; color: #eef2ff; }
.ai-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ai-ava { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,#4f46e5,#06b6d4); display: grid; place-items: center; font-size: 22px; }
.ai-head b { font-size: 1.05rem; }
.ai-head small { color: #22d3ee; }
.ai-field { background: #121a30; border: 1px solid #23304f; border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; }
.ai-field .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #94a3c4; margin-bottom: 6px; }
.ai-field .val { font-size: .9rem; color: #c2cbe6; line-height: 1.5; }
.ai-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ai-tag { font-size: .78rem; background: rgba(99,102,241,.18); color: #a5b4fc; border: 1px solid #2a3a63; padding: 5px 10px; border-radius: 999px; }
.ai-toggle { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #c2cbe6; margin-top: 6px; }
.ai-sw { width: 34px; height: 19px; border-radius: 999px; background: #25d366; position: relative; flex-shrink: 0; }
.ai-sw::after { content: ""; position: absolute; top: 2px; right: 2px; width: 15px; height: 15px; border-radius: 50%; background: #fff; }
.ai-chat { margin-top: 14px; background: #121a30; border: 1px solid #23304f; border-radius: 12px; padding: 12px; }
.ai-msg { display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.ai-msg .b { font-size: .84rem; padding: 8px 11px; border-radius: 12px; max-width: 82%; line-height: 1.45; }
.ai-msg.u { flex-direction: row-reverse; }
.ai-msg.u .b { background: linear-gradient(135deg,#4f46e5,#06b6d4); color: #fff; }
.ai-msg.a .b { background: #1c2742; color: #d7def2; }
.ai-msg .ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; flex-shrink: 0; background: #1c2742; }
.ai-msg.a .ic { background: linear-gradient(135deg,#4f46e5,#06b6d4); }

/* ---------- Recursos por categoria ---------- */
.feat-cat { margin-bottom: 30px; }
.feat-cat h4 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: var(--brand-600); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }
:root[data-theme="dark"] .feat-cat h4 { color: var(--accent-400); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: .9rem; font-weight: 500; color: var(--text-soft); transition: transform .2s, border-color .2s; }
.chip:hover { transform: translateY(-2px); border-color: var(--brand-500); }
.chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

/* ---------- Depoimentos ---------- */
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.quote .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 10px; }
.quote p { color: var(--text-soft); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color:#fff; font-weight: 800; }
.quote .who b { display: block; font-size: .95rem; }
.quote .who small { color: var(--text-mute); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: var(--surface); overflow: hidden; transition: box-shadow .3s; }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 20px 22px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--grad-soft); color: var(--brand-600); transition: transform .3s; font-size: 18px; }
.faq-item[open] .faq-q .ic { transform: rotate(45deg); }
.faq-a { padding: 0 22px 22px; color: var(--text-soft); }

/* ---------- CTA final ---------- */
.cta-band { position: relative; background: var(--grad); border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 64px); text-align: center; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 80% 0%, rgba(255,255,255,.25), transparent 60%); }
.cta-band h2 { color: #fff; font-size: clamp(1.28rem, 3.2vw, 2rem); position: relative; }
.cta-band p { color: rgba(255,255,255,.9); margin: 14px auto 0; max-width: 560px; position: relative; }
.cta-band .btn { position: relative; margin-top: 28px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-600); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.cta-band .btn-primary:hover { background: #fff; }

/* ---------- Formulário de lead ---------- */
.lead-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.lead-card h3 { font-size: 1.5rem; }
.lead-card .sub { color: var(--text-soft); margin: 8px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text); font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(99,102,241,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .82rem; color: var(--text-mute); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer h5 { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; color: var(--text); }
.footer a, .footer li { color: var(--text-soft); padding: 5px 0; display: block; transition: color .2s; }
.footer a:hover { color: var(--brand-600); }
/* coluna de contato: cada informação em sua própria linha, alinhada */
.footer-grid span { display: block; color: var(--text-soft); font-size: .94rem; line-height: 1.55; padding: 5px 0 5px 1.7em; text-indent: -1.7em; }
.footer-grid > div:last-child > a { padding-left: 1.7em; text-indent: -1.7em; }
.footer-grid .socials a { padding: 0; text-indent: 0; }
.footer .brand-col p { color: var(--text-soft); margin: 14px 0; font-size: .95rem; }
.socials { display: flex; gap: 11px; margin-top: 8px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--surface); color: var(--brand-600); display: grid; place-items: center; font-size: 20px; transition: transform .2s, background .2s, color .2s, border-color .2s; }
:root[data-theme="dark"] .socials a { color: var(--accent-400); }
.socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; display: flex; flex-direction: column; gap: 8px; color: var(--text-mute); font-size: .86rem; text-align: center; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; font-size: 30px;
  box-shadow: 0 12px 30px rgba(37,211,102,.5); animation: pulse 2.4s infinite;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.08); transition: transform .2s; }

/* ---------- Cookie ---------- */
.cookie { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 95; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; max-width: 460px; transform: translateY(160%); transition: transform .4s var(--ease); }
.cookie.show { transform: translateY(0); }
.cookie p { font-size: .9rem; color: var(--text-soft); }
.cookie p a { color: var(--brand-600); font-weight: 700; }
:root[data-theme="dark"] .cookie p a { color: var(--accent-400); }
.cookie .row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cookie-link { font-size: .85rem; font-weight: 600; color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.cookie-link:hover { opacity: .8; }
:root[data-theme="dark"] .cookie-link { color: var(--accent-400); }

/* ---------- Page hero (subpáginas) ---------- */
.page-hero { padding: clamp(96px, 14vh, 150px) 0 clamp(46px, 6vw, 68px); text-align: center; position: relative; }
.page-hero.hero-split { min-height: calc(100svh - var(--nav-h)); display: flex; flex-direction: column; justify-content: center; padding: 0; }
.page-hero::before { content:""; position:absolute; inset:0 0 auto 0; height: 100%; z-index:-1; background: var(--grad-soft); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--text-soft); font-size: 1.12rem; max-width: 620px; margin: 16px auto 0; }
.breadcrumb { font-size: .85rem; color: var(--text-mute); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--brand-600); }

/* ---------- Animações ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0% { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 12px 30px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,0);} }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsivo ---------- */
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .cookie { flex-direction: row; align-items: center; justify-content: flex-start; gap: 22px; right: auto; max-width: min(880px, calc(100% - 40px)); padding: 16px 24px; }
  .cookie p { flex: 0 1 auto; margin: 0; }
  .cookie .row { flex-shrink: 0; flex-wrap: nowrap; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hero-lead-grid { grid-template-columns: 1.1fr .9fr; }
}
.hero-lead-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }

/* =========================================================
   TEMA CINEMATOGRÁFICO (v3) — estilo dark inspirado em agências
   ========================================================= */
:root[data-theme="dark"] body { background: var(--bg); }
/* brilho ambiente em camada FIXA (sem repintar no scroll = suave) */
:root[data-theme="dark"] body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(55% 45% at 82% -8%, rgba(34,120,240,.14), transparent 60%),
    radial-gradient(45% 40% at 3% 12%, rgba(34,195,240,.10), transparent 60%);
}
/* tipografia maior e mais dramática */
.hero h1 { font-size: clamp(1.84rem, 3.68vw, 2.8rem); letter-spacing: -.03em; line-height: 1.1; }
.section-title { font-size: clamp(1.6rem, 4.16vw, 2.96rem); letter-spacing: -.03em; }
.page-hero h1 { font-size: clamp(1.68rem, 3.36vw, 2.56rem); letter-spacing: -.03em; line-height: 1.1; }
.hero p.lead { font-size: 1.22rem; }

/* nav em vidro escuro */
:root[data-theme="dark"] .nav { background: color-mix(in srgb, var(--bg) 68%, transparent); }
:root[data-theme="dark"] .nav.scrolled { background: color-mix(in srgb, var(--bg) 86%, transparent); border-color: var(--border); }
:root[data-theme="dark"] .nav-links a { color: var(--text-soft); }
:root[data-theme="dark"] .nav-links a:hover, :root[data-theme="dark"] .nav-links a.active { color: #fff; background: rgba(47,116,255,.12); }

/* eyebrow com brilho */
:root[data-theme="dark"] .eyebrow { background: rgba(47,116,255,.12); color: var(--accent-400); border: 1px solid rgba(47,116,255,.28); }

/* text gradient mais brilhante */
:root[data-theme="dark"] .text-grad { background: linear-gradient(100deg, #6aa8ff, #22c3f0); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* botões */
:root[data-theme="dark"] .btn-ghost { border-color: rgba(255,255,255,.18); color: var(--text); }
:root[data-theme="dark"] .btn-ghost:hover { border-color: var(--accent-400); color: var(--accent-400); background: rgba(47,116,255,.08); }

/* cards e superfícies com leve brilho superior + glow no hover */
:root[data-theme="dark"] .card { background: linear-gradient(180deg, rgba(255,255,255,.035), transparent 40%), var(--surface); }
:root[data-theme="dark"] .card:hover { box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(47,116,255,.35); }
:root[data-theme="dark"] .theme-toggle, :root[data-theme="dark"] .hamburger { border-color: var(--border); }
:root[data-theme="dark"] .field input, :root[data-theme="dark"] .field select, :root[data-theme="dark"] .field textarea { background: #0a1020; }

/* faixa de logos mais discreta */
:root[data-theme="dark"] .logos-row span { color: var(--text-mute); }

/* ---------- Marquee (texto correndo) ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: var(--bg-alt); padding: 24px 0; }
.marquee__track { display: flex; width: max-content; animation: marq 30s linear infinite; }
.marquee__track > span { display: inline-flex; align-items: center; gap: 54px; padding-right: 54px; white-space: nowrap;
  font-size: clamp(1.1rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -.01em; color: var(--text-soft); }
.marquee__track b { color: transparent; background: linear-gradient(100deg, #6aa8ff, #22c3f0); -webkit-background-clip: text; background-clip: text; }
.marquee__track .sep { color: var(--accent-500); font-weight: 900; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Wordmark gigante ---------- */
.bigmark { overflow: hidden; text-align: center; padding: 20px 0 0; line-height: .82; }
.bigmark span { display: block; font-size: clamp(3.4rem, 20vw, 17rem); font-weight: 900; letter-spacing: -.05em;
  background: linear-gradient(180deg, rgba(125,178,255,.20), rgba(125,178,255,.02)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* imagens de destaque mais integradas no dark */
:root[data-theme="dark"] .feat-img { filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)); }

@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================
   EFEITOS DE NAVEGAÇÃO / SCROLL (estilo cinematográfico)
   ========================================================= */
html { scroll-behavior: smooth; }

/* cursor com brilho azul (segue o mouse) */
.cursor-glow { position: fixed; top: 0; left: 0; width: 26px; height: 26px; border-radius: 50%; pointer-events: none; z-index: 9999;
  background: radial-gradient(circle, rgba(90,162,255,.55), rgba(34,195,240,0) 70%); mix-blend-mode: screen;
  transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), opacity .3s; opacity: 0; }
.cursor-glow.on { opacity: 1; }
.cursor-glow.big { width: 90px; height: 90px; }

/* navbar some ao descer, aparece ao subir */
.nav { transition: transform .45s var(--ease), background .3s, border-color .3s, box-shadow .3s; }
.nav.hide { transform: translateY(-115%); }

/* hero em tela cheia */
.hero-cine { min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; position: relative; }
.scrolldown { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); color: var(--text-mute);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scrolldown i { width: 1px; height: 42px; background: linear-gradient(var(--accent-500), transparent); animation: scrolldash 1.9s ease-in-out infinite; display: block; }
@keyframes scrolldash { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* revelação em "wipe" para imagens/mídia */
.reveal-img { clip-path: inset(0 0 100% 0); opacity: .15; transition: clip-path 1.05s var(--ease), opacity .9s var(--ease); }
.reveal-img.in { clip-path: inset(0 0 0 0); opacity: 1; }

/* upgrade da revelação padrão: leve escala + blur saindo */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal, .reveal-img, [data-parallax], .hero-img { will-change: transform; }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* seção-declaração que "gruda" (pin) enquanto rola */
.pin-wrap { position: relative; }
.statement { min-height: 100vh; display: grid; place-items: center; text-align: center; position: -webkit-sticky; position: sticky; top: 0; padding: 80px 0; }
.statement h2 { font-size: clamp(1.68rem, 5.2vw, 4.16rem); max-width: 1120px; margin-inline: auto; letter-spacing: -.03em; line-height: 1.08; }
.statement .muted { color: var(--text-mute); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .scrolldown i { animation: none; }
}

/* ---------- Página legal (política de privacidade) ---------- */
.legal { color: var(--text-soft); line-height: 1.75; }
.legal .legal-updated { color: var(--text-mute); font-size: .9rem; margin-bottom: 22px; }
.legal h2 { font-size: 1.3rem; color: var(--text); margin: 32px 0 10px; letter-spacing: -.01em; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--brand-600); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
:root[data-theme="dark"] .legal a { color: var(--accent-400); }

/* =========================================================
   MOBILE — compactar espaçamentos (menos "vazão" entre blocos)
   ========================================================= */
@media (max-width: 720px) {
  .section { padding: 46px 0; }
  /* foto do banner Sobre: 10% mais baixa só no mobile */
  .page-hero.hero-split.hero-up .feat-img { transform: scaleY(0.9); transform-origin: center; }
  .hero-cine { min-height: auto; }
  .page-hero, .page-hero.hero-split { min-height: auto; padding: 88px 0 44px; }
  .page-hero .scrolldown { display: none; }
  .hero { padding: 40px 0 44px; }
  .hero-grid { gap: 26px; }
  .scrolldown { display: none; }              /* hero deixa de ter altura fixa no mobile */
  .pin-wrap { min-height: auto !important; }  /* remove o "gap" grande do manifesto */
  .statement { min-height: auto; padding: 46px 0; position: static; }
  .statement h2 { font-size: clamp(1.28rem, 5.6vw, 1.84rem); }
  .showcase { margin-top: 30px !important; gap: 22px; }
  .grid-2, .grid-3, .grid-4 { gap: 18px; }
  .marquee { padding: 18px 0; }
  .bigmark { padding-top: 6px; }
  .stats { gap: 14px; }
  /* botões grandes: reduzir pra caber em 1 linha no mobile (sem quebrar) */
  .btn-lg { padding: 15px 22px; font-size: .95rem; }
}
@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .cta-band { padding: 34px 18px; }
  .btn-lg { padding: 13px 16px; font-size: .84rem; }
}

/* ===== Carrossel de logos de clientes ===== */
.clients { padding-bottom: 56px; }
.logos-marquee {
  position: relative;
  width: 100%;
  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);
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  animation: logos-scroll 55s linear infinite;
  will-change: transform;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 120px;
  padding: 10px 22px;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 14px;
}
.logo-item img {
  display: block;
  max-width: 186px;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .82;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
:root[data-theme="dark"] .logo-item {
  background: #fff;
  border-radius: 14px;
}
:root[data-theme="dark"] .logo-item img { filter: none; opacity: .95; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}
@media (max-width: 720px) {
  .logo-item { width: 168px; height: 100px; padding: 8px 16px; }
  .logo-item img { max-width: 148px; max-height: 76px; }
  .logos-track { gap: 12px; animation-duration: 46s; }
}

/* ===== Bloco fundador / trajetória (Sobre) ===== */
.founder-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.founder-text p { color: var(--text-soft); margin-top: 15px; line-height: 1.75; }
.founder-text p:first-child { margin-top: 20px; font-weight: 600; color: var(--text); font-size: 1.05rem; }
.founder-text strong { color: var(--text); }
