/* ============================================
   SÓLIDA CONSTRUÇÃO — Recriação do site
   ============================================ */
:root {
  --navy: #0C2F54;
  --blue: #2D629C;
  --blue-light: #4A7FB5;
  --text: #2E3538;
  --white: #ffffff;
  --bg-light: #f5f6f8;
  --font-title: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-editorial: 'Barlow', 'Roboto', sans-serif;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-title); font-weight: 700; line-height: 1.15; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 32px;
  gap: 16px;
}
.main-nav ul { display: flex; gap: 36px; list-style: none; }
.main-nav a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); border-color: var(--blue); }
.logo img { height: 58px; width: auto; }
.header-social { display: flex; gap: 18px; justify-content: flex-end; align-items: center; }
.header-social a { color: var(--navy); transition: color .2s; }
.header-social a:hover { color: var(--blue); }
.header-social svg { width: 22px; height: 22px; fill: currentColor; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
}
.menu-toggle span {
  display: block; width: 26px; height: 3px; margin: 5px auto;
  background: var(--navy); border-radius: 2px; transition: .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
  background-size: cover;
  background-position: center;
}

/* Slideshow full-bleed: uma foto se transforma na outra (crossfade + Ken Burns) */
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroCrossfade 25s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }

@keyframes heroCrossfade {
  0%   { opacity: 0; transform: scale(1.04); }
  3%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.14); }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,25,45,.55) 0%, rgba(6,25,45,.15) 28%, rgba(6,25,45,0) 50%),
    radial-gradient(ellipse 72% 62% at 50% 55%, rgba(6,25,45,.55) 0%, rgba(6,25,45,.2) 55%, rgba(6,25,45,0) 82%);
}

.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.hero-content .eyebrow {
  color: var(--white);
  opacity: .95;
  margin-bottom: 22px;
  justify-content: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.hero-content .eyebrow::before { display: none; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 68px);
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.7), 0 8px 28px rgba(0,0,0,.55);
  letter-spacing: 1px;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 22px auto 0;
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.btn-ghost {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  padding: 16px 34px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,.75);
  background: rgba(6,25,45,.15);
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  transition: .25s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.hero-scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 14px;
}
.hero-scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--white);
  animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

.hero--sub { min-height: 62vh; }
@keyframes heroZoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-slide--zoom { opacity: 1; animation: heroZoomSlow 20s ease-out forwards; }

/* Hero em degradê da marca (navy/blue), levemente animado — usado nas
   páginas internas (tudo exceto Início) no lugar da foto full-bleed */
.hero--gradient {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 52%, var(--blue-light) 100%);
  background-size: 240% 240%;
  animation: heroGradientShift 20s ease-in-out infinite;
}
.hero--gradient::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.16), transparent 70%) 15% 30% / 55% 55% no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.10), transparent 70%) 85% 70% / 60% 60% no-repeat;
  animation: heroGlowDrift 26s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroGradientShift {
  0%   { background-position: 0% 30%; }
  50%  { background-position: 100% 70%; }
  100% { background-position: 0% 30%; }
}
@keyframes heroGlowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-3%, 4%) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (max-width: 780px) {
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-scroll-cue { display: none; }
}

