/* ══════════════════════════════════════════════════════════════════
   CONSTRUPOPP — Serviços Terceirizados
   ══════════════════════════════════════════════════════════════════ */

/* ── Fontes ── */
@font-face {
  font-family: 'Ubuntu Light';
  src: url('../fonts/Ubuntu-L.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu Regular';
  src: url('../fonts/Ubuntu-R.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu Medium';
  src: url('../fonts/Ubuntu-M.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu Bold';
  src: url('../fonts/Ubuntu-B.ttf') format('truetype');
  font-display: swap;
}

/* ── Variáveis ── */
:root {
  --c-blue:        #046BA9;
  --c-blue-dark:   #073A5C;
  --c-blue-darker: #05263D;
  --c-blue-light:  #8AAFDD;
  --c-blue-light-2: #1ca5f7;
  --c-blue-pale:   #EAF3FA;
  --c-green:       #2FAE55;
  --c-green-dark:  #22903F;
  --c-green-light: #8FDBA9;
  --c-text:        #1C2733;
  --c-text-muted:  #5B6B7A;
  --c-white:       #FFFFFF;
  --c-border:      #E3E9EF;
  --c-bg-light:    #F5F8FB;
  --mobile-bar:    #04141e;
  
  --font-heading: 'Ubuntu Medium', Arial, sans-serif;
  --font-body:    'Ubuntu Light', Arial, sans-serif;
  --font-regular: 'Ubuntu Regular', Arial, sans-serif;
  --font-bold:    'Ubuntu Bold', Arial, sans-serif;

  --radius: 12px;
  --shadow: 0 10px 30px rgba(7, 58, 92, .10);
  --shadow-lg: 0 20px 50px rgba(7, 58, 92, .16);
  --header-h: 110px;
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--c-blue-dark); line-height: 1.25; }
svg { flex-shrink: 0; }

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

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-regular);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-cta {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 8px 20px rgba(47, 174, 85, .35);
}
.btn-cta:hover { background: var(--c-green-dark); transform: translateY(-2px); }
.btn-outline {
  background: var(--c-blue-dark);
  border: 1.5px solid var(--c-white);
  color: var(--c-white);
}
.btn-outline:hover { background: var(--c-blue-darker); transform: translateY(-2px); }
.btn-outline-azul {  background: var(--c-blue); border: 1.5px solid var(--c-blue); color: var(--c-blue); }
.btn-outline-azul:hover { background: var(--c-blue-pale); }
.btn-full { width: 100%; }
.btn.btn-cta svg { width: 20px; height: 20px; }

.sec-label {
  display: inline-block;
  font-family: var(--font-regular);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 14px;
}
.sec-label-claro { color: var(--c-blue-light-2); }

section { position: relative; }
.sec-pad { padding: 96px 0; }
.sec-titulo {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 640px;
}
.sec-head { margin-bottom: 52px; }
.sec-head.centro { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head.centro .sec-sub { margin-left: auto; margin-right: auto; }

/* ── Reveal (animação de entrada) ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-blue-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.preloader-logo { width: 140px; filter: brightness(0) invert(1); animation: pulse 1.1s ease-in-out infinite; }
.preloader.hide { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(.88); opacity:.6; } }

/* ══════════════════════════════════════════════════════════════════
   CABEÇALHO
   ══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--c-white);
  box-shadow: 0 2px 16px rgba(7,58,92,.08);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.site-logo img { height: 105px; }

.main-nav .nav-list { display: flex; align-items: center; gap: 36px; }
.main-nav .nav-list > li > a {
  font-family: var(--font-regular);
  font-weight: 600;
  font-size: .98rem;
  color: var(--c-blue-dark);
  display: flex; align-items: center; gap: 6px;
  padding: 8px 0;
  position: relative;
}
.main-nav .nav-list > li > a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--c-blue-light); transition: width .25s ease;
}
.main-nav .nav-list > li > a:hover::after { width: 100%; }
.nav-chevron { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-has-sub { position: relative; }
.nav-has-sub:hover .nav-chevron { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--c-white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 300px; padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-has-sub:hover .nav-sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-sub li a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-family: var(--font-regular); font-size: .93rem; font-weight: 600; color: var(--c-text);
}
.nav-sub li a:hover { background: var(--c-blue-pale); color: var(--c-blue); }

.site-header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-regular); font-weight: 700; font-size: .95rem;
  color: var(--c-blue-dark);
}
.header-phone svg { width: 18px; height: 18px; color: var(--c-blue-light); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; }
.mobile-toggle span { display: block; height: 2.5px; background: var(--c-blue-dark); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-panel {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(360px, 88vw); z-index: 600;
  background: var(--c-white); box-shadow: -10px 0 40px rgba(0,0,0,.18);
  padding: 10px 28px 32px; overflow-y: auto;
  transition: right .35s ease;
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-panel.aberto { right: 0; }
.mobile-panel-logo { height: 74px; align-self: center; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list > li > a, .mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 4px; font-family: var(--font-regular); font-weight: 600; font-size: 1.02rem;
  color: var(--c-blue-dark); border-bottom: 1px solid var(--c-border);
}
.mobile-nav-toggle .nav-chevron { transition: transform .2s ease; }
.mobile-nav-toggle.open .nav-chevron { transform: rotate(180deg); }
.mobile-nav-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mobile-nav-sub.open { max-height: 400px; }
.mobile-nav-sub li a { display: block; padding: 10px 4px 10px 14px; font-size: .95rem; font-weight: 600; color: var(--c-text-muted); }
.mobile-panel-phone { display: flex; align-items: center; gap: 10px; font-family: var(--font-regular); font-weight: 700; color: var(--c-blue-dark); }
.mobile-panel-phone svg { width: 18px; height: 18px; color: var(--c-blue-light); }
.mobile-panel-overlay {
  position: fixed; inset: 0; z-index: 590; background: rgba(5,38,61,.55);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.mobile-panel-overlay.aberto { opacity: 1; visibility: visible; }
body.menu-aberto { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════════
   HERO — HOME
   ══════════════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  background: #fff;
  overflow: hidden;
}

/* Camada de fundo — só usada no mobile (imagem estática) */
.home-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../imgs/home-hero.jpg') center/cover no-repeat;
  display: none;
}

/* ── Efeito "papel picado se juntando" (começa em fundo branco) ── */
.hero-papel {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-wrap: wrap;
  overflow: hidden;
}
.hero-papel-peca {
  width: 12.5%;   /* 100 / 8 colunas */
  height: 20%;    /* 100 / 5 linhas  */
  background-image: url('../imgs/home-hero.jpg');
  background-size: 800% 500%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--tr, 0)) scale(.2);
  animation: montarPapel .8s cubic-bezier(.2,.7,.3,1) forwards;
  will-change: transform, opacity;
}
@keyframes montarPapel {
  to { opacity: 1; transform: none; }
}

