/* ============================================================
   INGOO BRASIL — Design System (do Figma "Ingoo - Landing Page")
   Cores: laranja #fa6900 / #ff5200, escuro #fa3c00, preto #131313
   Fontes: Poppins, Inter, Plus Jakarta Sans
   ============================================================ */
:root {
  --laranja: #fa6900;
  --laranja-vivo: #ff5200;
  --laranja-escuro: #fa3c00;
  --preto: #131313;
  --ink: #111111;
  --bg-suave: #f9f8fe;
  --bg-cinza: #f8f8f8;
  --cinza-texto: #878c91;
  --cinza-claro: #a6a6a6;
  --cinza-frio: #6b7280;
  --branco-gelo: #f4f3f2;
  --container: 1128px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- tipografia de seção ---------- */
.kicker {
  color: var(--laranja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--preto);
  line-height: 1.2;
}
.section-sub {
  color: var(--cinza-texto);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 16px;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 70px;
  padding: 18px 34px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(250, 105, 0, .28); }
.btn-laranja { background: var(--laranja); color: #fff; }
.btn-branco { background: #fff; color: var(--laranja); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; }
.btn .seta { font-size: 20px; line-height: 1; }

/* ---------- NAV ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 26px 0;
}
.nav-inner {
  max-width: 1533px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 26px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 56px;
  padding: 17px 48px;
  backdrop-filter: blur(8px);
}
.nav-menu a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: opacity .15s;
}
.nav-menu a:hover { opacity: .75; }
.nav-cta {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 44px;
  padding: 16px 32px;
  white-space: nowrap;
  transition: background .15s;
}
.nav-cta:hover { background: rgba(255,255,255,.16); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; }

/* ---------- HERO base laranja ---------- */
.hero {
  position: relative;
  background: var(--laranja);
  color: var(--branco-gelo);
  overflow: hidden;
}
.hero-bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 170px 24px 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  min-height: 780px;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
}
.hero h1 strong { font-weight: 800; display: block; }
.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 460px;
}
.hero-apps { margin-top: 40px; }
.hero-apps p { font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.badges { display: flex; gap: 15px; flex-wrap: wrap; }
.badge-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--branco-gelo);
  color: var(--laranja);
  border-radius: 25px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  transition: transform .15s;
}
.badge-app:hover { transform: translateY(-2px); }
.badge-app svg { width: 24px; height: 26px; fill: var(--laranja); }
.badge-app span { display: block; font-size: 12px; line-height: 1.25; }
.badge-app b { display: block; font-size: 16px; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; }

