/**
 * Bridge3 — Home (front-page). Estilos por seção, fiéis ao protótipo.
 */

/* ============ HERO-BAND (hero + clientes, fundo contínuo) ============ */
.hero-band {
  position: relative;
  isolation: isolate;
  background: linear-gradient(99.88deg, var(--c-navy) 0%, var(--c-teal) 100%);
  color: var(--c-on-dark);
  overflow: hidden;
}
/* Textura de linhas topográficas sobre todo o bloco */
.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/textura.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}

/* ============ HERO ============ */
.hero {
  background: transparent;
  color: var(--c-on-dark);
  text-align: center;
  /* espaço extra no topo para a pílula do header sobreposta */
  padding-top: clamp(8rem, 6rem + 8vw, 12rem);
  padding-bottom: clamp(2rem, 1.5rem + 2.5vw, 4rem);
}
.hero__inner {
  max-width: 64rem;
  margin-inline: auto;
}
.hero__title {
  font-family: var(--font-sans);
  font-weight: 500;
  /* Fluido: 36px mobile → 56px desktop — aligned with .cursos-hero__title. */
  font-size: clamp(2.25rem, 1.4rem + 3.6vw, 3.5rem);
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: var(--CInza-50, #f3f3f3);
  max-width: 18em;
  margin-inline: auto;
}
@media (max-width: 760px) {
  .hero__title {
    font-weight: 700;
  }
}
.hero__subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  color: var(--CInza-50, #f3f3f3);
  max-width: 46rem;
  margin: 8px auto 0;
}
@media (max-width: 760px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}
@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin-inline: auto;
    gap: 8px;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

/* ============ CLIENTES ============ */
.clients {
  padding-block: var(--space-7);
  background: var(--c-surface);
}
.clients--dark {
  background: transparent;
  padding-top: 0;
  padding-bottom: var(--space-8);
}
.clients__title {
  text-align: center;
  font-size: var(--step-0);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
}
.clients--dark .clients__title {
  color: #fff;
  font-size: var(--step-1);
  letter-spacing: 0.01em;
  text-transform: none;
}

/* Strip de logos como imagem única (clientes/parceiros) */
.clients__logos,
.partners__logos {
  display: flex;
  justify-content: center;
}
.logo-strip-img {
  width: 100%;
  max-width: 760px;
  height: auto;
}
.partners__logos .logo-strip-img {
  max-width: 720px;
}

.logo-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 1rem + 4vw, 4rem);
}
.logo-strip--clients {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  /* Figma Clientes 1070:15408 — ~36px between logos (space-between on 3656px strip). */
  gap: 36px;
}
.logo-strip--clients .logo-strip__item {
  flex: 0 0 auto;
  width: auto;
  height: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-strip--clients img {
  display: block;
  height: 28px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-marquee .logo-strip--clients {
  flex-wrap: nowrap;
}
.logo-strip__item {
  display: grid;
  place-items: center;
  min-height: 48px;
}
.logo-strip--mono img {
  filter: grayscale(1);
  opacity: 0.7;
  transition:
    filter var(--t),
    opacity var(--t);
  max-height: 56px;
  width: auto;
}
.logo-strip--mono img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.logo-wordmark {
  font-weight: var(--fw-bold);
  font-size: var(--step-1);
  color: var(--c-navy-500);
  opacity: 0.65;
  letter-spacing: 0.01em;
}

/* Marquee rotativo das logos (efeito de esteira infinita).
   Duas cópias idênticas do conteúdo rolam de translateX(0) a -50%, de modo
   que ao completar o ciclo a segunda cópia ocupa exatamente a posição da
   primeira — loop contínuo, sem emenda. */
.logo-marquee {
  /* Faixa longa (26 logos): ciclo lento para leitura confortável. */
  --logo-marquee-duration: 120s;
  /* Costura = gap interno das logos (Figma ~36px). */
  --logo-marquee-gap: 36px;
  width: 100%;
  /* Confina o efeito à mesma largura que a imagem-strip ocupava, centralizada:
     as logos rolam dentro desse quadro (não na largura toda do hero). */
  max-width: 760px;
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logo-marquee-scroll var(--logo-marquee-duration) linear infinite;
}
.logo-marquee__group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  /* Espaço entre as cópias na costura; casa com o gap interno das logos. */
  padding-right: var(--logo-marquee-gap);
}
/* Pause only on fine pointers — avoids “freeze” while scrolling on touch/trackpad. */
@media (hover: hover) and (pointer: fine) {
  .logo-marquee:hover .logo-marquee__track {
    animation-play-state: paused;
  }
}
/* Strip como imagem única: precisa de largura intrínseca dentro da trilha.
   A tira padrão (clients-strip.webp, 900x42) traz ~78px de espaço vazio à esquerda
   e ~80px à direita; margens negativas removem esse vão para que, ao repetir, a
   próxima logo apareça já no espaçamento normal (sem um grande buraco na costura). */
.logo-marquee .logo-strip-img {
  width: auto;
  max-width: none;
  height: 42px;
  margin-left: -78px;
  margin-right: -80px;
}
/* Caso a fonte seja a lista de logos individuais, não deixar quebrar linha. */
.logo-marquee .logo-strip {
  flex-wrap: nowrap;
}
@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .logo-marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .logo-marquee__group {
    padding-right: 0;
  }
  .logo-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* ============ NÚMEROS + PARCERIAS (Figma `289:4930`) ============ */
.stats.section {
  padding-block: 64px;
}
.stats__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.stats .section__head,
.stats__head {
  max-width: 1020px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
#stats-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #294458;
}
.stats .section__head p,
.stats__head p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #294458;
  margin: 0;
}
.stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.stat {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 17px;
  border: 1px solid #76cccf;
  border-radius: 24px;
  background: var(--c-surface-muted, #f3f3f3);
  text-align: center;
  box-shadow:
    0 0 2px rgba(0, 0, 0, 0.08),
    0 4px 4px rgba(0, 0, 0, 0.12);
}
.stat__value {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 54px;
  line-height: 80px;
  letter-spacing: 0.22px;
  text-align: center;
  color: var(--Terracota-500, #c1681b);
}
.stat__label {
  display: block;
  margin-top: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.44px;
  text-align: center;
  color: var(--Azul-500, #294458);
}

.partners {
  width: 100%;
  max-width: 1020px;
  margin-top: 0;
  text-align: center;
}
.partners--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
}
.partners__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.partners__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  color: var(--Azul-500, #294458);
  margin: 0;
}
.partners__strip {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.partners__strip--institutional {
  width: 526px;
  max-width: min(526px, 100%);
  height: auto;
}
.partners__strip--software {
  width: 236px;
  max-width: min(236px, 100%);
  height: auto;
}

/* ============ APRENDER (2 cards) ============ */
/* Árvore de escolha — Figma 376:13069 */
.aprender {
  position: relative;
  isolation: isolate;
  padding-block: 64px;
  background: var(--grad-bridge3);
}
.aprender::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/textura.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}
.aprender .container {
  max-width: 900px;
}
.aprender .section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 900px;
  margin-bottom: 48px;
}
#aprender-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 36px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  color: var(--CInza-50, #F3F3F3);
}
.aprender .section__head p {
  margin-top: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: var(--CInza-50, #F3F3F3);
}
.aprender__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.aprender-card,
.choice-card {
  background: var(--CInza-50, #f3f3f3);
  color: var(--c-body);
  border: 1px solid var(--c-ciano-400, #76cccf);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aprender .choice-card {
  flex: 1 1 0;
  min-width: min(100%, 368px);
}
.choice-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.choice-card__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.aprender-card .aprender-card__title,
.choice-card .choice-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 0;
  color: var(--Azul-700, #192C3A);
}
.aprender-card__text,
.choice-card__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: var(--Azul-700, #192C3A);
}
.aprender-card__list,
.choice-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.aprender-card__list li,
.choice-card__list li {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.aprender-card__list li span,
.choice-card__list li span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--Azul-700, #192C3A);
}
.aprender-card__list .aprender-card__check,
.choice-card__list .choice-card__check {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--Azul-700, #192C3A);
  flex-shrink: 0;
}
.aprender-card__actions,
.choice-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aprender-card__actions .btn,
.choice-card__actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-radius: 8px;
  box-shadow: none;
}
.aprender-card__actions .btn--accent,
.choice-card__actions .btn--accent {
  background: var(--c-accent);
  color: var(--CInza-50, #f3f3f3);
}
.aprender-card__actions .btn--accent:hover,
.choice-card__actions .btn--accent:hover {
  background: var(--c-accent-700);
  color: #fff;
  box-shadow: none;
  transform: none;
}
.aprender-card__actions .btn--outline,
.choice-card__actions .btn--outline {
  color: var(--c-navy);
  border: 1px solid var(--c-navy);
  background: transparent;
}
.aprender-card__actions .btn--outline:hover,
.choice-card__actions .btn--outline:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

/* Course cards and carousel styles: assets/css/shared-cards.css */

/* ============ PILARES ============ */
.pilares {
  position: relative;
  isolation: isolate;
  padding-block: 64px;
  /* Figma 395:14100 — degradê azul → verde. */
  background: linear-gradient(113.24deg, var(--Azul-500, #294458) 0%, var(--Verde-600, #307c78) 100%);
}
.pilares::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/textura.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}
.pilares .container {
  /* Figma content is 930px; keep side padding outside that measure. */
  max-width: calc(930px + 2 * var(--container-pad));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.pilares .section__head,
.pilares__grid {
  max-width: 930px;
  width: 100%;
}
.pilares .section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
}
#pilares-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  color: var(--CInza-50, #f3f3f3);
}
.pilares .section__head p {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
  color: var(--CInza-50, #f3f3f3);
}
.pilares__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}
.pilar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 0 1 266px;
  width: 266px;
  max-width: 350px;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--c-ciano-400, #76cccf);
  border-radius: 24px;
  background: var(--CInza-50, #f3f3f3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.08), 0 8px 8px rgba(0, 0, 0, 0.16);
  text-align: center;
}
.pilar__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  background: var(--c-accent);
  color: #fff;
  margin: 0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.08);
}
.pilar__icon .icon--pilar {
  /* 36×36 Figma frame; object-fit keeps each SVG's intrinsic ratio. */
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.pilar .pilar__title {
  margin: 0;
  color: var(--c-accent);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.pilar__text {
  margin: 0;
  color: var(--Azul-500, #294458);
  font-size: 16px;
  line-height: 22px;
}

/* ============ RELATÓRIOS (grade/filtros alinhados a Cases / Consultorias) ============ */
.relatorios.section {
  padding-block: 64px;
  background: var(--CInza-50, #f3f3f3);
}
.relatorios .section__head {
  text-align: center;
}
#relatorios-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0;
  color: #0a0a0a;
  text-align: center;
}
.relatorios .section__head p {
  margin: 0;
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #4a5565;
  text-align: center;
}
.relatorios__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-6);
  width: 100%;
}
.relatorios__filters .filter-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Base dos filtros (Home / Consultorias / Cases). */
.filter-btn {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-navy);
  padding: 0.5em 1.1em;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: var(--fw-medium);
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.filter-btn:hover {
  border-color: var(--c-teal);
  color: var(--c-teal);
}
.filter-btn.is-active {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

.relatorios__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  justify-items: center;
}
.report-card {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 336px;
  height: 100%;
  border: 1px solid var(--CInza-50, #f3f3f3);
  border-radius: 24px;
  background: var(--branco-100, #fefefe);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.06);
}
.report-card[hidden] {
  display: none;
}
.report-card__media {
  position: relative;
  aspect-ratio: 1176 / 660;
  background: var(--c-surface-soft);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.report-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.report-card__placeholder {
  font-weight: var(--fw-bold);
  color: var(--c-navy-500);
  font-size: var(--step-1);
  padding: var(--space-4);
  text-align: center;
}
.report-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  padding: 0 24px 24px;
}
.report-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}
.report-card__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.report-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--Azul-500, #294458);
  line-height: 28px;
  letter-spacing: -0.44px;
}
.report-card__type {
  margin: 0;
  color: var(--Azul-500, #294458);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.report-card__year {
  color: var(--CInza-700, #595959);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  white-space: nowrap;
}
.report-card__divider {
  border: 0;
  border-top: 1px solid var(--CInza-100, #ebebeb);
  margin: 0;
  width: 100%;
}
.report-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  flex: 1;
  margin-top: auto;
}
.report-card__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lang-chip {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 64px;
  max-width: 250px;
  min-height: 44px;
  height: 48px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  color: var(--CInza-700, #595959);
  background: var(--branco-100, #fefefe);
  border: 1px solid var(--CInza-100, #ebebeb);
  border-radius: 8px;
  box-shadow: 0 0 1.5px rgba(0, 0, 0, 0.02), 0 1px 1px rgba(0, 0, 0, 0.08);
  transition:
    background var(--t),
    border-color var(--t),
    box-shadow var(--t);
}
.lang-chip:hover {
  border-color: var(--c-teal);
}
.lang-chip.is-active {
  background: var(--CInza-100, #ebebeb);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.24);
}
.lang-chip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.report-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  height: 48px;
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.16);
}
.report-card__cta-text {
  white-space: nowrap;
}
.relatorios__empty {
  text-align: center;
  color: var(--c-muted);
  padding: 0;
  margin: 0;
}
.relatorios__more {
  text-align: center;
  margin-top: var(--space-7);
  width: 100%;
}
.relatorios__more .report-card__all,
.relatorios__more .btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 310px;
  min-height: 48px;
  height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--Azul-500, #294458);
  border-radius: 8px;
  background: transparent;
  color: var(--Azul-500, #294458);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  box-shadow: none;
}
.relatorios__more .report-card__all:hover,
.relatorios__more .btn--outline:hover {
  background: var(--Azul-500, #294458);
  color: #fff;
}

@media (max-width: 1024px) {
  .relatorios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .relatorios__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PROJETO (CTA) ============ */
.projeto {
  position: relative;
  isolation: isolate;
  background: linear-gradient(99.88deg, var(--c-navy) 0%, var(--c-teal) 100%);
}
.projeto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/textura.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}
.projeto__inner {
  max-width: 1108px;
  margin-inline: auto;
  text-align: center;
}
#projeto-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.5rem);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #FFFFFF;
}
.projeto__inner p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #D1D5DC;
  margin: var(--space-5) 0 var(--space-6);
}
.projeto__inner .btn--accent {
  width: 310px;
  max-width: 100%;
  min-height: 44px;
  gap: 4px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

/* Bridge IA card styles: shared-ia.css */

/* WhatsApp float (.wa-float): styles live in layout.css (site-wide chrome). */

/* ============ RESPONSIVO ============ */
@media (max-width: 760px) {
  .pilares {
    padding-block: 48px;
  }
  .pilares .container {
    gap: 48px;
  }
  #pilares-title {
    font-size: 32px;
  }
  .pilar {
    flex: 1 1 100%;
    width: 100%;
    max-width: 350px;
  }
  .aprender.section {
    padding-block: 48px;
  }
  #aprender-title {
    font-size: 32px;
  }
  .aprender__grid {
    flex-direction: column;
  }
  .aprender .choice-card {
    min-width: 0;
  }
  .stats.section {
    padding-block: 64px;
  }
  .stats__inner {
    gap: 48px;
  }
  #stats-title {
    font-size: 32px;
  }
  .stats__head p {
    font-size: 18px;
    line-height: 1.3;
  }
  .partners--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .partners__group {
    gap: 24px;
    width: 100%;
  }
  .relatorios.section {
    padding-block: 48px;
  }
  #relatorios-title {
    font-size: 28px;
  }
  .relatorios__more .report-card__all,
  .relatorios__more .btn--outline {
    min-width: 0;
    width: 100%;
    max-width: 310px;
  }
  /* Mobile: keep continuous marquee; slightly smaller logos. */
  .logo-marquee {
    max-width: 100%;
  }
  .logo-strip--clients .logo-strip__item {
    height: 24px;
    min-height: 24px;
  }
  .logo-strip--clients img {
    height: 24px;
  }
}
@media (max-width: 520px) {
  .stat {
    width: 200px;
    height: 200px;
    max-width: 200px;
  }
}