.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-color: rgba(28, 59, 79, 0.4);
  z-index: 1;
  opacity: 0;
  animation: heroOverlayIn .8s ease 1.4s forwards;
}
@keyframes heroOverlayIn {
  to { opacity: 1; }
}

/* ── Lâmina de iluminação varrendo o hero (após montar) ── */
.home-hero::after {
  content: '';
  position: absolute; top: -25%; bottom: -25%; left: -30%;
  width: 22%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.05) 45%, rgba(255,255,255,.16) 50%, rgba(255,255,255,.05) 55%, transparent 100%);
  transform: skewX(-14deg);
  z-index: 1;
  pointer-events: none;
  animation: heroLamina 4s ease-in-out 2s infinite;
}
@keyframes heroLamina {
  0%   { left: -30%; opacity: 0; }
  10%  { opacity: 1; }
  45%  { left: 120%; opacity: 1; }
  46%, 100% { left: 120%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-papel-peca { opacity: 1; transform: none; animation: none; }
  .home-hero::before { opacity: 1; animation: none; }
  .home-hero::after { animation: none; display: none; }
}

.home-hero-conteudo { position: relative; z-index: 2; max-width: 1200px; padding: 60px 0; }
.home-hero-titulo { font-size: clamp(2.1rem, 4.4vw, 3.4rem); color: var(--c-white); margin-bottom: 22px; text-align: center; text-shadow: 2px 2px 6px #00000075; }
.home-hero-sub { font-size: 1.15rem; font-weight: 700; color: rgba(255,255,255,.88); margin-bottom: 36px; text-align: center; text-shadow: 2px 2px 4px #00000075; }
.home-hero-botoes { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── Barra de credibilidade — anéis conectados ── */
.credibilidade { background: var(--c-bg-light); padding: 76px 0 60px; margin-top: -1px; }
.credibilidade-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; position: relative; }
.credibilidade-grid::before {
  content: ''; position: absolute; top: 55px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-blue-light) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.credibilidade-item { flex: 1 1 200px; max-width: 220px; text-align: center; position: relative; z-index: 1; }
.anel-stat {
  position: relative;
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white); border: 3px solid var(--c-blue);
  box-shadow: var(--shadow);
}
.credibilidade-item:nth-child(even) .anel-stat { border-color: var(--c-blue-light-2); }
.anel-orbita {
  position: absolute; inset: 0; border-radius: 50%;
}
.anel-orbita.girando { animation: girarAnel 1.4s linear forwards; }
.anel-dot {
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-blue-light);
}
@keyframes girarAnel {
  0%   { transform: rotate(0deg);   opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0; }
}
.credibilidade-num { position: relative; z-index: 1; font-family: var(--font-heading); font-size: 1.8rem; color: var(--c-blue-dark); }
.credibilidade-item:nth-child(even) .credibilidade-num { color: var(--c-blue-light-2); }
.credibilidade-item p { font-family: var(--font-regular); font-size: 1rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════════
   HERO — PÁGINAS INTERNAS
   ══════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 150px) 0 110px;
  background-size: cover; background-position: center;
  color: var(--c-white);
  margin-bottom: -1px;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: 
  linear-gradient(180deg, rgba(5, 38, 61, 0.37), rgba(5,38,61,.72))
  /*linear-gradient(180deg, rgba(5,38,61,.86), rgba(5,38,61,.72));*/ }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.page-hero-titulo { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--c-white); margin-bottom: 14px; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 640px; }
