/* ═══════════════════════════════════════
   COTESA — Nova Home (jul/2026)
   Componentes das 10 dobras · complementa custom.css
   ═══════════════════════════════════════ */

/* ══════════════════════════════════════
   1 · HERO CARROSSEL
   ══════════════════════════════════════ */
.hero-slider {
  position: relative;
  min-height: 660px;
  height: calc(100vh - 190px);
  max-height: 780px;
  background: #141c3c;
  overflow: hidden;
  color: #fff;
}
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hs-slide.active { opacity: 1; visibility: visible; z-index: 2; }
/* Camada da foto: zoom lento (Ken Burns) sem afetar o texto */
.hs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  will-change: transform;
}
.hs-slide.active .hs-bg { animation: hs-zoom 8s ease-out forwards; }
@keyframes hs-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .hs-slide.active .hs-bg { animation: none; }
}
.hs-slide::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(19,28,61,.78) 0%, rgba(19,28,61,.45) 45%, rgba(19,28,61,.18) 75%, rgba(19,28,61,.30) 100%);
}
.hs-slide::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(15,22,48,.55));
}
.hs-content {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 40px 120px;
}
.hs-content .hero-title,
.hs-content .hero-title-h2 { max-width: 640px; }
.hs-slide .hs-sub {
  max-width: 520px;
  color: rgba(255,255,255,.85);
  font-size: 14.5px;
  line-height: 1.8;
  margin: -10px 0 34px;
}
/* Slides B-E usam h2 com o mesmo visual do h1 */
.hero-title-h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: .005em;
  margin: 0 0 36px;
  max-width: 560px;
  text-transform: uppercase;
  color: #fff;
}
.hero-title-h2 b { font-weight: 800; }

/* Navegação do carrossel */
.hs-nav {
  position: absolute;
  left: 40px; bottom: 34px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1360px) {
  .hs-nav { left: calc(50% - 600px); }
}
.hs-dot {
  width: 34px; height: 4px;
  border: 0; padding: 0;
  border-radius: 2px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.hs-dot.active { background: rgba(255,255,255,.5); }
.hs-dot.active::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--orange);
  animation: hs-progress 6.5s linear forwards;
  transform-origin: left;
}
.hero-slider.paused .hs-dot.active::after { animation-play-state: paused; }
@keyframes hs-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.hs-arrows {
  position: absolute;
  right: 40px; bottom: 22px;
  z-index: 6;
  display: flex;
  gap: 8px;
}
.hs-prev, .hs-next {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(19,28,61,.35);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s;
  backdrop-filter: blur(3px);
}
.hs-prev:hover, .hs-next:hover { background: var(--orange); border-color: var(--orange); }

/* Chip da frente (kicker acima do eyebrow) */
.hs-chip {
  display: inline-block;
  background: rgba(238,128,51,.16);
  border: 1px solid rgba(238,128,51,.5);
  color: var(--orange-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════
   2 · CONTADORES
   ══════════════════════════════════════ */
.counters-band {
  background: var(--navy-deep);
  border-top: 4px solid var(--orange);
  position: relative;
  z-index: 7;
}
.counters-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 40px 38px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cnt {
  text-align: center;
  position: relative;
  padding: 6px 8px;
}
.cnt + .cnt::before {
  content: "";
  position: absolute;
  left: -9px; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.cnt-num {
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: .01em;
}
.cnt-num .cnt-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-2);
  margin-left: 4px;
}
.cnt-label {
  margin-top: 10px;
  color: #97a0bd;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.5;
}
.counters-note {
  text-align: center;
  color: #5c6685;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 20px 16px;
}

/* ══════════════════════════════════════
   3 · AS 5 SOLUÇÕES
   ══════════════════════════════════════ */
.sol-section { padding: 100px 0 90px; }
.sol-head { text-align: center; margin-bottom: 54px; }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(20,28,60,.28);
  border-color: transparent;
}
.sol-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  opacity: 0;
  transition: opacity .25s;
  z-index: 3;
}
.sol-card:hover::before { opacity: 1; }
.sol-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--soft);
}
.sol-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.sol-card:hover .sol-photo img { transform: scale(1.06); }
.sol-num {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .12em;
  background: rgba(19,28,61,.55);
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(3px);
}
.sol-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sol-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 8px;
}
.sol-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.sol-card p {
  font-size: 12.5px;
  line-height: 1.7;
  color: #8b8fa1;
  margin: 0 0 18px;
  flex: 1;
}
.sol-card .cta-link { font-size: 11px; letter-spacing: .2em; }