/* ---------- carrossel de logos ---------- */
.logo-strip {
  background: var(--preto);
  padding: 25px 0;
  overflow: hidden;
}
.logo-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.logo-track img {
  height: 50px;
  width: auto;
  opacity: .85;
  filter: grayscale(35%);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- seção 2 colunas genérica ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section { padding: 96px 0; }
.section-suave { background: var(--bg-suave); }
.section-cinza { background: var(--bg-cinza); }

/* ---------- produtos (carrossel horizontal) ---------- */
.prod-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 24px;
  scrollbar-width: none;
}
.prod-scroll::-webkit-scrollbar { display: none; }
.prod-card {
  flex: 0 0 264px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(19,19,19,.06);
  position: relative;
}
.prod-thumb {
  background: rgba(244, 208, 187, .2);
  border-radius: 14px;
  height: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.prod-thumb img { max-height: 165px; width: auto; }
.prod-card h3 { font-size: 18px; font-weight: 700; color: var(--preto); margin-bottom: 10px; }
.prod-card p { font-size: 15px; color: var(--cinza-texto); line-height: 1.55; }
.tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--laranja);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 688px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.scroll-arrows { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.scroll-arrows button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--laranja);
  background: #fff;
  color: var(--laranja);
  font-size: 18px;
  cursor: pointer;
  transition: all .15s;
}
.scroll-arrows button:hover { background: var(--laranja); color: #fff; }

/* ---------- pilares (tabs) ---------- */
.pilares { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: stretch; }
.pilares-tabs { display: flex; flex-direction: column; gap: 8px; border-left: 4px solid var(--cinza-claro); }
.pilares-tabs button {
  text-align: left;
  background: none;
  border: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #051441;
  padding: 16px 22px;
  cursor: pointer;
  margin-left: -4px;
  border-left: 4px solid transparent;
  transition: color .15s;
}
.pilares-tabs button.ativo { color: var(--laranja); border-left-color: var(--laranja); }
.pilar-painel {
  background: var(--laranja-escuro);
  border-radius: 29px;
  padding: 40px 44px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: center;
  min-height: 461px;
}
.pilar-painel h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.pilar-painel p { font-size: 16px; line-height: 1.65; }
.pilar-painel .pilar-img img { width: 100%; height: auto; }

/* ---------- ecossistema (accordion) ---------- */
.eco-item { border-top: 1px solid #e3e3ea; padding: 22px 0; }
.eco-item:first-child { border-top: 4px solid #e3e3ea; position: relative; }
.eco-item h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  font-weight: 500;
  color: var(--preto);
  cursor: pointer;
}
.eco-item h3 .material-symbols-rounded { color: var(--laranja); font-size: 28px; }
.eco-item.aberto h3 { color: var(--laranja); }
.eco-body { display: none; padding: 16px 0 0 42px; color: #051441; font-size: 18px; line-height: 1.6; }
.eco-item.aberto .eco-body { display: block; }

/* ---------- eventos (fundo escuro) ---------- */
.eventos {
  position: relative;
  color: #fff;
  background: #0c0c0c;
  overflow: hidden;
}
.eventos-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
}
.eventos-inner { position: relative; z-index: 2; padding: 110px 0; }
.eventos-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.eventos-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
.eventos-head h2 em { font-style: normal; color: var(--laranja); }
.eventos-head p { color: var(--cinza-claro); font-weight: 500; font-size: 18px; margin-top: 16px; }
.parceiros-eventos {
  background: #222;
  border-radius: 999px;
  padding: 34px 56px;
  margin: 56px auto 72px;
  max-width: 1279px;
}
.pe-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 26px;
}
.pe-title::before, .pe-title::after { content: ""; width: 50px; height: 2px; background: var(--laranja); }
.pe-logos { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.pe-logos img { height: 48px; width: auto; }
.eventos-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.eventos-cols h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; line-height: 1.25; }
.eventos-cols .destaque { color: var(--laranja); font-size: 16px; margin-top: 18px; }
.eventos-cols p { color: rgba(255,255,255,.8); font-weight: 500; font-size: 18px; line-height: 1.65; margin-top: 18px; }

/* ---------- como funciona ---------- */
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.passo { text-align: center; position: relative; }
.passo-num {
  width: 93px; height: 93px;
  border-radius: 50%;
  background: var(--laranja);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 10px 26px rgba(250,105,0,.35);
}
.passo-num .material-symbols-rounded { font-size: 40px; }
.passo h3 { font-size: 20px; font-weight: 700; color: var(--preto); margin-bottom: 12px; }
.passo p { font-size: 16px; color: var(--cinza-texto); line-height: 1.6; }
.passo:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  left: calc(50% + 60px);
  width: calc(100% - 120px);
  border-top: 2px dashed rgba(250,105,0,.5);
}

