/* ===================================================================
   ENGEANALISE — Landing Page Premium
   Paleta: Azul escuro (marca) · Branco · Cinza técnico · Laranja CTA
   =================================================================== */

:root {
  /* Brand — cor fria #03376d / cor quente #f6b416 */
  --navy-900: #022a54;
  --navy-800: #03376d;
  --navy-700: #0a4382;
  --navy-600: #0f5099;
  --navy-500: #1763b5;

  --gold: #f6b416;      /* cor quente da marca */
  --gold-dark: #d99700;
  --orange: #f6b416;    /* destaques usam a cor quente */
  --orange-dark: #d99700;

  /* WhatsApp */
  --wpp: #25d366;
  --wpp-dark: #128c4b;

  --white: #ffffff;
  --gray-50: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-200: #dde3ec;
  --gray-300: #c2cbd9;
  --gray-500: #6b7689;
  --gray-600: #4a5568;
  --ink: #14213a;

  --shadow-sm: 0 2px 10px rgba(11, 46, 92, .08);
  --shadow-md: 0 12px 32px rgba(11, 46, 92, .12);
  --shadow-lg: 0 24px 60px rgba(7, 32, 63, .22);
  --shadow-cta: 0 14px 30px rgba(18, 140, 75, .38);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
}

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

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

.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; letter-spacing: -.01em;
  border: none; cursor: pointer; border-radius: 999px;
  padding: 14px 26px; font-size: 1rem; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn .ic-wpp { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }
.btn--primary {
  background: linear-gradient(135deg, var(--wpp) 0%, var(--wpp-dark) 100%);
  color: #fff; box-shadow: var(--shadow-cta);
}
.btn--primary .ic-wpp { fill: #fff; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(18,140,75,.5); }
.btn--ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--sm { padding: 11px 20px; font-size: .9rem; }
.btn--lg { padding: 17px 32px; font-size: 1.12rem; }
.btn--xl { padding: 21px 44px; font-size: 1.2rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(23,99,181,.32), transparent 62%),
    radial-gradient(700px 600px at 0% 100%, rgba(246,180,22,.08), transparent 55%),
    linear-gradient(150deg, rgba(2,42,84,.8) 0%, rgba(3,55,109,.74) 45%, rgba(10,67,130,.7) 100%),
    url('../banner-engeanalise.jpg') center center / cover no-repeat,
    var(--navy-900);
}
.hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 25%, #000 0%, transparent 78%);
}
.hero__inner {
  position: relative; z-index: 2;
  min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 130px 24px 70px;
}
.hero__brand { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); display: block; margin: 0; }
.hero__brand img { height: 116px; width: auto; }

.hero__content { max-width: 1200px; width: 100%; }

