/* ==========================================================================
   Strapa.ai — site
   Paleta: navy #0B1A2F · card #12263F · royal #1A41B1 · elétrico #2E6BFF
   Tipos: Space Grotesk (display) · Inter (corpo)
   ========================================================================== */

:root {
  --navy: #0B1A2F;
  --navy-deep: #081221;
  --card: #12263F;
  --card-2: #16304e;
  --royal: #1A41B1;
  --elec: #2E6BFF;
  --ink: #F5F8FF;
  --muted: rgba(245, 248, 255, 0.62);
  --faint: rgba(245, 248, 255, 0.40);
  --line: rgba(245, 248, 255, 0.10);
  --line-strong: rgba(245, 248, 255, 0.18);

  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(46, 107, 255, 0.35), 0 18px 50px rgba(46, 107, 255, 0.22);
}

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

/* #02040a fica SÓ no html (propaga pra raiz e pro elástico do pull-to-refresh).
   O body precisa ser transparente: fundo no body pinta NA FRENTE da camada
   .bg (z-index negativo) e cobre as partículas. */
html { scroll-behavior: smooth; overflow-x: clip; background: #02040a; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: transparent;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overflow-wrap: break-word;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; overflow-wrap: break-word; }

:focus-visible {
  outline: 2px solid var(--elec);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--elec); color: #fff; padding: 10px 16px;
  border-radius: 10px; font-weight: 600; transition: top 0.2s;
}
.skip:focus { top: 16px; }

/* ---------- Ambient background ---------------------------------------- */
/* Camada fixa atrás do site todo: rede de partículas do hero (script.js) */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background: #02040a;
}