/* ---------- avaliações ---------- */
.avaliacoes-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.avaliacoes-scroll::-webkit-scrollbar { display: none; }
.card-review {
  flex: 0 0 436px;
  max-width: 86vw;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 25px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(19,19,19,.05);
}
.card-review header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.card-review header img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.card-review h3 { font-size: 22px; font-weight: 600; color: #000; }
.card-review small { font-size: 16px; font-weight: 500; color: #000; }
.card-review p { font-size: 16px; color: rgba(0,0,0,.8); line-height: 1.6; }

/* ---------- Ingoo nas redes (reels) ---------- */
.reels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.reel {
  border-radius: 14px;
  aspect-ratio: 210 / 373;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  transition: transform .18s;
}
.reel:hover { transform: translateY(-4px); }
.reel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,0) 45%, rgba(0,0,0,.6));
  pointer-events: none;
}
.reel-1 { background: linear-gradient(160deg, #ff5200, #cc3300 55%, #1a0a00); }
.reel-2 { background: linear-gradient(160deg, #1a1a2e, #ff5200 70%, #ff7a3d); }
.reel-3 { background: linear-gradient(160deg, #0f0f0f, #2d1500 55%, #ff5200); }
.reel-4 { background: linear-gradient(160deg, #ff5200, #111 60%, #0a0a0a); }
.reel-5 { background: linear-gradient(200deg, #ff5200, #cc3300 55%, #1a0a00); }
.reel > * { position: relative; z-index: 2; }
.reel-top { display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 700; }
.reel-user {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.4);
  border-radius: 100px;
  padding: 4px 9px;
}
.reel-user i {
  width: 14px; height: 14px; border-radius: 7px;
  background: linear-gradient(45deg, #f58529, #dd2a7b);
}
.reel-flag { background: rgba(0,0,0,.4); border-radius: 4px; padding: 4px 7px; font-size: 9px; color: rgba(255,255,255,.8); }
.reel-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin: 0 auto;
}
.reel-caption { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.85); line-height: 1.45; }
.reel-stats { display: flex; gap: 12px; font-size: 10px; color: rgba(255,255,255,.6); margin-top: 8px; }
.link-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d8dae0;
  border-radius: 999px;
  padding: 15px 32px;
  color: var(--cinza-frio);
  font-weight: 500;
  font-size: 16px;
  margin-top: 44px;
  transition: all .15s;
}
.link-insta:hover { border-color: var(--laranja); color: var(--laranja); }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  background: var(--laranja);
  overflow: hidden;
  color: #fff;
}
.cta-final::before, .cta-final::after {
  content: "";
  position: absolute;
  width: 719px; height: 724px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--laranja-escuro), transparent 70%);
  opacity: .8;
}
.cta-final::before { top: -320px; left: -200px; }
.cta-final::after { bottom: -340px; right: -180px; }
.cta-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.cta-inner h2 { font-size: clamp(32px, 4.4vw, 48px); font-weight: 700; line-height: 1.15; }
.cta-inner p { color: rgba(255,255,255,.85); font-weight: 500; font-size: 18px; line-height: 1.6; margin: 22px 0 34px; max-width: 470px; }
.cta-inner .btn-branco { font-family: 'Inter', sans-serif; font-size: 20px; padding: 20px 44px; }
.cta-visual img { width: 100%; max-width: 464px; margin-left: auto; }

/* ---------- FOOTER ---------- */
.footer { background: var(--preto); color: #fbfcfc; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-logo img { height: 45px; width: auto; margin-bottom: 26px; }
.footer-desc { max-width: 550px; font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { opacity: .9; transition: opacity .15s; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 24px; height: 24px; fill: #fff; }
.footer h4 { color: #fd8439; font-weight: 500; font-size: 20px; margin-bottom: 24px; }
.footer-contato { font-size: 14px; line-height: 1.75; }
.footer-contato b { display: block; margin-top: 14px; }
.footer-contato b:first-child { margin-top: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 24px 0;
  font-size: 15px;
}

/* ============ PÁGINA PARCEIRO ============ */
.hero-parceiro .hero-inner { grid-template-columns: 1fr 1fr; min-height: 820px; }
.hero-parceiro .kicker { color: #fff; opacity: .95; }
.hero-parceiro h1 { text-transform: none; font-weight: 500; }
.hero-parceiro h1 strong { text-transform: uppercase; }
.hero-parceiro .hero-sub { text-transform: none; }
.mapa-wrap { position: relative; max-width: 511px; margin: 0 auto; }
.mapa-wrap .pin {
  position: absolute;
  width: 28px;
  transform: translate(-50%, -100%);
  animation: pinDrop .5s ease both;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.3));
}
@keyframes pinDrop {
  from { opacity: 0; transform: translate(-50%, -160%); }
  to { opacity: 1; transform: translate(-50%, -100%); }
}
.card-escuro {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 40px;
  color: #fff;
}
.card-escuro .kicker { color: rgba(255,82,0,.9); }
.card-escuro h3 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 26px; line-height: 1.3; margin-bottom: 18px; }
.card-escuro > p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.6; margin-bottom: 26px; }
.card-escuro li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.card-escuro li i {
  flex: 0 0 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,82,0,.2);
  color: var(--laranja-vivo);
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.card-escuro li span { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.55; }
.receitas { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 56px; }
.card-receita {
  background: #fff;
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 0 6px 24px rgba(19,19,19,.05);
}
.icon-chip {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--laranja);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-chip .material-symbols-rounded { font-size: 24px; }
.card-receita h3 { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 12px; }
.card-receita p { font-size: 12.5px; color: var(--cinza-frio); line-height: 1.6; }
.etapas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 64px; }
.etapa { text-align: center; position: relative; }
.etapa:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(50% + 52px);
  width: calc(100% - 104px);
  border-top: 2px solid rgba(250,105,0,.45);
}
.etapa-badge {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.etapa-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--laranja);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 24px rgba(250,105,0,.32);
}
.etapa-num .material-symbols-rounded { font-size: 34px; }
.etapa h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.etapa p { font-size: 13px; color: var(--cinza-frio); line-height: 1.6; margin-bottom: 12px; }
.etapa small { color: var(--laranja-vivo); font-weight: 600; font-size: 11px; }
.compromisso {
  background: #131313;
  border-radius: 20px;
  color: #fff;
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  margin-top: 72px;
}
.compromisso h3 { font-size: 20px; font-weight: 700; margin: 10px 0 14px; }
.compromisso p { color: rgba(255,255,255,.5); font-size: 16px; line-height: 1.6; }
.compromisso-stats { display: flex; gap: 44px; }
.compromisso-stats strong { display: block; font-size: 28px; font-weight: 900; color: var(--laranja-vivo); }
.compromisso-stats span { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); }
.equipe {
  background: linear-gradient(165deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
  color: #fff;
  padding: 100px 0 0;
}
.equipe .kicker { color: rgba(19,19,19,.9); }
.equipe h2 { color: #fff; }
.equipe .section-sub { color: #fff; }
.equipe-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 24px;
}
.equipe-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.g-alto { grid-row: span 2; }
.g-largo { grid-column: span 2; }
.equipe-stats {
  background: #fff;
  border-radius: 18px;
  max-width: 1128px;
  margin: 64px auto -64px;
  padding: 40px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  position: relative;
  z-index: 3;
}
.equipe-stats strong { display: block; font-size: 40px; font-weight: 800; color: var(--laranja-vivo); }
.equipe-stats span { font-size: 15px; font-weight: 500; color: var(--cinza-frio); text-transform: uppercase; letter-spacing: .04em; }
.fases {
  background: #161616 url() center/cover;
  color: #fff;
  padding: 180px 0 110px;
}
.fases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; }
.fase-num { font-size: 64px; font-weight: 800; color: rgba(255,82,0,.35); line-height: 1; }
.fase small { display: block; color: var(--laranja-vivo); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .1em; margin: 18px 0 10px; }
.fase h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.fase p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.fase-tag {
  display: inline-block;
  border: 1px solid rgba(255,82,0,.5);
  color: var(--laranja-vivo);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 16px;
}
.suporte-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 22px; align-items: start; margin-top: 56px; }
.suporte-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; grid-column: span 2; }
.card-suporte {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(19,19,19,.05);
}
.card-suporte h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 16px 0 10px; }
.card-suporte p { font-size: 12.5px; color: var(--cinza-frio); line-height: 1.6; }
.suporte-foto img { border-radius: 18px; max-height: 560px; width: auto; }