.hero__title { font-size: 3.4rem; margin-bottom: 22px; }
.hero__subtitle { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: #d3deef; max-width: 760px; margin: 0 auto 30px; }
.hero__subtitle strong { color: #fff; }

.hero__checks { display: grid; grid-template-columns: repeat(3, auto); justify-content: center; gap: 14px 30px; margin-bottom: 36px; }
.hero__checks li { display: flex; align-items: center; gap: 11px; font-weight: 500; color: #e7eefa; font-size: 1rem; }
.check {
  width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%;
  background: var(--gold); position: relative;
}
.check::after { content: ''; position: absolute; left: 7px; top: 4px; width: 6px; height: 11px; border: solid var(--navy-900); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.check--gold { background: var(--gold); }
.check--gold::after { border-color: var(--navy-900); }

.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 18px; }
.hero__micro { font-size: .85rem; color: #9fb2cf; }

/* Company stats (seção Diferenciais) */
.company-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 920px; margin: 0 auto 52px;
}
.stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius); padding: 26px 22px; backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s;
}
.stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); }
.stat-card__num { font-family: var(--font-head); font-size: 2.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-card .plus { color: var(--gold); font-size: 1.8rem; font-weight: 800; vertical-align: top; }
.stat-card__icon { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--navy-900); background: var(--gold); padding: 4px 12px; border-radius: 8px; display: inline-block; }
.stat-card p { margin-top: 10px; font-size: .92rem; color: #c6d3e8; }
.stat-card--accent { background: linear-gradient(135deg, rgba(242,180,23,.16), rgba(240,138,29,.10)); border-color: rgba(242,180,23,.35); }

/* ---------- Section heads ---------- */
.section-head { max-width: 940px; margin: 0 auto 52px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy-600); margin-bottom: 14px; position: relative; padding-left: 30px;
}
.kicker::before { content: ''; position: absolute; left: 0; top: 50%; width: 22px; height: 2px; background: var(--gold); transform: translateY(-50%); }
.kicker--gold { color: var(--gold); }
.section-head h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--navy-800); margin-bottom: 16px; }
.section-head p { color: var(--gray-600); font-size: 1.08rem; }
.section-head--light h2 { color: #fff; }
.section-head--light p { color: #c6d3e8; }

/* ---------- Clients ---------- */
.clients { padding: 56px 0; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.clients__title { text-align: center; font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; color: var(--navy-800); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 12px; }
.clients__sub { text-align: center; color: var(--gray-600); max-width: 720px; margin: 0 auto 36px; }
.clients__carousel {
  overflow-x: auto; overflow-y: hidden; cursor: grab;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.clients__carousel::-webkit-scrollbar { display: none; }
.clients__carousel.is-grabbing { cursor: grabbing; }
.clients__track { display: flex; width: max-content; }
.clients__carousel.is-grabbing .client-logo { pointer-events: none; }
.client-logo {
  flex: 0 0 auto; width: 250px; height: 140px; margin-right: 26px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px 32px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.client-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.client-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Risk ---------- */
.risk .section-head h2 { color: var(--gold); }
.risk { padding: 92px 0; color: #fff; background:
  radial-gradient(700px 400px at 90% 0%, rgba(240,138,29,.12), transparent 60%),
  linear-gradient(160deg, var(--navy-800), var(--navy-900)); }
.risk__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.risk-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s;
}
.risk-card:hover { transform: translateY(-6px); border-color: rgba(240,138,29,.5); background: rgba(255,255,255,.08); }
.risk-card__ic { margin-bottom: 16px; line-height: 0; }
.risk-card__ic img { width: 76px; height: 76px; object-fit: contain; }
.risk-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.risk-card p { color: #c2d0e6; font-size: .96rem; }

/* ---------- Faixa CTA (cor quente) ---------- */
.cta-band {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.10) 0 2px, transparent 2px 24px),
    linear-gradient(135deg, var(--gold) 0%, var(--orange-dark) 100%);
  padding: 38px 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band__txt { flex: 1; min-width: 280px; }
.cta-band__txt h3 { color: var(--navy-900); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 8px; }
.cta-band__txt p { color: rgba(7,32,63,.86); max-width: 760px; font-size: 1rem; }
.cta-band__txt strong { color: var(--navy-900); }
.cta-band .btn { flex: 0 0 auto; }

/* Variante com foto à direita e botão abaixo do texto */
.cta-band--media { padding: 44px 0; }
.cta-band--media .cta-band__inner { align-items: center; gap: 44px; }
.cta-band--media .cta-band__txt { flex: 1 1 420px; }
.cta-band--media .cta-band__txt .btn { margin-top: 22px; }
.cta-band__media {
  flex: 0 0 auto; width: min(420px, 100%); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.5);
}
.cta-band__media img { width: 100%; height: 260px; object-fit: cover; display: block; image-orientation: from-image; transition: transform .6s var(--ease); }
.cta-band__media:hover img { transform: scale(1.05); }
@media (max-width: 760px) {
  .cta-band--media .cta-band__media { width: 100%; }
  .cta-band--media .cta-band__media img { height: 220px; }
}

/* ---------- Services ---------- */
.services { padding: 96px 0; background: var(--gray-50); }
.services .section-head h2 { max-width: none; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 32px 26px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange)); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__ic {
  width: 76px; height: 76px; border-radius: 18px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  box-shadow: 0 10px 24px rgba(15,58,114,.3);
}
.service-card__ic svg { width: 42px; height: 42px; fill: var(--gold); }
.service-card h3 { font-size: 1.18rem; color: var(--navy-800); margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: .95rem; }
.service-card--featured { background: linear-gradient(155deg, var(--navy-800), var(--navy-700)); border-color: transparent; }
.service-card--featured h3, .service-card--featured p { color: #fff; }
.service-card--featured p { color: #cdd9ee; }
.service-card--featured .service-card__ic { background: var(--gold); }
.service-card--featured .service-card__ic svg { fill: var(--navy-900); }
.service-card--cta {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange)); border-color: transparent;
}
.service-card--cta h3, .service-card--cta p { color: var(--navy-900); }
.service-card--cta p { font-size: .95rem; }
.service-card--cta .btn { margin-top: 4px; }

/* ---------- Differentials ---------- */
.diff { padding: 96px 0; color: #fff; background:
  radial-gradient(800px 500px at 10% 10%, rgba(28,90,171,.4), transparent 55%),
  linear-gradient(150deg, var(--navy-900), var(--navy-800)); }
.diff__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.diff-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 26px 20px; text-align: center; transition: transform .3s var(--ease), background .3s;
}
.diff-item:hover { transform: translateY(-6px); background: rgba(242,180,23,.12); border-color: rgba(242,180,23,.4); }
.diff-item__ic { display: inline-flex; margin-bottom: 14px; line-height: 0; }
.diff-item__ic img { width: 58px; height: 58px; object-fit: contain; }
.diff-item h3 { font-size: 1.02rem; color: #fff; margin-bottom: 8px; }
.diff-item p { color: #bccbe3; font-size: .86rem; }

/* ---------- Responsável Técnico ---------- */
.rt { padding: 96px 0; background: var(--white); }
.rt__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.rt__photo { position: relative; }
.rt__photo-frame {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-700));
  box-shadow: var(--shadow-lg); border: 6px solid #fff; position: relative;
}
.rt__photo-frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(242,180,23,.3); border-radius: 18px; pointer-events: none; }
.rt__photo-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: brightness(1.05) contrast(1.06) saturate(1.08);
}
.rt__photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: rgba(255,255,255,.5); }
.rt__photo-placeholder svg { width: 96px; height: 96px; fill: rgba(255,255,255,.25); }
.rt__photo-placeholder span { font-size: .9rem; font-weight: 500; letter-spacing: .02em; }
.rt__crea-badge {
  position: absolute; bottom: -22px; right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy-900); border-radius: 16px; padding: 14px 22px; text-align: center;
  box-shadow: var(--shadow-md); border: 3px solid #fff;
}
.rt__crea-badge strong { display: block; font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; }
.rt__crea-badge span { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; }