/* ---------- Header (pílula flutuante) ---------------------------------- */
.site-header {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; flex-direction: column; align-items: center;
  padding: 9px 10px 9px 20px;
  background: rgba(10, 20, 38, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  max-width: calc(100% - 28px);
  transition: border-radius 0.3s var(--ease), background 0.3s;
}
.site-header.scrolled { background: rgba(9, 18, 33, 0.80); }
.site-header.menu-open { border-radius: 20px; }

.header-row { display: flex; align-items: center; gap: 30px; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }
.brand-mark { width: 28px; height: 28px; }
.brand-dot { color: var(--elec); }

/* Logo fixa no canto superior esquerdo (some ao scrollar, fica só a pílula) */
.brand--corner { position: fixed; top: 20px; left: 56px; z-index: 110; font-size: 28px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.brand--corner .brand-mark { width: 52px; height: 52px; }
.brand--corner.is-hidden { opacity: 0; transform: translateY(-10px); pointer-events: none; }

/* Links com rolagem vertical no hover */
.nav { display: flex; gap: 26px; }
.nav-link { display: inline-flex; align-items: flex-start; height: 22px; overflow: hidden; font-size: 14px; }
.nav-flip { display: flex; flex-direction: column; transition: transform 0.35s var(--ease); }
.nav-flip span { display: block; height: 22px; line-height: 22px; }
.nav-flip span:first-child { color: var(--muted); }
.nav-flip span + span { color: var(--ink); }
.nav-link:hover .nav-flip, .nav-link:focus-visible .nav-flip { transform: translateY(-22px); }

/* CTA em pílula com brilho */
.header-actions { position: relative; display: flex; align-items: center; }
.cta-glow { position: absolute; inset: -6px; border-radius: 999px; background: var(--elec);
  opacity: 0.35; filter: blur(14px); pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease, inset 0.3s ease; }
.header-actions:hover .cta-glow { opacity: 0.6; filter: blur(18px); inset: -9px; }
.pill-cta { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, #4b82ff, var(--elec));
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s var(--ease), filter 0.2s; }
.pill-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* ---------- Buttons --------------------------------------------------- */
.btn {
  --bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--line-strong); background: var(--bg);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s, border-color 0.25s, color 0.2s;
  will-change: transform;
}
.btn--solid {
  background: var(--elec); border-color: var(--elec); color: #fff;
  box-shadow: 0 10px 30px rgba(46, 107, 255, 0.35);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(46, 107, 255, 0.5); }
.btn--ghost { color: var(--ink); background: rgba(245, 248, 255, 0.03); }
.btn--ghost:hover { border-color: var(--elec); background: rgba(46, 107, 255, 0.10); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 16px; }

/* ---------- Menu mobile (expande dentro da pílula) --------------------- */
.menu-toggle { display: none; margin-left: auto; width: 36px; height: 36px;
  background: transparent; border: none; border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.header-menu { width: 100%; display: flex; flex-direction: column; align-items: center;
  max-height: 0; opacity: 0; overflow: hidden; pointer-events: none;
  transition: max-height 0.35s var(--ease), opacity 0.3s, padding 0.3s; }
.site-header.menu-open .header-menu { max-height: 460px; opacity: 1; padding: 2px 8px 8px; pointer-events: auto; }
.header-menu nav { display: flex; flex-direction: column; align-items: center; width: 100%; }
.header-menu nav a { padding: 10px; width: 100%; text-align: center; color: var(--ink);
  font-size: 15.5px; border-radius: 12px; transition: color 0.2s, background 0.2s; }
.header-menu nav a:hover { background: rgba(46, 107, 255, 0.10); }
.pill-cta--block { width: 100%; margin-top: 8px; padding: 12px 18px; }

/* ---------- Shared section scaffolding -------------------------------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(58px, 8vw, 104px) var(--pad); }
.section-head { max-width: 820px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head h2 { font-size: clamp(32px, 5.2vw, 58px); margin-top: 22px; text-wrap: balance; max-width: 17ch; }
.section-note { color: var(--muted); font-size: 17px; margin-top: 20px; max-width: 620px; }

/* Kicker da casa: uppercase espaçado (mesmo DNA das propostas) */
.eyebrow { font-size: 16px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--elec); }

/* ---------- HERO (partículas conectadas sobre preto) ------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  justify-content: center; padding: 140px var(--pad) 110px; }
.shot .hero { min-height: 780px; } /* altura fixa só p/ captura de tela */

#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-inner { position: relative; z-index: 2; max-width: 920px; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--ink); background: rgba(46, 107, 255, 0.10);
  border: 1px solid rgba(46, 107, 255, 0.28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  margin-bottom: 28px; }
.hero-badge svg { color: var(--elec); flex: 0 0 auto; }

.hero-title { font-size: clamp(42px, 7.2vw, 84px); margin: 0 0 26px; max-width: 14ch;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 30%, #8fa3c8);
  -webkit-background-clip: text; background-clip: text;
  color: #fff; -webkit-text-fill-color: transparent; }
.hero-title em { font-style: normal; color: var(--elec); -webkit-text-fill-color: var(--elec); }

.hero-sub { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); max-width: 580px; margin: 0 auto; }
.hero-actions { display: flex; gap: 14px; margin: 36px 0 0; flex-wrap: wrap; justify-content: center; }

/* ---------- SOBRE (manifesto + conversa de WhatsApp simulada) ---------- */
.sobre-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.sobre-lead { font-size: clamp(18px, 2.4vw, 23px); line-height: 1.55; color: var(--ink); font-weight: 400; }

.beliefs { list-style: none; margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; }
.belief { border-top: 1px solid var(--line-strong); padding-top: 16px; }
.belief h3 { font-size: 17px; margin-bottom: 6px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px; }
.belief h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--elec); flex: 0 0 auto; }
.belief p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.chat { background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 96px; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  background: rgba(2, 4, 10, 0.45); border-bottom: 1px solid var(--line); }
.chat-head img { border-radius: 50%; background: var(--navy); }
.chat-id { display: flex; flex-direction: column; line-height: 1.35; }
.chat-id strong { font-size: 15px; }
.chat-id span { font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--elec); display: inline-block; }
.chat-body { padding: 22px 20px 8px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 85%; padding: 11px 15px; font-size: 14.5px; line-height: 1.55; border-radius: 14px; }
.msg-in { align-self: flex-start; background: rgba(245, 248, 255, 0.07); color: var(--ink);
  border-bottom-left-radius: 4px; }