.page-hero-botoes { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

/* ══════════════════════════════════════════════════════════════════
   BLOCOS GENÉRICOS DE CONTEÚDO
   ══════════════════════════════════════════════════════════════════ */
.bloco-titulo { font-size: clamp(1.5rem, 2.4vw, 2.05rem); margin-bottom: 18px; }
.bloco-titulo em { color: var(--c-blue-light-2); font-style: normal; }
.bloco-texto { color: var(--c-text-muted); font-size: 1.02rem; margin-bottom: 18px; }

/* ── Por que terceirizar (lista com ícones) ── */
.motivos-grid {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 44px; justify-content: center;
}
.motivo-card {
  flex: 1 1 220px;
  background: var(--c-bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  text-align: center;
}
@media (min-width: 1025px) {
  .motivo-card { flex: 0 1 calc(33.333% - 16px); }
}
.motivo-card svg { display: block; width: 34px; height: 34px; color: var(--c-blue-light); margin: 0 auto 16px; }
.motivo-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.motivo-card p { color: var(--c-text-muted); font-size: .92rem; }

/* ── Grade de serviços (cards) ── */
.servicos-grid {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; justify-content: center;
}
.servico-card {
  flex: 1 1 300px; max-width: 360px;
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.servico-card-img { height: 230px; overflow: hidden; position: relative; }
.servico-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.servico-card:hover .servico-card-img img { transform: scale(1.07); }
.servico-card-selo {
  position: absolute; left: 50%; bottom: 10px; z-index: 2; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  background: var(--c-blue); color: var(--c-white);
  border-radius: 999px; padding: 9px 18px 9px 11px;
  box-shadow: 0 8px 18px rgba(4,107,169,.35);
  max-width: calc(100% - 40px);
}
.servico-card:nth-child(even) .servico-card-selo { background: var(--c-blue); box-shadow: 0 8px 18px rgba(47,174,85,.35); }
.servico-card-selo svg { width: 18px; height: 18px; flex-shrink: 0; }
.servico-card-selo span { font-family: var(--font-regular); font-weight: 700; font-size: .84rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.servico-card-corpo { padding: 30px 24px 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; text-align: center; }
.servico-card-corpo h3 { font-size: 1.1rem; }
.servico-card-corpo p { color: var(--c-text-muted); font-size: .93rem; flex: 1; }
.servico-card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-regular); font-weight: 700; color: var(--c-blue); font-size: .9rem; }
.servico-card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.servico-card:hover .servico-card-link svg { transform: translateX(4px); }

/* ── Por que escolher (fundo com foto + overlay) ── */
.diferenciais-secao {
  position: relative;
  background: url('../imgs/home-planejamento-bg.jpg') center/cover no-repeat;
  text-shadow: 2px 2px 12px #00000075;
}
.diferenciais-secao::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(5, 38, 61, .82);
}
.diferenciais-secao .container { position: relative; z-index: 2; }
.diferenciais-secao .sec-label { color: var(--c-bg-light); }
.diferenciais-secao .sec-titulo { color: var(--c-white); }

.diferenciais-lista { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 36px; }
.diferencial-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; max-width: 560px; }
@media (min-width: 1025px) {
  .diferenciais-lista { flex-direction: row; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: 32px; }
  .diferencial-item { flex: 0 1 320px; max-width: 320px; }
}
.diferencial-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-blue); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.05rem;
}
.diferencial-item p { color: var(--c-text-muted); font-weight: 800; text-transform: uppercase; }