.rt__content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy-800); margin-bottom: 24px; }
.rt__person { border-left: 4px solid var(--gold); padding-left: 20px; margin-bottom: 22px; }
.rt__person h3 { font-size: 1.5rem; color: var(--navy-900); }
.rt__role { color: var(--gray-600); font-weight: 500; }
.rt__crea { color: var(--navy-600); font-weight: 700; font-family: var(--font-head); }
.rt__text { color: var(--gray-600); font-size: 1.08rem; margin-bottom: 24px; }
.rt__text strong { color: var(--navy-800); }
.rt__list { margin-bottom: 30px; display: grid; gap: 12px; }
.rt__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.rt__list .check { width: 24px; height: 24px; }

/* ---------- Process ---------- */
.process { padding: 96px 0; background:
  radial-gradient(700px 380px at 50% 0%, rgba(246,180,22,.10), transparent 60%),
  var(--gray-50); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; position: relative; }
.process__steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange-dark));
  border-radius: 3px; z-index: 0; opacity: .55;
}
.step {
  text-align: center; position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 30px 20px 26px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.step::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange)); border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0); transition: transform .35s var(--ease);
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.step:hover::after { transform: scaleX(1); }
.step__num {
  width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 26px rgba(246,180,22,.45); border: 5px solid #fff;
  transition: transform .35s var(--ease);
}
.step:hover .step__num { transform: scale(1.08) rotate(-4deg); }
.step h3 { font-size: 1.12rem; color: var(--navy-800); margin-bottom: 8px; }
.step p { color: var(--gray-600); font-size: .92rem; }