/* ---------- HEADER TRANSPARENTE SOBRE O HERO (HOME) ---------- */
body.home .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease;
}
body.home .site-header .main-nav a { color: var(--white); border-color: transparent; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
body.home .site-header .main-nav a:hover, body.home .site-header .main-nav a.active { color: var(--white); border-color: var(--white); }
body.home .site-header .header-social a { color: var(--white); filter: drop-shadow(0 1px 4px rgba(0,0,0,.6)); }
body.home .site-header .menu-toggle span { background: var(--white); }
body.home .site-header .logo img { filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

body.home .site-header.is-solid {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
body.home .site-header.is-solid .main-nav a { color: var(--navy); text-shadow: none; }
body.home .site-header.is-solid .main-nav a:hover, body.home .site-header.is-solid .main-nav a.active { color: var(--blue); border-color: var(--blue); }
body.home .site-header.is-solid .header-social a { color: var(--navy); filter: none; }
body.home .site-header.is-solid .menu-toggle span { background: var(--navy); }
body.home .site-header.is-solid .logo img { filter: none; }

/* Menu mobile aberto: sempre legível, independente do estado do header */
body.home .site-header .main-nav.open a { color: var(--navy); }

.eyebrow {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.hero-content .eyebrow::before { background: var(--blue-light); }

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section--light { background: var(--bg-light); }
.section-title { font-size: clamp(32px, 4.5vw, 48px); color: var(--navy); margin-bottom: 24px; }

/* Empresa (home) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col .col-text p { margin-bottom: 18px; text-align: justify; }
.two-col .col-text .logo-solida { max-width: 240px; margin-bottom: 24px; }
.col-img img { width: 100%; border-radius: 8px; box-shadow: 0 24px 48px -12px rgba(6,25,45,.28); }

/* A Empresa — seção redesenhada */
.about-section { background: var(--bg-light); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.about-text p { max-width: 480px; line-height: 1.75; margin-bottom: 16px; text-align: left; }
.about-quote {
  margin: 26px 0 0;
  padding: 18px 24px;
  max-width: 480px;
  border-left: 3px solid var(--blue);
  background: rgba(45,98,156,.08);
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  color: var(--navy);
  font-style: normal;
}
.about-badges {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.about-badges div { display: flex; flex-direction: column; }
.about-badges strong { font-size: 26px; font-weight: 700; color: var(--navy); }
.about-badges span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-top: 4px;
}

.about-media { position: relative; }
.about-media-frame {
  position: absolute;
  top: 28px; left: 28px; right: -28px; bottom: -28px;
  background: var(--navy);
  border-radius: 12px;
  z-index: 0;
}
.about-media-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.about-media-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.6);
  transform-origin: 47% 52%;
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(6,25,45,.35);
}

@media (max-width: 960px) {
  .about-media-frame { display: none; }
  .about-text p, .about-quote { max-width: none; }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 50px;
}
.stats > div { position: relative; padding: 0 24px; }
.stats > div:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: rgba(12,47,84,.15);
}
.stats h4 { font-size: clamp(44px, 5vw, 64px); color: var(--blue); font-variant-numeric: tabular-nums; }
.stats p {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  margin-top: 6px;
}

@media (max-width: 960px) {
  .stats > div::before { display: none; }
  .stats > div { padding: 0; }
}

/* Galeria marquee */
.marquee-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 64px;
  margin-bottom: 0;
}
.marquee {
  overflow: hidden;
  position: relative;
  margin-top: 28px;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  width: 260px; height: 260px; object-fit: cover; flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 14px 30px -16px rgba(6,25,45,.35);
  transition: transform .4s ease;
}
.marquee-track img:hover { transform: scale(1.04); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Vídeo / Pilares — seção full-bleed em autoplay, sem controles */
.video-section { text-align: center; }
.video-fullbleed {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 460px;
  overflow: hidden;
  background: var(--navy);
}
.video-fullbleed-media { position: absolute; inset: 0; }
.video-fullbleed-media iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;      /* 16:9 relativo à largura */
  min-height: 100%; min-width: 177.78vh; /* 16:9 relativo à altura, garante cobertura total */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none; /* sem barra de controles, sem interação acidental */
}
.video-fullbleed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,25,45,.82) 0%, rgba(6,25,45,.25) 42%, rgba(6,25,45,.12) 65%);
  pointer-events: none;
}
.video-fullbleed-content {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-bottom: 72px;
}
.video-fullbleed-content .eyebrow { color: var(--white); justify-content: center; }
.video-fullbleed-content .eyebrow::before { background: var(--blue-light); }
.video-fullbleed-content .section-title {
  color: var(--white);
  max-width: 720px;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  margin-bottom: 30px;
}

@media (max-width: 780px) {
  .video-fullbleed-content { padding-bottom: 44px; }
}

@media (max-width: 780px) {
  .video-fullbleed { height: 100vh; height: 100svh; }
}

/* Botão padrão */
.btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 42px;
  border-radius: 3px;
  border: 2px solid var(--navy);
  transition: .25s;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
}
.btn:hover { background: transparent; color: var(--navy); }
.btn--light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); }