/* Seções com foto de fundo (Home e Sobre Nós): texto claro */
.diferenciais-secao .diferencial-item p { color: rgba(255,255,255,1.0); }

/* ── Certificações ── */
.certificacoes { background: var(--c-bg-light); padding: 60px 0; text-align: center; }
.cert-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; margin-top: 32px; }
.cert-badge {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: 999px;
  padding: 12px 24px; font-family: var(--font-regular); font-size: .88rem; font-weight: 600; color: var(--c-blue-dark);
  box-shadow: var(--shadow);
}
.cert-selo { display: inline-flex; align-items: center; }
.cert-selo img { height: 80px; width: auto; object-fit: contain; }

/* Galeria de fotos (certificações e reconhecimentos) */
.cert-galeria { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 44px; }
.cert-galeria-item {
  flex: 1 1 300px; max-width: 360px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--c-white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cert-galeria-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-galeria-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(5, 38, 61, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.aberto { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 88vw; max-height: 88vh; width: auto; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.lightbox-fechar {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: var(--c-white);
  transition: background .2s ease;
}
.lightbox-fechar:hover { background: rgba(255,255,255,.24); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: var(--c-white);
  transition: background .2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.24); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* ── Faixa CTA ── */
.cta-faixa {
  background: linear-gradient(115deg, var(--c-blue-dark), var(--c-blue));
  padding: 96px 0;
  text-align: center;
  margin: -1px 0;
}
.cta-faixa h2 { color: var(--c-white); font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 28px; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-faixa-img { overflow: hidden; border-radius: var(--radius); margin: 0 auto 28px; max-width: 1100px; }
.cta-faixa-img img { display: block; width: 100%; transition: transform 6s ease; }
.cta-faixa-img.is-visible img { transform: scale(1.12); }

/* ══════════════════════════════════════════════════════════════════
   SOBRE NÓS
   ══════════════════════════════════════════════════════════════════ */
.sobre-historia { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.sobre-historia-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
@media (min-width: 1250px) {
  .sobre-historia-texto { flex: 1 1 460px; }
}
@media (min-width: 1250px) {
  .sobre-historia-img { flex: 1 1 420px; }
}

.mvv-grid { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 44px; }
.mvv-card { flex: 1 1 300px; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); text-align: center; }
.mvv-card svg { display: block; width: 32px; height: 32px; color: var(--c-blue); margin: 0 auto 14px; }
.mvv-card svg.valores { width: 28px; height: 28px; } 
.mvv-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.mvv-card p, .mvv-card ul { color: var(--c-text-muted); font-size: .93rem; }
.mvv-card ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.mvv-card ul li { background: var(--c-blue-pale); color: var(--c-blue-dark); padding: 5px 12px; border-radius: 999px; font-size: .82rem; }

.citacao-bloco {
  background: var(--c-blue-dark);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  position: relative;
}
.citacao-bloco svg { width: 40px; height: 40px; color: var(--c-blue-light); margin: 0 auto 20px; }
.citacao-bloco p { color: var(--c-white); font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); max-width: 760px; margin: 0 auto; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════
   SERVIÇOS — ÍNDICE
   ══════════════════════════════════════════════════════════════════ */
.segmentos-lista { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.segmento-chip {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: 999px;
  padding: 10px 20px; font-size: .92rem; color: var(--c-blue-dark); font-family: var(--font-regular); font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   SERVIÇO — PÁGINA DE DETALHE
   ══════════════════════════════════════════════════════════════════ */
.servico-detalhe-grid { display: flex; gap: 56px; flex-wrap: wrap; }
.servico-detalhe-principal { flex: 2 1 520px; display: flex; flex-direction: column; gap: 44px; }
.servico-detalhe-lateral { flex: 1 1 300px; }

/* Indicado — imagem de um lado, texto/botão do outro (final da página) */
.servico-indicado { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.servico-indicado-img { flex: 1 1 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.servico-indicado-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.servico-indicado-texto { flex: 1 1 420px; text-align: center; }

.servico-bloco h2 { font-size: 1.35rem; margin-bottom: 18px; }
.servico-bloco-2-colunas { display: flex; flex-direction: row; flex-wrap: wrap;}
.servico-bloco.reveal.d2 { flex: 1 1 calc(50% - 5px); } 
.servico-bloco.reveal.d3 { flex: 1 1 calc(50% - 5px); } 
@media (max-width: 767px) {
  .servico-bloco.reveal.d2,
  .servico-bloco.reveal.d3 { flex: 1 2 calc(100% - 50px); } 
  .servico-bloco.reveal.d3 { margin-top: 35px; }
}
.custa-hoje-lista { display: flex; flex-direction: column; gap: 14px; }
.custa-hoje-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #FDF3F1; border: 1px solid #F5DAD3; border-radius: 10px; padding: 16px 18px;
}
.custa-hoje-item svg { width: 20px; height: 20px; color: #D2492E; flex-shrink: 0; margin-top: 2px; }
.custa-hoje-item p { font-size: .95rem; color: var(--c-text); }

/* Limpeza Predial: cards em 2 por linha + botão "Quero orçamento" centralizado */
.servico-detalhe-full .custa-hoje-lista { flex-direction: row; flex-wrap: wrap; }
.servico-detalhe-full .custa-hoje-item { flex: 1 1 calc(50% - 7px); }
.servico-cta-centro { text-align: center; }

.solucao-bloco {
  background: var(--c-blue-pale);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-left: 4px solid var(--c-blue);
}
.solucao-bloco p { font-size: 1.02rem; color: var(--c-blue-dark); font-family: var(--font-regular); }

.check-lista { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; gap: 12px; align-items: center; font-size: .97rem; }
.check-item svg { width: 20px; height: 20px; color: var(--c-blue-light); flex-shrink: 0; }

.servico-lateral-card {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 24px);
  display: flex; flex-direction: column; gap: 18px; text-align: center;
}
.servico-lateral-card img { border-radius: 10px; }
.servico-lateral-card h3 { font-size: 1.05rem; }
.servico-lateral-card p { color: var(--c-text-muted); font-size: .9rem; }
.indicado-tag { background: var(--c-bg-light); border-radius: 10px; padding: 14px 16px; font-size: .88rem; color: var(--c-text-muted); }
.indicado-tag strong { display: block; color: var(--c-blue-dark); font-family: var(--font-regular); margin-bottom: 4px; }

/* ══════════════════════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════════════════════ */
.contato-grid { display: flex; gap: 56px; flex-wrap: wrap; }
.contato-info { flex: 1 1 340px; display: flex; flex-direction: column; gap: 22px; }
.contato-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contato-info-item svg { width: 24px; height: 24px; fill: var(--c-blue); flex-shrink: 0; margin-top: 2px; }
.contato-info-item .lbl { display: block; font-family: var(--font-regular); font-weight: 700; color: var(--c-blue-dark); font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.contato-info-item a, .contato-info-item p { color: var(--c-text-muted); font-size: .98rem; }
.contato-form-col { flex: 1 1 460px; }
.contato-form-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-lg); }

/* ── Campos de formulário (compartilhado) ── */
@media (min-width: 1025px) {
  #formCurriculo .campo { margin-bottom: 20px; }
  #formCurriculo .campo:nth-child(1) { width: 69%; float: left; margin-right: 10px; }
  #formCurriculo .campo:nth-child(2) { width: 30%; float: left; }
  #formCurriculo .campo:nth-child(3) { width: 32.65%; float: left; margin-right: 10px; }
  #formCurriculo .campo:nth-child(4) { width: 32.65%; float: left; margin-right: 10px; }
  #formCurriculo .campo:nth-child(5) { width: 32.65%; float: left; }
}

.campo label { display: block; font-family: var(--font-regular); font-weight: 700; font-size: .88rem; color: var(--c-blue-dark); }
.campo .req { color: var(--c-blue-light); }
.campo input, .campo select { margin-bottom: 10px; }
.campo input, .campo select, .campo textarea {
  width: 100%; padding: 8px 10px; border: 1.5px solid var(--c-border); border-radius: 8px;
  color: var(--c-text); background: var(--c-white); transition: border-color .2s ease;
}
.campo input:focus, .campo select:focus, .campo textarea:focus { outline: none; border-color: var(--c-blue); }
.campo textarea { min-height: 110px; resize: vertical; }
.campo select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.contador { text-align: right; font-size: .78rem; color: var(--c-text-muted); margin-top: 4px; }
.campo-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--c-text-muted); }
.campo-checkbox input { width: auto; margin-top: 3px; }
.campo-file { position: relative; }
.campo-file-label {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  border: 1.5px dashed var(--c-border); border-radius: 8px; padding: 22px 16px;
  color: var(--c-text-muted); font-size: .92rem; text-align: center; transition: border-color .2s ease, background .2s ease;
}
.campo-file input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.campo-file input:hover + .campo-file-label,
.campo-file:hover .campo-file-label { border-color: var(--c-blue); background: var(--c-blue-pale); }
.campo-file-nome { font-size: .82rem; color: var(--c-blue); margin-top: 6px; }
.campo-nota { font-size: .8rem; color: var(--c-text-muted); margin-top: 20px; }
.aviso-caixa { background: var(--c-bg-light); border-radius: 10px; padding: 16px 18px; font-size: .85rem; color: var(--c-text-muted); margin-top: 24px; }

/* ══════════════════════════════════════════════════════════════════
   RODAPÉ
   ══════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--c-blue-darker); color: rgba(255,255,255,.82); padding: 76px 0 0; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col { flex: 1 1 200px; }
.footer-col-logo { flex: 1 1 280px; }
.footer-logo-card { background: transparent; border-radius: 10px; padding: 0px; display: inline-flex; margin-bottom: 20px; }
.footer-logo-card img { height: 80px; filter: brightness(0) invert(1); }
.footer-sobre { font-size: .92rem; line-height: 1.7; margin-bottom: 22px; }
.footer-redes { display: flex; gap: 12px; }
.footer-redes a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: var(--c-white);
  transition: background .2s ease;
}
.footer-redes a svg { width: 18px; height: 18px; }
.footer-redes a:hover { background: var(--c-blue-light); }
.footer-col h4 { color: var(--c-white); font-size: 1rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .92rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--c-white); }
.footer-contato { display: flex; flex-direction: column; gap: 18px; }
.footer-contato li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contato svg { width: 19px; height: 19px; fill: var(--c-bg-light); flex-shrink: 0; margin-top: 2px; }
.footer-contato .lbl { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.footer-contato a, .footer-contato div { font-size: .92rem; }
.footer-contato a:hover { color: var(--c-white); }

.footer-certificacoes { border-bottom: 1px solid rgba(255,255,255,.1); padding: 28px 0; }
.footer-certificacoes-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-cert-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); }
.footer-cert-list { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.footer-cert-badge { background: rgba(255,255,255,.08); border-radius: 999px; padding: 7px 16px; font-size: .8rem; color: rgba(255,255,255,.8); }
.footer-cert-selo {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-white); border-radius: 8px; padding: 8px 12px;
}
.footer-cert-selo img { height: 40px; width: auto; object-fit: contain; display: block; }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom-inner p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-listamais img { width: 180px; }

/* ══════════════════════════════════════════════════════════════════
   MODAL — SOLICITAR ORÇAMENTO
   ══════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800; background: rgba(5,38,61,.65);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.aberto { opacity: 1; visibility: visible; }
.modal {
  background: var(--c-white); border-radius: var(--radius); max-width: 460px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: scale(.94); transition: transform .3s ease;
}
.modal-overlay.aberto .modal { transform: scale(1); border: 1px solid #aaa; }
.modal-cabecalho { background: var(--c-blue-dark); padding: 28px 30px; border-radius: var(--radius) var(--radius) 0 0; position: relative; }
.modal-cabecalho h3 { color: var(--c-white); font-size: 1.25rem; margin-bottom: 6px; }
.modal-cabecalho p { color: rgba(255,255,255,.75); font-size: .88rem; }
.modal-nome-setor { color: var(--c-white); font-weight: 600; }
.modal-fechar { position: absolute; top: 20px; right: 22px; color: var(--c-white); }
.modal-corpo { padding: 30px; }
body.modal-aberto { overflow: hidden; }

/* ── Painel escolha de setor WhatsApp ── */
.whats-painel-overlay {
  position: fixed; inset: 0; z-index: 800; background: rgba(5,38,61,.55);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.whats-painel-overlay.aberto { opacity: 1; visibility: visible; }
.whats-painel {
  position: fixed; bottom: 100px; right: 24px; z-index: 810;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.whats-painel.aberto { opacity: 1; visibility: visible; transform: none; }
.whats-painel-caixa {
  background: var(--c-white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 24px; width: 300px; position: relative; text-align: center;
}
.whats-painel-caixa .modal-fechar { color: var(--c-text-muted); top: 16px; right: 16px; }
.whats-painel-caixa h4 { font-size: 1.05rem; margin-bottom: 6px; }
.whats-painel-caixa > p { font-size: .88rem; color: var(--c-text-muted); margin-bottom: 18px; }
.whats-painel-opcao {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 10px; border: 1.5px solid var(--c-border);
  margin-bottom: 10px; transition: border-color .2s ease, background .2s ease;
  width: 100%; justify-content: center;
}
.whats-painel-opcao:last-child { margin-bottom: 0; }
.whats-painel-opcao:hover { border-color: #25D366; background: #F3FBF6; }
.whats-painel-opcao svg { width: 26px; height: 26px; color: #25D366; }
.whats-painel-opcao span { display: flex; flex-direction: column; }
.whats-painel-opcao strong { font-family: var(--font-regular); font-size: 1rem; font-weight: 600; color: var(--c-text); }
.whats-painel-opcao small { color: var(--c-text-muted); font-size: .82rem; }

/* ── Botão flutuante WhatsApp ── */
.whats-flutuante {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.whats-flutuante:hover { transform: scale(1.08); }
.whats-flutuante svg { width: 30px; height: 30px; }

/* ── Barra mobile fixa ── */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--mobile-bar);
  height: 58px;
  align-items: stretch;
}
.mobile-bar-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: var(--c-white); font-size: .72rem; font-family: var(--font-regular); font-weight: 600; letter-spacing: .02em;
  transition: background .2s ease;
}
.mobile-bar-btn:hover { background: rgba(255,255,255,.08); }
.mobile-bar-btn + .mobile-bar-btn { border-left: 1px solid rgba(255,255,255,.15); }

/* ── Voltar ao topo ── */
#backToTop {
  position: fixed; bottom: 100px; right: 30px; z-index: 350;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-blue-dark); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1250px) {
  .home-hero { min-height: auto; padding-bottom: 100px; padding-top: 160px; }
  .home-hero-conteudo { max-width: 100%; text-align: center; align-items: center; }
  .home-hero-botoes { justify-content: center; }
  /* .home-hero::before { background: linear-gradient(180deg, rgba(5,38,61,.88), rgba(5,38,61,.72)); } */
  .home-hero::before { background-color: rgba(28, 59, 79, 0.4); }
  .sobre-historia { flex-direction: column; }
  .sobre-historia-img { order: 2; }
}

@media (max-width: 1024px) {
  .main-nav, .header-phone { display: none; }
  .mobile-toggle { display: flex; transform: scale(1.35); margin-right: 10px; }
  .site-header-actions { gap: 16px; }
  .mobile-bar { display: flex; }
  .site-footer { padding-bottom: 0; }
  .whats-flutuante { /*bottom: 72px;*/ display: none; }
  #backToTop { bottom: 70px; }
  .footer-bottom { padding-bottom: 74px; }
}

@media (max-width: 900px) {
  .site-header-actions .btn-cta { display: none; }
}

/* Tablet: rodapé em duas colunas por linha */
@media (max-width: 1024px) and (min-width: 768px) {
  .footer-col, .footer-col-logo { flex: 1 1 calc(50% - 22px); }
}

@media (max-width: 767px) {
  .home-hero { background: var(--c-blue-darker); }
  .hero-papel { display: none; }
  .home-hero-bg { display: block; background-image: url('../imgs/home-hero-mobile.jpg'); }
  .home-hero::before { opacity: 1; animation: none; }
  .hero-mosaico { display: none; }
  .sec-pad { padding: 64px 0; }
  .container { padding: 0 18px; }
  .servico-detalhe-grid { flex-direction: column; }
  .servico-lateral-card { position: static; }
  .contato-grid { flex-direction: column; }
  .home-hero-botoes .btn, .cta-faixa .btn { width: 100%; }
  .home-hero-botoes { flex-direction: column; }
  .credibilidade-grid::before { display: none; }
  .citacao-bloco { padding: 40px 24px; }
  .whats-painel { right: 12px; left: 12px; bottom: 90px; }
  .whats-painel-caixa { width: 100%; }
  #backToTop { right: 20px; }
  .credibilidade-item { flex: 1 1 160px; max-width: 320px; }
  .sobre-historia-texto { flex: none; }
}

.btn.btn-cta.reveal.is-visible {
  margin-top: 20px
}

#formOrcamento .btn.btn-cta.btn-full {
  margin-top: 20px;   
}