/* ---------- responsivo ---------- */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.aberto .nav-menu {
    display: flex;
    position: absolute;
    top: 84px; left: 16px; right: 16px;
    flex-direction: column;
    gap: 8px;
    background: rgba(19,19,19,.96);
    border-radius: 20px;
    padding: 24px;
  }
  .hero-inner, .cta-inner, .split, .eventos-cols { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 130px; min-height: 0; }
  .pilares { grid-template-columns: 1fr; }
  .pilares-tabs { flex-direction: row; overflow-x: auto; border-left: 0; border-bottom: 3px solid var(--cinza-claro); }
  .pilares-tabs button { border-left: 0; border-bottom: 3px solid transparent; margin: 0 0 -3px; white-space: nowrap; }
  .pilares-tabs button.ativo { border-bottom-color: var(--laranja); }
  .pilar-painel { grid-template-columns: 1fr; }
  .passos, .etapas { grid-template-columns: 1fr 1fr; }
  .passo::after, .etapa::after { display: none; }
  .reels { grid-template-columns: repeat(3, 1fr); }
  .receitas { grid-template-columns: repeat(2, 1fr); }
  .fases-grid { grid-template-columns: 1fr; }
  .equipe-grid { grid-template-columns: repeat(3, 1fr); }
  .equipe-stats { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
  .suporte-grid { grid-template-columns: 1fr; }
  .suporte-cards { grid-column: span 1; }
  .suporte-foto { display: none; }
  .compromisso { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-parceiro .hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .passos, .etapas, .receitas { grid-template-columns: 1fr; }
  .reels { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .equipe-stats { padding: 28px; }
  .parceiros-eventos { border-radius: 32px; padding: 28px; }
  .pe-logos { justify-content: center; }
  .card-review { flex-basis: 320px; }
  .compromisso { padding: 32px; }
  .compromisso-stats { gap: 28px; }
}