/* ══════════════════════════════════════
   4 · FAIXA DATA CENTERS
   ══════════════════════════════════════ */
.dc-band {
  position: relative;
  /* foto com degradê navy embutido à esquerda (bg-datashow) */
  background: url('../assets/bg-datashow.jpg') center / cover no-repeat, var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 84px 0;
}
.dc-band::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.dc-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}
.dc-text .pill { margin-bottom: 16px; }
.dc-text h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.dc-text h2 b { font-weight: 800; }
.dc-text p {
  color: #b9bed1;
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
  max-width: 640px;
}
.dc-text p b { color: #fff; }
.dc-cta { flex-shrink: 0; }

/* ══════════════════════════════════════
   5 · CLIENTES POR SEGMENTO
   ══════════════════════════════════════ */
.clients-section { padding: 96px 0 90px; background: var(--soft); border-top: 4px solid var(--orange); }
.cli-head { text-align: center; margin-bottom: 40px; }
.cli-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cli-tab {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.cli-tab:hover,
.cli-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.cli-panel {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 84px;
  align-items: center;
}
.cli-panel.active { display: flex; }
.cli-panel-marquee.active { display: block; }

/* Logos em cinza, em cartões brancos uniformes */
.cli-logo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 26px;
  min-height: 84px;
  min-width: 150px;
  box-shadow: 0 10px 24px -18px rgba(20,28,60,.16);
  transition: box-shadow .25s, transform .25s;
}
.cli-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -20px rgba(20,28,60,.26);
}
.cli-logo img {
  height: 38px;
  width: auto;
  filter: grayscale(1);
  opacity: .65;
  transition: filter .3s, opacity .3s, transform .3s;
}
.cli-logo:hover img { filter: none; opacity: 1; transform: translateY(-12px); }

/* Nome do cliente: aparece dentro do cartão ao passar o mouse */
.cli-name {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.28;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.cli-logo:hover .cli-name { opacity: 1; transform: translateY(0); }
.cli-logo-txt {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a6acbb;
  white-space: nowrap;
  transition: color .3s;
}
.cli-logo-txt:hover { color: var(--navy); }

/* Carrossel infinito (aba TODOS) */
.cli-marquee {
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.cli-track {
  display: flex;
  width: max-content;
  animation: cli-scroll 32s linear infinite;
}
.cli-marquee:hover .cli-track { animation-play-state: paused; }
.cli-set {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}
@keyframes cli-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cli-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .cli-set[aria-hidden="true"] { display: none; }
}
.cli-note {
  text-align: center;
  margin-top: 34px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════
   6 · POR QUE A COTESA
   ══════════════════════════════════════ */
.why-section { padding: 100px 0 0; }
.why-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}
.proof-card {
  position: relative;
  display: block;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy);
  box-shadow: 0 24px 44px -24px rgba(20,28,60,.35);
  transition: transform .25s, box-shadow .25s;
}
a.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 54px -26px rgba(20,28,60,.45);
}
.proof-card .pc-img {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.proof-card:hover .pc-img { transform: scale(1.06); }
.proof-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,28,61,0) 30%, rgba(19,28,61,.55) 62%, rgba(15,22,48,.92) 100%);
}
.pc-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 24px 22px 22px;
  color: #fff;
}
.pc-kicker {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 8px;
}
.pc-body h3 {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.pc-body p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0;
}
.pc-iso-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.pc-iso-row img { width: 52px; height: auto; }

/* ══════════════════════════════════════
   7 · LIVE SERVICE + NOTÍCIAS
   ══════════════════════════════════════ */