.msg-out { align-self: flex-end; background: var(--elec); color: #fff; border-bottom-right-radius: 4px; }
.chat-cta { display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 14px 20px 20px; padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(46, 107, 255, 0.5); color: var(--elec); font-weight: 600; font-size: 14.5px;
  transition: background 0.25s, color 0.25s; }
.chat-cta:hover { background: var(--elec); color: #fff; }
.chat-cta span { transition: transform 0.25s var(--ease); }
.chat-cta:hover span { transform: translateX(4px); }

/* ---------- SOLUÇÕES -------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(500px 220px at var(--cx, 50%) var(--cy, 0%), rgba(46,107,255,0.16), transparent 60%);
  transition: opacity 0.3s; pointer-events: none; }
.card:hover { transform: translateY(-6px); border-color: rgba(46,107,255,0.5);
  box-shadow: var(--glow); background: var(--card-2); }
.card:hover::before { opacity: 1; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--royal), #12224f); color: #cfe0ff; margin-bottom: 20px;
  border: 1px solid rgba(46,107,255,0.35); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- PROCESSO -------------------------------------------------- */
/* ---------- MÉTODO 3C -------------------------------------------------- */
.tres-c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.c-card { position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--card); padding: 100px 28px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s; }
.c-card:hover { transform: translateY(-4px); border-color: rgba(46, 107, 255, 0.5); }
.c-ghost { position: absolute; top: -38px; left: 12px; line-height: 1;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 175px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(46, 107, 255, 0.4);
  pointer-events: none; user-select: none; }
.c-card h3 { font-size: 27px; margin-bottom: 10px; position: relative; }
.c-card h3 b { color: var(--elec); }
.c-card p { color: var(--muted); font-size: 15px; line-height: 1.65; position: relative; }

.flow { list-style: none; position: relative; max-width: 860px; }
.flow::before { content: ""; position: absolute; left: 21px; top: 12px; bottom: 12px;
  width: 1px; background: linear-gradient(var(--elec), var(--line) 30%, var(--line)); }
.flow-step { position: relative; padding: 0 0 clamp(36px, 5vw, 52px) 76px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-num { position: absolute; left: 0; top: 0; width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; color: var(--elec);
  background: var(--navy-deep); border: 1px solid rgba(46, 107, 255, 0.5); }
.flow-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.flow-head h3 { font-size: clamp(21px, 2.6vw, 26px); }
.flow-when { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 12px; }
.flow-body > p { color: var(--muted); font-size: 16px; max-width: 620px; }
.flow-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; max-width: 620px; }
.flow-split span { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 6px; }
.flow-you, .flow-me { border-left: 2px solid var(--line-strong); padding-left: 14px; }
.flow-you span { color: var(--faint); }
.flow-me { border-left-color: var(--elec); }
.flow-me span { color: var(--elec); }
.flow-split p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- REFERÊNCIAS ----------------------------------------------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-slot { min-height: 240px; border-radius: var(--radius-lg); padding: 26px;
  border: 1px dashed var(--line-strong); background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0 12px, transparent 12px 24px);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.3s, transform 0.3s var(--ease); }
.case-slot:hover { border-color: rgba(46,107,255,0.5); transform: translateY(-4px); }
.case-tag { font-family: 'Space Grotesk', sans-serif; font-size: 14px; letter-spacing: 0.08em; color: var(--ink); }
.case-soon { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
  align-self: flex-start; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; }
.case-slot--cta { border-style: solid; background: linear-gradient(160deg, var(--card), rgba(26,65,177,0.18)); }
.case-slot--cta p { color: var(--muted); font-size: 15px; }
.case-card { min-height: 240px; border-radius: var(--radius-lg); padding: 26px;
  border: 1px solid rgba(46, 107, 255, 0.45);
  background: linear-gradient(160deg, var(--card-2), var(--navy));
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.case-card .case-tag { color: var(--elec); }
.case-card h3 { font-size: 21px; letter-spacing: -0.01em; }
.case-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.link-arrow { color: var(--elec); font-weight: 600; font-size: 15px; display: inline-flex; gap: 8px; align-items: center; }
.link-arrow span { transition: transform 0.25s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- CONTATO (fechamento: pouco texto, tipo gigante) ------------ */
.contato { max-width: var(--maxw); }
.contato-card { position: relative; overflow: hidden;
  border-radius: 28px; padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 72px);
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(46,107,255,0.32), transparent 60%),
    linear-gradient(180deg, var(--card-2), var(--navy));
  border: 1px solid rgba(46,107,255,0.30);
  display: flex; flex-direction: column; align-items: center; text-align: center; }