/* Banner setores (home) */
.banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 110px 0;
}
.banner-section::before { content:''; position: absolute; inset: 0; background: rgba(6,25,45,.55); }
.banner-section .container { position: relative; z-index: 1; }
.banner-section h6 { font-size: clamp(24px, 3vw, 36px); color: var(--white); margin-bottom: 16px; }
.banner-section p { max-width: 720px; }
.banner-section .eyebrow { color: var(--white); }
.banner-section .eyebrow::before { background: var(--blue-light); }
.sectors-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 48px;
  margin-bottom: 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.sector-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 18px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  text-align: center;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.scope-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.scope-actions .btn, .scope-actions .btn-ghost { cursor: pointer; }
@media (max-width: 600px) {
  .scope-actions { justify-content: stretch; }
  .scope-actions .btn, .scope-actions .btn-ghost { flex: 1; text-align: center; }
}
.sector-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.sector-icon svg { display: block; }
.sector-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}
.sector-card h6 {
  position: static;
  background: none;
  padding: 0;
  width: 100%;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-align: center;
  white-space: normal;
}

@media (max-width: 960px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sector-card { padding: 14px 8px; }
  .sector-icon { width: 34px; height: 34px; }
  .sector-icon svg { width: 17px; height: 17px; }
}

/* Garantia */
.guarantee-grid { align-items: stretch; }
.guarantee-grid .col-text h3 {
  font-size: clamp(22px, 2.6vw, 36px);
  white-space: nowrap;
}
.guarantee-grid .col-text > p { text-align: left; }
.guarantee-grid .col-img {
  align-self: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(6,25,45,.28);
}
.guarantee-grid .col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 35%;
  border-radius: 12px;
  display: block;
}
.guarantee-grid .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
/* Reordena visualmente para parear boxes de textos com tamanhos parecidos */
.guarantee-grid .check-list li:nth-child(1) { order: 1; }
.guarantee-grid .check-list li:nth-child(2) { order: 2; }
.guarantee-grid .check-list li:nth-child(5) { order: 3; }
.guarantee-grid .check-list li:nth-child(8) { order: 4; }
.guarantee-grid .check-list li:nth-child(3) { order: 5; }
.guarantee-grid .check-list li:nth-child(4) { order: 6; }
.guarantee-grid .check-list li:nth-child(6) { order: 7; }
.guarantee-grid .check-list li:nth-child(7) { order: 8; }
.guarantee-grid .check-list li {
  padding: 12px 16px;
  gap: 12px;
}
.guarantee-grid .check-list li span { font-size: 15px; }
@media (max-width: 700px) {
  .guarantee-grid .col-text h3 { white-space: normal; }
  .guarantee-grid .check-list { grid-auto-flow: row; grid-template-columns: 1fr; grid-template-rows: none; }
}
.check-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.check-list li:hover {
  transform: translateX(4px);
  background: #eaf0f5;
  box-shadow: 0 10px 24px -14px rgba(6,25,45,.3);
}
.check-list li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1) .15s;
}
.check-list li.reveal-visible::before { transform: scale(1); }
.check-list li span { font-size: 16px; }