/* ---------- Portfolio ---------- */
.portfolio { padding: 96px 0; color: #fff; background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); }
.portfolio__filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; cursor: pointer;
  background: rgba(255,255,255,.06); color: #cdd9ee; border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; padding: 9px 20px; transition: all .25s;
}
.filter:hover { color: #fff; border-color: var(--gold); }
.filter.is-active { background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--navy-900); border-color: transparent; }
.portfolio__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pf-item { border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: transform .3s var(--ease); }
.pf-item.hide { display: none; }
.pf-item:hover { transform: translateY(-6px); }
.pf-item__img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
}
.pf-item__img img {
  width: 100%; height: 100%; object-fit: cover; image-orientation: from-image;
  transition: transform .6s var(--ease);
}
.pf-item:hover .pf-item__img img { transform: scale(1.07); }
.pf-item__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,42,84,.45), transparent 45%); pointer-events: none; }
.pf-item__img { cursor: zoom-in; }
.pf-item figcaption { padding: 16px 18px; font-size: .92rem; color: #cdd9ee; font-weight: 500; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 24px; background: rgba(2,16,36,.92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__content { max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; }
.lightbox__img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.5);
  image-orientation: from-image; transform: scale(.96); transition: transform .3s var(--ease);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__caption { color: #e7eefa; text-align: center; margin-top: 16px; font-weight: 500; font-size: 1rem; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: 2rem; line-height: 1; cursor: pointer; transition: background .25s, transform .25s;
}
.lightbox__close:hover { background: var(--orange); transform: rotate(90deg); }
.lightbox__nav {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: 1.3rem; cursor: pointer; transition: background .25s, transform .25s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav:hover { background: var(--gold); color: var(--navy-900); transform: scale(1.08); }
@media (max-width: 600px) {
  .lightbox { padding: 12px; gap: 4px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__close { top: 12px; right: 14px; width: 42px; height: 42px; font-size: 1.7rem; }
}
.portfolio__note { text-align: center; margin-top: 28px; font-size: .85rem; color: #8ea3c4; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 96px 0; background: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 34px 30px; position: relative; transition: transform .3s var(--ease), box-shadow .3s;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi::before { content: '\201C'; position: absolute; top: 6px; right: 24px; font-family: Georgia, serif; font-size: 5rem; color: var(--gray-200); line-height: 1; }
.testi__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi blockquote { color: var(--ink); font-size: 1.02rem; margin-bottom: 22px; position: relative; z-index: 1; }
.testi figcaption strong { display: block; font-family: var(--font-head); color: var(--navy-800); }
.testi figcaption span { color: var(--gray-500); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; background: var(--gray-50); }
.faq__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.faq__intro { position: sticky; top: 100px; }
.faq__intro h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy-800); margin-bottom: 14px; }
.faq__intro p { color: var(--gray-600); margin-bottom: 26px; }
.faq__media { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.faq__media img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.faq__media:hover img { transform: scale(1.05); }
.faq__list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--font-head);
  font-weight: 700; color: var(--navy-800); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chev { width: 22px; height: 22px; flex: 0 0 auto; position: relative; }
.faq-item__chev::before, .faq-item__chev::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 2.5px; background: var(--gold); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s; }
.faq-item__chev::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-item__chev::after { transform: translate(-50%,-50%) rotate(0); }
.faq-item__body { padding: 0 24px 22px; }
.faq-item__body p { color: var(--gray-600); }