.live-section { padding: 96px 0 40px; background: var(--soft); }
.live-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.live-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 26px 26px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.live-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.lv-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 16px;
}
.lv-status .lv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.lv-status.on .lv-dot { animation: lv-pulse 1.4s ease infinite; }
@keyframes lv-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(238,128,51,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(238,128,51,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,128,51,0); }
}
.lv-status.done { color: #9fe0b5; }
.lv-status.done .lv-dot { background: #4cc073; }
.lv-status.next { color: #a8b6e8; }
.lv-status.next .lv-dot { background: #7d90d8; }
.live-card h3 {
  font-size: 15.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.25;
  margin: 0 0 10px;
}
.live-card p {
  font-size: 12.5px;
  line-height: 1.65;
  color: #b9bed1;
  margin: 0;
}
.live-note {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-sub { padding: 70px 0 100px; background: var(--soft); }

/* ══════════════════════════════════════
   8 · FAQ TÉCNICO (AOI)
   ══════════════════════════════════════ */
.faq-section { padding: 100px 0; }
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item.open {
  border-color: transparent;
  box-shadow: 0 20px 44px -22px rgba(20,28,60,.25);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: 0;
  padding: 20px 26px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.35;
}
.faq-q .fq-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 16px;
  font-weight: 400;
  transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .fq-ic {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 14px;
  line-height: 1.85;
  color: #5b6177;
}
.faq-a-inner b { color: var(--ink); }

/* ══════════════════════════════════════
   9 · ESG & GRUPO
   ══════════════════════════════════════ */
.esg-section {
  position: relative;
  padding: 100px 0 104px;
  /* técnico à esquerda (fundo-esg); conteúdo desloca para a direita.
     Posição percentual: empurra a imagem p/ esquerda proporcionalmente em qualquer tela */
  background: url('../assets/fundo-esg.jpg') 15% center / cover no-repeat, var(--soft);
  border-top: 4px solid var(--orange);
  overflow: hidden;
}
.esg-section::before {
  /* véu claro progressivo: mantém o técnico limpo e dá contraste ao conteúdo */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,22,48,.06) 0%, transparent 24%, rgba(243,244,247,.42) 55%, rgba(243,244,247,.68) 100%);
  pointer-events: none;
}
.esg-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 76%;
}
.esg-head { text-align: center; margin-bottom: 50px; }
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}
.esg-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 30px;
  box-shadow: 0 16px 36px -24px rgba(20,28,60,.2);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.esg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 54px -28px rgba(20,28,60,.3);
}
.esg-letter {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(238,128,51,.13);
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.esg-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  margin: 0 0 6px;
}
.esg-iso {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.esg-card p {
  font-size: 13px;
  line-height: 1.75;
  color: #8b8fa1;
  margin: 0 0 20px;
  flex: 1;
}
.esg-card .cta-link { font-size: 11px; letter-spacing: .2em; }

/* Faixa grupo VINCI/CYMI */
.esg-group {
  position: relative;
  background: var(--navy);
  border-radius: 16px;
  padding: 46px 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
}
.esg-group .network-bg::before { border-radius: 16px; }
.eg-text { position: relative; z-index: 2; }
.eg-text h3 {
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 10px;
}
.eg-text h3 b { font-weight: 800; }
.eg-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  color: #b9bed1;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.eg-stats b { color: var(--orange-2); font-weight: 800; }
.eg-cta { position: relative; z-index: 2; flex-shrink: 0; }

/* ══════════════════════════════════════
   10 · CTA FINAL
   ══════════════════════════════════════ */
.final-cta {
  position: relative;
  background: var(--navy-2);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}
.final-cta .network-bg::before { opacity: .5; }
.final-cta .inner { position: relative; z-index: 2; }
.final-cta h2 {
  font-weight: 500;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 16px;
}
.final-cta h2 b { font-weight: 800; }
.final-cta p {
  color: #b9bed1;
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
}
.fc-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .06em;
  transition: color .2s;
}
.cta-phone:hover { color: var(--orange-2); }
.cta-phone svg { width: 20px; height: 20px; color: var(--orange); }

/* ══════════════════════════════════════
   RODAPÉ — régua compliance
   ══════════════════════════════════════ */
.foot-compliance {
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0 4px;
}
.fc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.fc-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
}
.fc-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  color: var(--orange-2);
}
.fc-links a {
  font-size: 11px;
  letter-spacing: .18em;
  color: #c8ccd9;
  text-transform: uppercase;
  transition: color .2s;
}
.fc-links a:hover { color: var(--orange-2); }
.fc-links a.fc-title { color: var(--orange-2); }
.fc-links a.fc-title:hover { color: #fff; }
.fc-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fc-seals img { height: 46px; width: auto; }
.fc-group {
  font-size: 11px;
  letter-spacing: .18em;
  color: #c8ccd9;
  margin-left: 12px;
  white-space: nowrap;
}
.fc-group b { color: #fff; font-weight: 800; }

/* ══════════════════════════════════════
   MENU — badges e idioma desabilitado
   ══════════════════════════════════════ */
.dd-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: 2px;
  margin-left: 7px;
}
.lang-option.disabled { opacity: .55; pointer-events: none; cursor: default; }
.lang-soon {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--orange);
  border: 1px solid rgba(238,128,51,.5);
  padding: 2px 6px;
  border-radius: 4px;
}
.mobile-lang-opt.disabled { opacity: .5; pointer-events: none; }

/* ══════════════════════════════════════
   MEGA MENU (desktop)
   Painel 100% da largura ancorado na navbar;
   conteúdo preso no container de 1280px.
   ══════════════════════════════════════ */