/* CTA Instagram */
.insta-cta { text-align: center; }
.insta-cta .section-title { margin-bottom: 34px; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0 auto 40px;
}
.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}
.insta-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.insta-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,47,84,0);
  transition: background .3s ease;
}
.insta-tile::before {
  content: '\2197';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 26px;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile:hover::after { background: rgba(12,47,84,.55); }
.insta-tile:hover::before { opacity: 1; }

@media (max-width: 780px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- FOOTER ---------- */
.site-footer { position: relative; }
.footer-top {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 72px 0 48px;
}
.footer-top::before { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,25,45,.9), rgba(6,25,45,.95)); }
.footer-top .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1.1fr;
  gap: 40px;
}
.footer-brand .footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-brand .footer-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s, transform .2s, border-color .2s;
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.footer-col h6 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-col li { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.5; }
.partner-badges { display: flex; flex-direction: column; gap: 14px; }
.partner-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  transition: background .2s, border-color .2s, transform .2s;
}
.partner-badge:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }
.partner-badge img { height: 46px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.partner-badge span { color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: .2px; line-height: 1.4; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-meta span { color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: .5px; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .5px;
  text-decoration: none;
  transition: color .2s;
}
.footer-credit-logo {
  height: 13px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .2s;
}
.footer-credit:hover { color: var(--white); }
.footer-credit:hover .footer-credit-logo { opacity: 1; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .footer-top { padding: 56px 0 36px; }
}

/* Botão flutuante — Portfólio */
.portfolio-float {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 16px 20px;
  border: none;
  border-radius: 12px 0 0 12px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -6px 6px 20px -6px rgba(6,25,45,.4);
  transition: padding .2s ease, background .2s ease;
}
.portfolio-float:hover { background: var(--blue); padding-left: 26px; }
.portfolio-float svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .portfolio-float span { display: none; }
  .portfolio-float {
    padding: 14px;
    border-radius: 50%;
    top: auto;
    bottom: 20px;
    right: 16px;
    transform: none;
  }
}

/* Modal do portfólio: sem "janela" — apenas fundo desfocado com o flipbook flutuando */
.portfolio-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,25,45,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.portfolio-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.portfolio-modal {
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  width: 100%;
  max-width: 1040px;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  transform: translateY(16px) scale(.98);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.portfolio-modal::-webkit-scrollbar { display: none; }
.portfolio-modal-overlay.is-open .portfolio-modal { transform: translateY(0) scale(1); }
.portfolio-modal-close {
  position: fixed; top: 24px; right: 24px;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-modal-overlay, .portfolio-modal { transition: none !important; }
}

/* ---------- SOBRE ---------- */
.section-head-center { text-align: center; margin-bottom: 8px; }
.section-head-center .eyebrow { justify-content: center; }
.section-lede { max-width: 560px; margin: 0 auto 8px; color: var(--text); opacity: .8; font-size: 16px; line-height: 1.6; }

/* ===== Sistema editorial (inspirado em referência Clipzy) ===== */

.eyebrow-alt {
  display: inline-block;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 18px;
}

/* Faixa de confiança / parceiros */
.trust-strip {
  padding: 46px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(12,47,84,.08);
  text-align: center;
}
.trust-strip p {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  opacity: .7;
  margin-bottom: 26px;
}
.trust-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-strip-logos img { height: 34px; width: auto; max-width: 130px; object-fit: contain; opacity: .8; filter: grayscale(1); }

/* Nossa história */
.story-section { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text .eyebrow-alt { display: block; }
.story-text h1 {
  font-family: var(--font-editorial);
  font-weight: 500;
  letter-spacing: -1px;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--navy);
  margin-bottom: 20px;
}
.story-text p { margin-bottom: 16px; line-height: 1.75; }
.story-media img { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 4/5; box-shadow: 0 30px 60px -24px rgba(6,25,45,.3); }
.story-media-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-light), #e7ebf0);
  box-shadow: 0 30px 60px -24px rgba(6,25,45,.18);
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Nossos valores — cards empilhados, sobrepostos uns aos outros (efeito Clipzy).
   Sobreposição via margin negativo + z-index (não depende de position:sticky,
   que se mostrou pouco confiável em alguns contextos de preview/hospedagem). */
.values-section { background: var(--bg-light); overflow: visible; }
.values-stack {
  max-width: 780px;
  margin: 60px auto 0;
}
.value-stack-item {
  position: relative;
}
.value-stack-item + .value-stack-item {
  margin-top: -26px;
}
.value-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border-radius: 20px;
  padding: 38px 42px 54px;
  box-shadow: 0 30px 60px -28px rgba(6,25,45,.25);
  border: 1px solid rgba(12,47,84,.06);
}
.value-stack-item:nth-child(1) .value-card { z-index: 1; }
.value-stack-item:nth-child(2) .value-card { z-index: 2; }
.value-stack-item:nth-child(3) .value-card { z-index: 3; }
.value-stack-item:nth-child(4) .value-card { z-index: 4; }
.value-stack-item:nth-child(5) .value-card { z-index: 5; }
.value-card .value-number {
  flex-shrink: 0;
  width: 64px;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -1px;
  color: var(--blue-light);
  opacity: .55;
}
.value-card-body h4 {
  font-family: var(--font-editorial);
  font-weight: 500;
  letter-spacing: -.3px;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card-body p { font-size: 15px; opacity: .82; line-height: 1.65; max-width: 520px; }

@media (max-width: 700px) {
  .value-stack-item + .value-stack-item { margin-top: -18px; }
  .value-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    padding: 28px 26px 40px;
  }
  .value-card .value-number { font-size: 30px; }
}