/* ---------- Final CTA ---------- */
/* CTA final usa o estilo .cta-band (faixa cor quente, horizontal e baixa) */

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #8499b7; padding: 26px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .88rem; }
.footer__dev { display: inline-flex; align-items: center; gap: 12px; color: #8499b7; transition: opacity .2s; }
.footer__dev:hover { opacity: .8; }
.footer__dev img { height: 30px; width: auto; }

/* ---------- WhatsApp Float ---------- */
.wpp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(135deg, #25d366, #128c4b); color: #fff;
  border-radius: 999px; padding: 15px 24px 15px 18px; box-shadow: 0 12px 30px rgba(18,140,75,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: floatIn .6s var(--ease) .6s both, wppBeat 1.8s ease-in-out 1.4s infinite;
}
.wpp-float svg { width: 28px; height: 28px; fill: #fff; flex: 0 0 auto; }
.wpp-float__label { white-space: nowrap; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.wpp-float:hover { transform: scale(1.06); box-shadow: 0 16px 38px rgba(18,140,75,.55); animation-play-state: paused; }
.wpp-float::after { content: ''; position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulseWpp 2.2s infinite; }
@keyframes pulseWpp { 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes floatIn { from { transform: translateY(30px) scale(.8); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes wppBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

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

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .diff__grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .risk__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { padding: 120px 24px 56px; }
  .hero__brand img { height: 96px; }
  .hero__title { font-size: 2.7rem; }
  .rt__inner { grid-template-columns: 1fr; gap: 64px; }
  .rt__photo-frame { max-width: 360px; margin: 0 auto; }
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .faq__intro { position: static; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process__steps::before { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .company-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  /* Hero ocupa 100% da tela e o logo entra no fluxo (não fica em cima do conteúdo) */
  .hero__inner { min-height: 100vh; min-height: 100svh; padding: 30px 20px 44px; justify-content: center; }
  .hero__brand { position: static; transform: none; margin: 0 auto 22px; }
  .hero__brand img { height: 84px; }
  .hero__title { font-size: 2rem; }
  .hero__checks { grid-template-columns: 1fr; justify-items: center; }
  /* Botões longos: mantém em uma linha só (sem quebrar) reduzindo a fonte */
  .hero__cta .btn { width: 100%; font-size: .78rem; padding: 15px 12px; gap: 8px; }
  .cta-band .btn { font-size: .72rem; padding: 12px 15px; gap: 7px; }
  .cta-band .btn .ic-wpp, .hero__cta .btn .ic-wpp { width: 16px; height: 16px; }
  /* Demais botões longos (RT, FAQ, serviços, enquadramento) cabem na tela */
  .btn--lg { font-size: .82rem; padding: 14px 18px; }
  /* Remove as quebras de linha (br) que existem só para o desktop */
  .section-head p br, .enquadra__help p br { display: none; }
  /* Cards "Porque contratar" com o mesmo tamanho */
  .diff__grid { grid-auto-rows: 1fr; }
  .stat-card { padding: 20px 16px; }
  .stat-card__num { font-size: 2.1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr 1fr; }
  .risk__grid { grid-template-columns: 1fr; }
  .risk__solution { padding: 30px 24px; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
  .risk, .services, .diff, .rt, .process, .portfolio, .testimonials, .faq { padding: 64px 0; }
  .final-cta { padding: 72px 0; }
  .btn--xl { padding: 18px 28px; font-size: 1.05rem; }
  /* Botão flutuante: somente ícone no mobile */
  .wpp-float { right: 14px; bottom: 14px; padding: 15px; gap: 0; }
  .wpp-float svg { width: 28px; height: 28px; }
  .wpp-float__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   REFATORAÇÃO CONVERSÃO — seções novas (reaproveita variáveis/identidade)
   =================================================================== */

/* --- Quem precisa da NR13 (enquadramento) --- */
.enquadra { padding: clamp(64px, 8vw, 96px) 0; background: var(--white); }
.enquadra__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.enquadra-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 18px 20px;
  font-family: var(--font-head); font-weight: 600; color: var(--navy-800);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.enquadra-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-left-color: var(--orange); }
.enquadra-item .check { width: 24px; height: 24px; }
.enquadra__segments {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #e7eefa;
  border: 1px solid rgba(246,180,22,.25); border-radius: var(--radius-lg);
  padding: 30px 36px; text-align: center; margin-bottom: 30px; font-size: 1.05rem;
}
.enquadra__segments strong { color: var(--gold); }
.enquadra__cta { text-align: center; }

/* --- Categorias dentro de Serviços --- */
.svc-cat {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.01em;
  color: var(--navy-800); font-size: 1.2rem; margin: 46px 0 22px;
}
.svc-cat:first-of-type { margin-top: 4px; }
.svc-cat::before { content: ''; width: 30px; height: 3px; background: var(--gold); border-radius: 3px; flex: 0 0 auto; }
.svc-cat::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* --- Aviso de depoimentos --- */
.testi-note { text-align: center; color: var(--gray-500); font-size: .9rem; margin-top: 26px; font-style: italic; }

/* ===================================================================
   QUEBRA DE CORES — seções azuis alternadas (aplicadas via .sec-blue)
   =================================================================== */
.sec-blue { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)) !important; }

/* Clientes em azul */
.clients.sec-blue { border-bottom: none; }
.clients.sec-blue .clients__title { color: #fff; }
.clients.sec-blue .clients__sub { color: #c6d3e8; }

/* Depoimentos em azul (cards continuam claros) */
.testimonials.sec-blue .section-head h2 { color: var(--gold); }
.testimonials.sec-blue .section-head p { color: #c6d3e8; }
.testimonials.sec-blue .testi-note { color: #9fb2cf; }

/* FAQ em azul (cards continuam claros) */
.faq.sec-blue .faq__intro h2 { color: #fff; }
.faq.sec-blue .faq__intro p { color: #c6d3e8; }

/* Clientes em fundo cinza com fontes escuras (padrão) */
.sec-gray { background: var(--gray-50) !important; }

/* ===================================================================
   MELHORIAS DE CONVERSÃO (hero contato / prova numérica / dúvida enquadramento)
   =================================================================== */

/* Faixa de contato discreta no Hero */
.hero__contact {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 28px; margin-top: 6px; font-size: .92rem; color: #b9c7de;
}
.hero__contact span, .hero__contact a { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.hero__contact a:hover { color: #fff; }
.hero__contact svg { width: 16px; height: 16px; fill: var(--gold); flex: 0 0 auto; }

/* Prova social numérica (banda azul reaproveitando .company-stats/.stat-card) */
.proof { padding: clamp(60px, 7vw, 84px) 0; background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); }
.proof .company-stats { margin-bottom: 0; }
.stat-card__num.is-word { font-size: 1.7rem; line-height: 1.2; }

/* Bloco consultivo "não sabe se enquadra" */
.enquadra__help {
  max-width: none; width: 100%; margin: 0; text-align: center;
  background: var(--gray-50); border: 1px dashed var(--gray-300);
  border-radius: var(--radius); padding: 36px 28px;
}
.enquadra__help h3 { color: var(--navy-800); font-size: 1.25rem; margin-bottom: 10px; }
.enquadra__help p { color: var(--gray-600); margin-bottom: 20px; }

/* Prova numérica com 5 cards (só no desktop; mobile mantém 2 col) */
@media (min-width: 901px) {
  .company-stats--5 { grid-template-columns: repeat(5, 1fr); }
}

/* ===================================================================
   BARRA DE ROLAGEM PERSONALIZADA (cores da marca)
   =================================================================== */
html { scrollbar-width: thin; scrollbar-color: var(--navy-700) var(--gray-100); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--navy-700); border-radius: 999px; border: 3px solid var(--gray-100);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