.nav-dropdown { position: static; }
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 34px 60px -24px rgba(20,28,60,.35);
  opacity: 0;
  visibility: hidden; /* some do hit-testing; sem pointer-events para manter o período de graça do fade */
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 320;
}
.mega-panel::before {
  /* faixa invisível acima do painel: segura o hover na travessia link → painel */
  content: "";
  position: absolute;
  top: -24px; left: 0; right: 0;
  height: 24px;
}
.nav-dropdown:hover .mega-panel,
.nav-dropdown:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 40px 40px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: stretch;
}
.mega-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
}
.mega-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,28,61,.05) 12%, rgba(19,28,61,.62) 52%, rgba(15,22,48,.95) 100%);
}
.mega-photo-body {
  position: relative;
  z-index: 2;
  padding: 22px 24px;
  color: #fff;
}
.mp-kicker {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 8px;
}
.mega-photo-body .mp-title {
  display: block;
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.mega-photo-body p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 26px;
  align-content: center;
}
.mega-link {
  display: block;
  padding: 13px 16px;
  border-radius: 10px;
  transition: background .15s;
}
.mega-link:hover,
.mega-link.active { background: var(--soft); }
.ml-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .15s;
}
.mega-link:hover .ml-title { color: var(--orange); }
.ml-desc {
  display: block;
  font-size: 12px;
  color: #6b7089; /* contraste AA sobre o painel branco do mega menu */
  line-height: 1.55;
  margin-top: 3px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .mega-inner { grid-template-columns: 270px 1fr; gap: 30px; padding: 30px 32px 34px; }
  .esg-content { max-width: 100%; }
  .esg-section::before { background: rgba(243,244,247,.66); }
}

/* ══════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════ */
@media (max-width: 1199.98px) {
  .sol-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card { aspect-ratio: 4/3; }
  .counters-inner { grid-template-columns: repeat(3, 1fr); gap: 26px 18px; }
  .cnt + .cnt::before { display: none; }
}
@media (max-width: 991.98px) {
  .hero-slider { height: auto; min-height: 560px; }
  .hs-content { padding: 120px 24px 130px; }
  .hero-title-h2 { font-size: 32px; }
  .hs-nav { left: 24px; }
  .hs-arrows { right: 24px; }
  .dc-inner { flex-direction: column; align-items: flex-start; }
  .dc-text h2 { font-size: 30px; }
  /* no mobile o prédio fica atrás do texto: véu navy para legibilidade */
  .dc-band {
    background: linear-gradient(rgba(19,28,61,.82), rgba(19,28,61,.82)),
                url('../assets/bg-datashow.jpg') center / cover no-repeat, var(--navy);
  }
  .esg-grid { grid-template-columns: 1fr; }
  .esg-group { flex-direction: column; align-items: flex-start; padding: 36px 30px; }
  .esg-content { max-width: 100%; }
  .esg-section::before { background: rgba(243,244,247,.8); }
  .live-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 30px; }
}
@media (max-width: 767.98px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-inner { grid-template-columns: repeat(2, 1fr); padding: 34px 24px 28px; }
  .cnt-num { font-size: 32px; }
  .cnt-num .cnt-unit { font-size: 15px; }
  .faq-q { font-size: 13px; padding: 16px 20px; }
  .faq-a-inner { padding: 0 20px 20px; }
}
@media (max-width: 575.98px) {
  .sol-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hs-slide .hs-sub { font-size: 13.5px; }
  .hero-title-h2 { font-size: 28px; }
  .cli-logo-txt { font-size: 13px; }
  .cli-logo img { height: 30px; }
  .cli-logo { padding: 12px 18px; min-height: 60px; min-width: 120px; }
  .cli-set { gap: 14px; padding-right: 14px; }
  .fc-seals { flex-wrap: wrap; }
  .fc-group { margin-left: 0; white-space: normal; }
}

/* ══════════════════════════════════════
   TÍTULOS EM ROIHU (componentes da home)
   ══════════════════════════════════════ */
.hero-title-h2, .sol-card h3, .dc-text h2, .pc-body h3,
.live-card h3, .esg-card h3, .eg-text h3, .final-cta h2,
.cnt-num {
  font-family: var(--font-title);
}

/* Botão "Preferências de cookies" no rodapé: reabre o banner LGPD.
   É <button> por ser ação, não navegação — aqui só se veste de link
   para ficar igual aos vizinhos da mesma linha. */
.fc-links .fc-cookies {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 11px;
  letter-spacing: .18em;
  color: #c8ccd9;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
}
.fc-links .fc-cookies:hover { color: var(--orange-2); }