/* Fundadores */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.founder {
  text-align: left;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px -26px rgba(6,25,45,.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.founder:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -20px rgba(6,25,45,.3); }
.founder-media { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.founder-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.founder h3 {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -.3px;
  margin: 20px 24px 24px;
}
@media (max-width: 700px) { .founders { grid-template-columns: 1fr; } }

/* Nossos Setores — carrossel de navegação manual (setas), cards clicáveis (modal explicativo) */
.sectors-carousel {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sectors-carousel-viewport {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  scrollbar-width: none;
}
.sectors-carousel-viewport::-webkit-scrollbar { display: none; }
.sectors-carousel-track {
  display: flex;
  gap: 20px;
  padding: 8px 4px;
  width: max-content;
}
.sector-carousel-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px -10px rgba(6,25,45,.3);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.sector-carousel-arrow:hover { background: var(--blue); color: var(--white); }
.internal-sector {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 18px;
  background: var(--bg-light);
  border-radius: 14px;
  border: none;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.internal-sector:hover, .internal-sector:focus-visible { transform: translateY(-5px); background: #eaf0f5; box-shadow: 0 18px 34px -20px rgba(6,25,45,.28); outline: none; }
.internal-sector-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -10px rgba(6,25,45,.35);
}
.internal-sector-icon svg { display: block; }
.internal-sector p { font-weight: 700; color: var(--navy); letter-spacing: 1px; font-size: 13px; margin: 0; }
.internal-sector-hint { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--blue); text-transform: uppercase; opacity: .8; }
@media (max-width: 480px) { .internal-sector { width: 168px; padding: 26px 14px; } }
@media (max-width: 600px) {
  .sector-carousel-arrow { width: 38px; height: 38px; font-size: 20px; }
}

/* Modal de setor */
.sector-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,25,45,.6);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.sector-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.sector-modal {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: 40px 36px 36px;
  box-shadow: 0 40px 80px -20px rgba(6,25,45,.4);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}
.sector-modal-overlay.is-open .sector-modal { transform: translateY(0) scale(1); }
.sector-modal-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sector-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sector-modal-close:hover { background: #e4e9ee; }
.sector-modal h4 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.sector-modal .sector-modal-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--blue); text-transform: uppercase; margin-bottom: 10px; display: block; }
.sector-modal p.sector-modal-text { font-size: 16px; line-height: 1.7; color: var(--text); }
@media (prefers-reduced-motion: reduce) {
  .sector-modal-overlay, .sector-modal { transition: none !important; }
}

/* Variante do modal com foto (Setores de atuação / Serviços) */
.service-modal { max-width: 560px; padding-top: 0; overflow: hidden; }
.service-modal-img {
  margin: 0 -36px 24px;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}
.service-modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-modal .sector-modal-close { background: var(--white); box-shadow: 0 4px 12px rgba(6,25,45,.25); }

/* Variante do modal com checklist (Nosso processo / Nossos serviços) */
.checklist-modal { max-width: 520px; }
.checklist-modal .check-list { margin: 18px 0 0; max-height: 50vh; overflow-y: auto; padding-right: 6px; }
.checklist-modal .check-list li { padding: 12px 4px; }

/* Variante do modal com o FAQ inteiro (accordion em 2 colunas) */
.faq-modal { max-width: 900px; max-height: 84vh; overflow-y: auto; }
.faq-modal h4 { font-size: 26px; margin-bottom: 4px; }
.faq-modal .faq { margin-top: 20px; }
.faq-modal .faq-item { box-shadow: none; border: 1px solid rgba(12,47,84,.1); }

/* ---------- SERVIÇOS ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
}
.service-block:nth-child(even) .service-text { order: 2; }
.service-text h6 {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue);
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.service-text h3, .service-text h1.service-title-first {
  font-family: var(--font-editorial);
  font-weight: 500;
  letter-spacing: -.5px;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--navy);
  margin-bottom: 18px;
  text-transform: none;
}
.service-text p { text-align: left; }
.service-img img { width: 100%; border-radius: 12px; box-shadow: 0 20px 40px -16px rgba(6,25,45,.3); }

/* Carrossel de destaques em loop (auto-scroll com contadores) */
.highlights-band {
  background: var(--navy);
  padding: 72px 0 84px;
  overflow: hidden;
}
.highlights-band .section-head-center .eyebrow-alt { color: var(--blue-light); }
.highlights-band .section-head-center h2 {
  font-family: var(--font-editorial);
  font-weight: 500;
  letter-spacing: -1px;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--white);
}
.highlights-carousel {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.highlights-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.highlights-carousel:hover .highlights-track { animation-play-state: paused; }
.highlight-card {
  flex-shrink: 0;
  width: 240px;
  padding: 30px 26px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  text-align: left;
}
.highlight-card h4 {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 42px;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.highlight-card p {
  font-size: 13px;
  letter-spacing: .3px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}
@media (max-width: 600px) {
  .highlight-card { width: 200px; padding: 24px 20px; }
}

.scope {
  background: var(--bg-light);
}
.scope-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}
.scope h6 { font-size: 28px; color: var(--navy); margin-bottom: 10px; }

.cta-banner {
  position: relative;
  background-size: cover; background-position: center;
  padding: 130px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner::before { content:''; position: absolute; inset: 0; background: rgba(6,25,45,.55); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h3 { font-size: clamp(30px, 4.5vw, 46px); color: var(--white); margin-bottom: 14px; }
.cta-banner p { max-width: 620px; margin: 0 auto 30px; }

/* FAQ */
.faq-section { background: var(--bg-light); }

/* "Costura" entre duas seções de mesmo fundo — evita que fiquem grudadas
   e sem nenhuma separação visual. Um traço curto com o azul da marca,
   ladeado por uma sombra suave, criando profundidade sutil. */
/* Seção Destaques/Setores: tom mais distinto do branco puro da seção
   "A Empresa" logo acima, pra separar sem precisar de traço decorativo. */
.destaques-section { background: #eef1f5; }
.faq { max-width: 1040px; margin: 44px auto 0; column-count: 2; column-gap: 24px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(12,47,84,.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px -22px rgba(6,25,45,.25);
  transition: box-shadow .25s ease;
  break-inside: avoid;
  margin-bottom: 14px;
}
@media (max-width: 780px) {
  .faq { column-count: 1; }
}
.faq-item[open] { box-shadow: 0 20px 40px -20px rgba(6,25,45,.3); }
.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 60px 22px 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-num {
  flex-shrink: 0;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 20px;
  color: var(--blue-light);
  opacity: .7;
  min-width: 30px;
}
.faq-q-text { flex: 1; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  transition: transform .25s, background .25s;
}
.faq-item[open] summary::after { content: '–'; background: var(--navy); color: var(--white); }
.faq-body { padding: 0 24px 26px 72px; }
.faq-body p, .faq-body li { margin-bottom: 10px; }
.faq-body ul { padding-left: 22px; }
.faq-body strong { color: var(--navy); }
@media (max-width: 600px) {
  .faq-item summary { padding: 18px 52px 18px 18px; gap: 12px; }
  .faq-body { padding: 0 18px 22px 18px; }
}

/* CONTATO — texto+botões e as duas localizações lado a lado, em uma linha só */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-intro .section-head-center,
.contact-intro .eyebrow,
.contact-intro .section-title,
.contact-intro .section-lede { text-align: left; margin-left: 0; }
.contact-intro .eyebrow { justify-content: flex-start; }
.contact-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-buttons .btn, .contact-buttons .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  text-shadow: none;
}
.contact-buttons .btn:hover, .contact-buttons .btn-ghost:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.contact-location {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 26px 0;
  box-shadow: 0 20px 40px -26px rgba(6,25,45,.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-location h6 { font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.contact-location p { font-size: 14px; margin-bottom: 4px; }
.contact-hours { color: var(--blue); font-size: 13px !important; margin-bottom: 18px !important; }
.contact-map {
  margin: 0 -26px;
  aspect-ratio: 4/3;
  margin-top: auto;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 980px) {
  .contact-row { grid-template-columns: 1fr; }
  .contact-intro { text-align: left; }
}

/* ---------- OBRAS ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  box-shadow: 0 16px 32px -14px rgba(6,25,45,.35);
}
.work-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s; }
.work-card:hover img { transform: scale(1.06); }
.work-card span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(6,25,45,.85));
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}

/* ---------- OBRAS: VISUALIZADOR DE REVISTA (FLIPBOOK) ---------- */
.flipbook-section {
  background: var(--bg-light);
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 90px 16px 70px;
}
.flipbook-intro {
  max-width: 620px;
  text-align: center;
  margin-bottom: 6px;
}
.flipbook-intro .eyebrow { justify-content: center; }
.flipbook-intro .section-title { margin-bottom: 10px; }
.flipbook-intro p { color: var(--text); opacity: .8; line-height: 1.7; }
.flipbook-stage {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}
.flipbook-cover {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.flipbook-cover img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(6,25,45,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.flipbook-cover:hover img { transform: translateY(-4px); box-shadow: 0 36px 70px -18px rgba(6,25,45,.4); }
.flipbook-cover-hint {
  display: block;
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .55;
}
#flipbook { touch-action: pan-y; }
#flipbook img { width: 100%; height: 100%; display: block; }
.flipbook-stage .page,
.flipbook-stage .stf__parent { background: transparent; }
.flipbook-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-height: 80vh;
  overflow-y: auto;
}
.flipbook-fallback img { max-width: 100%; border-radius: 4px; box-shadow: 0 10px 30px rgba(6,25,45,.18); }
.flipbook-controls {
  display: flex;
  align-items: center;
  gap: 24px;
}
.fb-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 16px -6px rgba(6,25,45,.25);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.fb-btn:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.fb-indicator {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 70px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 600px) {
  .flipbook-section { padding: 56px 10px 40px; }
}

/* ---------- CONTATO ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccd3da;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--blue);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 24px; }

.contact-info h6 { font-size: 24px; color: var(--navy); margin: 28px 0 8px; }
.contact-info p { margin-bottom: 4px; }
.contact-info img { border-radius: 4px; }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 960px) {
  .two-col, .founders, .service-block, .contact-wrap, .scope-lists, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .service-block:nth-child(even) .service-text { order: 0; }
  .internal-sectors, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; gap: 28px; }

  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
    transform: translateY(-140%);
    transition: transform .3s;
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 0; }
  .main-nav a { display: block; padding: 14px 28px; border-bottom: 0; }
  .logo { justify-self: center; }
}

@media (max-width: 560px) {
  .internal-sectors, .portfolio-grid { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ---------- ANIMAÇÕES / SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.65,.3,1), transform .7s cubic-bezier(.2,.65,.3,1);
}
.reveal-visible { opacity: 1; transform: translateY(0); }

/* Stagger sutil dentro de grids/listas */
.reveal-visible.reveal-delay-1 { transition-delay: .08s; }
.reveal-visible.reveal-delay-2 { transition-delay: .16s; }
.reveal-visible.reveal-delay-3 { transition-delay: .24s; }
.reveal-visible.reveal-delay-4 { transition-delay: .32s; }
.reveal-visible.reveal-delay-5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-scroll-cue span {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-slide { animation: none !important; }
  .hero-slide:first-child { opacity: 1 !important; }
  .hero-slide--zoom { animation: none !important; transform: none !important; }
  .hero--gradient, .hero--gradient::before { animation: none !important; }
  .check-list li::before { transition: none !important; transform: none !important; }
}
