/* ============================================================
   Jorge Resolve — Landing Page
   Design system + componentes + responsividade
   ============================================================ */

:root {
  /* Cores */
  --blue: #0B5CFF;
  --blue-700: #0A4FDB;
  --blue-dark: #061B3A;
  --blue-deep: #07152E;
  --blue-light: #EAF2FF;
  --white: #FFFFFF;
  --gray-100: #F5F7FA;
  --gray-300: #D9E1EC;
  --ink: #1F2937;
  --ink-soft: #475569;
  --wpp: #25D366;
  --wpp-700: #1FB257;

  /* Gradientes */
  --grad-hero: radial-gradient(120% 120% at 80% 0%, #0d3a8a 0%, #07152E 55%, #050f22 100%);
  --grad-blue: linear-gradient(135deg, #0B5CFF 0%, #0A4FDB 100%);
  --grad-dark: linear-gradient(160deg, #061B3A 0%, #07152E 100%);

  /* Tipografia */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(6, 27, 58, 0.08);
  --shadow: 0 18px 50px rgba(6, 27, 58, 0.14);
  --shadow-blue: 0 20px 50px rgba(11, 92, 255, 0.30);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
ul { list-style: none; padding: 0; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 13px 24px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; }

.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { box-shadow: 0 24px 60px rgba(11,92,255,.42); }

.btn-outline { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.btn-wpp { background: var(--wpp); color: #04210f; box-shadow: 0 14px 34px rgba(37,211,102,.35); }
.btn-wpp:hover { background: var(--wpp-700); color: #fff; }

.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-xl { padding: 19px 40px; font-size: 1.15rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(7, 21, 46, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 10px 30px rgba(0,0,0,.25);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; flex: none; }
.brand-logo { width: 210px; max-width: 44vw; height: auto; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; font-weight: 800; font-size: .95rem;
  box-shadow: var(--shadow-blue);
}
.brand-name { font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand-name strong { font-weight: 800; }

.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .95rem; position: relative; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 18px; font-size: .92rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; background: var(--grad-hero); overflow: hidden; padding: 150px 0 90px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.glow-a { width: 540px; height: 540px; background: #0B5CFF; top: -160px; right: -120px; }
.glow-b { width: 420px; height: 420px; background: #1E90FF; bottom: -180px; left: -120px; opacity: .35; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 80%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.hero .eyebrow { color: #8ec0ff; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wpp); box-shadow: 0 0 0 4px rgba(37,211,102,.25); }

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 20px; }
.hero h1 .hl { background: linear-gradient(120deg, #56a0ff, #25D366); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.88); margin-bottom: 14px; max-width: 40ch; }
.hero .support { color: rgba(255,255,255,.62); font-size: 1rem; margin-bottom: 28px; max-width: 44ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-seals { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-seals li {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(4px);
}

/* Painel dashboard flutuante */
.hero-panel {
  background: linear-gradient(165deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16); border-radius: 24px;
  padding: 22px; box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.panel-head { display: flex; align-items: center; gap: 7px; margin-bottom: 20px; }
.panel-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.3); }
.panel-dot:nth-child(1) { background: #ff5f57; }
.panel-dot:nth-child(2) { background: #febc2e; }
.panel-dot:nth-child(3) { background: #28c840; }
.panel-title { margin-left: 8px; font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 600; }
.panel-cards { display: grid; gap: 12px; }
.pcard {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 16px;
}
.pcard strong { display: block; font-size: .95rem; font-weight: 700; }
.pcard small { color: rgba(255,255,255,.6); font-size: .82rem; }
.pcard.highlight { background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.4); }
.pcard-ico { width: 38px; height: 38px; border-radius: 10px; flex: none; background: var(--grad-blue) center/55% no-repeat; }
.pcard.highlight .pcard-ico { background-color: var(--wpp); }
.float-1 { animation: floaty 6s ease-in-out infinite; }
.float-2 { animation: floaty 6s ease-in-out infinite .8s; }
.float-3 { animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Seções base ---------- */
.section { padding: 88px 0; }
.section-soft { background: var(--gray-100); }
.section-dark { background: var(--grad-dark); color: #fff; }
.section-dark .eyebrow { color: #8ec0ff; }

.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; }
.section-dark .section-lead { color: rgba(255,255,255,.78); }

/* ---------- Cards genéricos ---------- */
.card {
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* Ícones (CSS mask) */
.card-ico, .oport-ico {
  width: 52px; height: 52px; border-radius: 14px; display: block; margin-bottom: 18px;
  background: var(--grad-blue);
  box-shadow: var(--shadow-blue);
  -webkit-mask-size: 0; /* fallback */
}
.card-ico::after, .oport-ico::after { content: none; }

/* usamos pseudo via background image mask trick: ícone branco centralizado */
.card-ico, .oport-ico, .pcard-ico { position: relative; }
.card-ico::before, .oport-ico::before, .pcard-ico::before {
  content: ''; position: absolute; inset: 0; background: #fff;
  -webkit-mask: var(--icon) center / 56% no-repeat;
  mask: var(--icon) center / 56% no-repeat;
}
.pcard-ico::before { -webkit-mask-size: 52%; mask-size: 52%; }

/* definições de ícones (data-uri SVG, traço branco) */
.ico-search   { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>"); }
.ico-repeat   { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m17 2 4 4-4 4'/><path d='M3 11v-1a4 4 0 0 1 4-4h14'/><path d='m7 22-4-4 4-4'/><path d='M21 13v1a4 4 0 0 1-4 4H3'/></svg>"); }
.ico-gear     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='3'/><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z'/></svg>"); }
.ico-chip     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='5' width='14' height='14' rx='2'/><path d='M9 9h6v6H9z'/><path d='M9 2v3M15 2v3M9 19v3M15 19v3M2 9h3M2 15h3M19 9h3M19 15h3'/></svg>"); }
.ico-map      { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 6 3 4v16l6-2 6 2 6-2V2l-6 2-6-2z'/><path d='M9 4v14M15 6v14'/></svg>"); }
.ico-site     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2'/><path d='M3 9h18'/><path d='M7 6.5h.01M10 6.5h.01'/></svg>"); }
.ico-chat     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 11.5a8.38 8.38 0 0 1-8.5 8.5 8.5 8.5 0 0 1-3.8-.9L3 21l1.9-5.7A8.38 8.38 0 0 1 4 11.5 8.5 8.5 0 0 1 12.5 3 8.38 8.38 0 0 1 21 11.5z'/></svg>"); }
.ico-flow     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='6' height='6' rx='1'/><rect x='15' y='15' width='6' height='6' rx='1'/><path d='M9 6h6a2 2 0 0 1 2 2v7'/></svg>"); }
.ico-megaphone{ --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m3 11 18-5v12L3 14v-3z'/><path d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/></svg>"); }
.ico-up       { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 17l6-6 4 4 8-8'/><path d='M17 7h4v4'/></svg>"); }
.ico-money    { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 7v10M9.5 9.5a2.5 2 0 0 1 5 0c0 1.5-2.5 1.5-2.5 2.5M14.5 14.5a2.5 2 0 0 1-5 0'/></svg>"); }
.ico-bot      { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='8' width='16' height='12' rx='3'/><path d='M12 4v4M9 14h.01M15 14h.01M2 13v2M22 13v2'/></svg>"); }
.ico-plan     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11l3 3L22 4'/><path d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/></svg>"); }
.ico-target   { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><circle cx='12' cy='12' r='5'/><circle cx='12' cy='12' r='1'/></svg>"); }
.ico-clarity  { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/><path d='M12 2v3M12 19v3M2 12h3M19 12h3M5 5l2 2M17 17l2 2M19 5l-2 2M7 17l-2 2'/></svg>"); }

/* ---------- Problema ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain.accent {
  display: grid; place-items: center; text-align: center;
  background: var(--grad-blue); border: none; color: #fff;
}
.pain.accent .pain-quote {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

/* ---------- Solução ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sol {
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sol:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sol-num { font-size: 1rem; font-weight: 800; color: var(--blue); background: var(--blue-light); padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: 16px; }
.sol h3 { font-size: 1.2rem; margin-bottom: 10px; }
.sol p { color: var(--ink-soft); }
.sol-grid .sol:nth-child(4), .sol-grid .sol:nth-child(5) { grid-column: span 1; }

/* ---------- Como funciona (timeline) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px 24px;
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 18px; box-shadow: var(--shadow-blue);
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.74); font-size: .98rem; }
.steps .step:not(:last-child)::after {
  content: ''; position: absolute; top: 52px; right: -13px; width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

/* ---------- Serviços / Projetos ---------- */
.serv-grid, .proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proj-grid { grid-template-columns: repeat(4, 1fr); }
.proj-note {
  margin-top: 30px; text-align: center; font-weight: 600; color: var(--blue);
  background: var(--blue-light); padding: 14px; border-radius: var(--radius-sm);
}

/* ---------- Oportunidade ---------- */
.oport-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.oport {
  text-align: center; padding: 38px 28px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--gray-300); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.oport:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.oport-ico { margin: 0 auto 18px; }
.oport h3 { font-size: 1.25rem; margin-bottom: 10px; }
.oport p { color: var(--ink-soft); }

/* ---------- Por que o Jorge ---------- */
.porque-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.porque-media { position: relative; }
.porque-media img {
  border-radius: 24px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid #fff;
}
.porque-badge {
  position: absolute; right: -14px; bottom: 22px; background: var(--grad-blue); color: #fff;
  padding: 14px 20px; border-radius: 16px; box-shadow: var(--shadow-blue);
}
.porque-badge strong { display: block; font-size: 1rem; }
.porque-badge span { font-size: .9rem; color: rgba(255,255,255,.85); }
.porque-list { display: grid; gap: 12px; margin-top: 26px; }
.porque-list li {
  display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.05rem;
}
.porque-list li::before {
  content: ''; width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--wpp) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/60% no-repeat;
}

/* ---------- CTA bands ---------- */
.cta-band, .cta-final { position: relative; color: #fff; overflow: hidden; text-align: center; }
.cta-band { background: var(--grad-blue); padding: 76px 0; }
.cta-final { background: var(--grad-hero); padding: 96px 0; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; max-width: 760px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.cta-inner p { font-size: 1.12rem; color: rgba(255,255,255,.9); margin-bottom: 30px; }
.cta-band .glow-a { background: #fff; opacity: .12; }
.cta-small { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 18px; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  padding: 4px 22px; box-shadow: var(--shadow-sm); transition: border-color .25s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  list-style: none; cursor: pointer; font-weight: 700; font-size: 1.08rem;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--blue);
  transition: transform .3s var(--ease); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,.78); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; }
.footer-brand .brand-name { color: #fff; font-size: 1.4rem; }
.footer-slogan { color: #8ec0ff; font-weight: 600; margin: 10px 0 4px; }
.footer-loc { font-size: .92rem; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.74); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px; text-align: center; font-size: .88rem; }

/* ---------- Botão flutuante WhatsApp ---------- */
.wpp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0; overflow: hidden;
  background: var(--wpp); color: #fff; border-radius: 999px;
  height: 60px; padding: 0 18px; box-shadow: 0 14px 34px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: wppPulse 2.6s ease-in-out infinite;
}
.wpp-float svg { width: 30px; height: 30px; fill: #fff; flex: none; }
.wpp-float-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  transition: max-width .35s var(--ease), margin .35s var(--ease), opacity .2s;
}
.wpp-float:hover,
.wpp-float:focus-visible { transform: scale(1.05); box-shadow: 0 18px 40px rgba(37,211,102,.55); }
.wpp-float:hover .wpp-float-label,
.wpp-float:focus-visible .wpp-float-label { max-width: 180px; margin-left: 10px; opacity: 1; }
@keyframes wppPulse { 0%,100% { box-shadow: 0 14px 34px rgba(37,211,102,.45); } 50% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- Reveal (animação de entrada) ----------
   Só esconde quando o JS está ativo (classe .js no <html>).
   Sem JS, o conteúdo aparece normalmente — nunca depende de script. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsividade
   ============================================================ */
@media (max-width: 960px) {
  .hero { padding: 130px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 460px; }
  .porque-inner { grid-template-columns: 1fr; gap: 40px; }
  .porque-media { max-width: 380px; margin-inline: auto; }
  .pain-grid, .sol-grid, .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::after { display: none; }
  .oport-cols { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 0;
    background: rgba(7,21,46,.97); backdrop-filter: blur(16px); margin: 0;
    padding: 90px 24px 30px; transform: translateY(-100%); transition: transform .35s var(--ease);
    box-shadow: 0 20px 40px rgba(0,0,0,.4); height: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 16px 0; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .main-nav a::after { display: none; }
  .site-header { background: rgba(7,21,46,.72); backdrop-filter: blur(12px); }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .section { padding: 64px 0; }
  .pain-grid, .sol-grid, .serv-grid, .proj-grid, .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions .btn { width: 100%; }
  .pain.accent { padding: 32px; }
  .wpp-float { height: 56px; padding: 0 16px; }
  .wpp-float svg { width: 26px; height: 26px; }
}

/* Acessibilidade: respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