.contato-card::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 320px; height: 320px;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1.4px, transparent 1.6px); background-size: 26px 26px;
  opacity: 0.10; pointer-events: none; }
.contato-card h2 { font-size: clamp(46px, 8.4vw, 96px); text-wrap: balance; line-height: 1; }
.contato-card h2 em { font-style: normal; color: var(--elec); }
.contato-sub { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 560px; margin-top: 22px; }
.contato-btn { margin-top: 40px; padding: 20px 46px; font-size: 18px; gap: 14px; border-radius: 16px;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 1px rgba(46,107,255,0.4), 0 18px 50px rgba(46,107,255,0.45); }
.contato-btn:hover { box-shadow: 0 0 0 1px rgba(46,107,255,0.6), 0 24px 64px rgba(46,107,255,0.6); }

/* ---------- Footer (centrado: logo, slogan, Instagram, direitos) ------- */
.site-footer { border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 7vw, 84px) var(--pad) clamp(40px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer-brand { font-size: 23px; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-slogan { color: var(--muted); font-size: 15.5px; line-height: 1.75; max-width: 62ch; }
.footer-ig { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted);
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer-ig:hover { color: var(--ink); border-color: var(--elec); background: rgba(46,107,255,0.10); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px var(--pad);
  display: flex; justify-content: center; text-align: center;
  font-size: 13.5px; color: var(--faint); }

/* ---------- Floating WhatsApp ----------------------------------------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 120;
  display: inline-flex; align-items: center; gap: 0; color: var(--navy);
  background: var(--elec); border-radius: 999px; padding: 15px;
  box-shadow: 0 14px 34px rgba(46,107,255,0.5); overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.wa-float svg { color: #fff; flex: 0 0 auto; }
.wa-float-label { color: #fff; font-weight: 600; font-size: 15px; max-width: 0; opacity: 0;
  white-space: nowrap; transition: max-width 0.35s var(--ease), opacity 0.25s, margin 0.35s var(--ease); }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(46,107,255,0.6); }
.wa-float:hover .wa-float-label { max-width: 130px; opacity: 1; margin-left: 10px; margin-right: 6px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(46,107,255,0.5); animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(46,107,255,0.5); } 70%,100% { box-shadow: 0 0 0 18px rgba(46,107,255,0); } }

/* ---------- Reveal animation ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ------------------------------------------------ */
@media (max-width: 980px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .site-header { left: auto; right: 14px; transform: none;
    width: 56px; padding: 9px 10px; transition: width 0.35s var(--ease), border-radius 0.3s var(--ease), background 0.3s; }
  .site-header.menu-open { width: min(300px, calc(100vw - 28px)); }
  .header-row { justify-content: flex-end; }
  .tres-c { grid-template-columns: 1fr; }
  .brand--corner { top: 16px; left: 24px; font-size: 24px; }
  .brand--corner .brand-mark { width: 42px; height: 42px; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-grid > * { min-width: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .beliefs { grid-template-columns: 1fr; gap: 20px; }
  .chat { position: static; }
  .flow::before { left: 17px; }
  .flow-num { width: 36px; height: 36px; font-size: 15px; }
  .flow-step { padding-left: 58px; }
  .flow-split { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .contato-btn { width: 100%; max-width: 380px; padding: 18px 24px; }

  /* Sem quebras forçadas no mobile — deixa o texto fluir */
  .section-head h2 br, .contato-copy h2 br { display: none; }
  .section-head { max-width: 100%; }
  .hero-title { font-size: clamp(34px, 9.5vw, 52px); }
  .section-head h2 { font-size: clamp(28px, 7.2vw, 44px); max-width: 100%; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .wa-float-label { display: none; }
}

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