/* ================================================================
   CONTA DISTRIBUIDORA — header-hero Component
   Brandbook: Barlow · DM Sans · IBM Plex Mono
   Paleta: #8e7223 Dourado · #303030 Chumbo · #371f1d Terracota
           #f9f9f9 Off-White · #ebecdc Areia · #b0b5b5 Cinza
   ================================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --conta-gold:       #8e7223;
  --conta-gold-hover: #a8882e;
  --conta-gold-glow:  rgba(142, 114, 35, 0.28);
  --conta-chumbo:     #303030;
  --conta-terracota:  #371f1d;
  --conta-offwhite:   #f9f9f9;
  --conta-areia:      #ebecdc;
  --conta-cinza:      #b0b5b5;

  --f-display: 'Barlow', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur:  220ms;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--f-body);
  background: #000;
  color: var(--conta-offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--conta-gold); color: #fff; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: transparent;
  transition: background var(--dur) var(--ease);
}
.navbar__inner {
  /* Full-width com 100px de distância das bordas */
  width: 100%;
  padding: 0 100px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar__logo-svg {
  height: 28px;
  width: auto;
  display: block;
  opacity: .92;
  transition: opacity var(--dur) var(--ease);
}
.navbar__brand:hover .navbar__logo-svg { opacity: 1; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.navbar__link {
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 400;
  color: #ffffff;
  padding: 6px 13px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.navbar__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}
.navbar__cta {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 7px 15px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.navbar__cta:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #ffffff;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* ================================================================
   HEADER-HERO
================================================================ */
.header-hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;

  /* Conteúdo ancorado no canto inferior esquerdo */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* ── Imagem de fundo full-bleed ─────────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Fallback escuro enquanto carrega */
  background: #111;
}

/* ── Overlay 100% preto com gradiente de opacidade ─────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradiente vertical: mais escuro na base (onde fica o texto)
     levemente mais aberto no topo para não sufocar a foto */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.60) 45%,
    rgba(0, 0, 0, 0.38) 100%
  );
}

/* ── Container full-width com 50px nas bordas ───────────────────── */
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  /* Padrão full-width: sem max-width, distância fixa de 100px */
  padding: 0 100px 56px 100px;
}

/* ── Bloco de texto — canto inferior esquerdo ───────────────────── */
.hero__content {
  max-width: 660px;
}

/* ── Eyebrow (IBM Plex Mono — sem traço, sem letter-spacing) ────── */
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0;           /* Sem espaçamento entre letras */
  text-transform: uppercase;
  color: #fcfcfc;
  margin-bottom: 16px;
  line-height: 1;
}

/* ── Headline H1 — Barlow Regular (fonte reduzida) ──────────────── */
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 46px);   /* Reduzido: era clamp(40px,4.8vw,72px) */
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.022em;
  color: #ffffff;
  max-width: 660px;
  margin-bottom: 16px;
}

/* ── Supporting text — DM Sans (fonte reduzida) ─────────────────── */
.hero__supporting {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.60;
  color: rgba(255, 255, 255, 1);
  max-width: 660px;
  margin-bottom: 28px;
}

/* ── Bloco de CTAs ──────────────────────────────────────────────── */
.hero__cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Base dos botões (tamanho reduzido) ─────────────────────────── */
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;               /* Reduzido: era 52px */
  padding: 0 22px;            /* Reduzido: era 0 28px */
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 13.5px;          /* Reduzido: era 15px */
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.hero__btn:focus-visible {
  outline: 2px solid var(--conta-gold);
  outline-offset: 3px;
}

/* Primário — fundo Off-White */
.hero__btn--primary {
  background: #fefcfc;
  color: #444040;
  border: 1px solid transparent;
}
.hero__btn--primary:hover {
  background: #f0eeee;
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.hero__btn--primary:active {
  background: #e8e6e6;
  box-shadow: none;
  transform: translateY(0);
}
.hero__btn-icon {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.hero__btn--primary:hover .hero__btn-icon { transform: translateX(3px); }

/* Secundário — outline Off-White */
.hero__btn--outline {
  background: transparent;
  color: rgba(249, 249, 249, 0.88);
  border: 1px solid rgba(249, 249, 249, 0.35);
}
.hero__btn--outline:hover {
  background: rgba(249, 249, 249, 0.08);
  border-color: rgba(249, 249, 249, 0.65);
  color: #ffffff;
}
.hero__btn--outline:active {
  background: rgba(249, 249, 249, 0.04);
}

/* ================================================================
   BLOCO 3 — por-que-a-conta
   Fundo: #B0B5B5 (Cinza) · 3 cards · divisores verticais
================================================================ */

/* ── Seção ──────────────────────────────────────────────────────── */
.por-que-conta {
  background: var(--conta-offwhite);
  width: 100%;
  padding: 96px 0 88px;
}

/* ── Container full-width ───────────────────────────────────────── */
.pqc__container {
  width: 100%;
  padding: 0 100px;
}

/* ── Cabeçalho ──────────────────────────────────────────────────── */
.pqc__header {
  margin-bottom: 64px;
  max-width: 780px;
}

.pqc__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 14px;
}

.pqc__titulo {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.022em;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.pqc__subtitulo {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
}

/* ── Grid 3 colunas com divisores verticais ─────────────────────── */
.pqc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Divisores verticais via border no card */
}

/* ── Card individual ────────────────────────────────────────────── */
.pqc__card {
  padding: 0 40px 0 40px;
  border-left: 1px solid rgba(26, 26, 26, 0.20);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Primeiro card sem borda à esquerda */
.pqc__card:first-child {
  padding-left: 0;
  border-left: none;
}

/* ── Ícone do card ──────────────────────────────────────────────── */
.pqc__card-icon {
  color: #1a1a1a;
  opacity: 0.75;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* ── Título do card ─────────────────────────────────────────────── */
.pqc__card-titulo {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.20;
  letter-spacing: -0.018em;
  color: #1a1a1a;
}

/* ── Texto do card ──────────────────────────────────────────────── */
.pqc__card-texto {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
  flex: 1;
}

/* ── Link do card ───────────────────────────────────────────────── */
.pqc__card-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26, 26, 26, 0.45);
  margin-top: 4px;
  transition:
    color var(--dur) var(--ease),
    text-decoration-color var(--dur) var(--ease);
}
.pqc__card-link:hover {
  color: var(--conta-gold);
  text-decoration-color: var(--conta-gold);
}
.pqc__card-link svg {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.pqc__card-link:hover svg {
  transform: translateX(2px);
}

/* ================================================================
   RESPONSIVIDADE — por-que-a-conta
================================================================ */

/* ── TABLET · ≤1023px — 2 colunas ──────────────────────────────── */
@media (max-width: 1023px) {
  .por-que-conta { padding: 72px 0 72px; }
  .pqc__grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .pqc__card { padding: 0 32px; }
  .pqc__card:first-child { padding-left: 0; border-left: none; }
  .pqc__card:nth-child(2) { border-left: 1px solid rgba(26,26,26,0.20); }
  .pqc__card:nth-child(3) { border-left: none; padding-left: 0; }
  .pqc__card:last-child { grid-column: 1 / -1; }
}

/* ── MOBILE · ≤767px — 1 coluna ────────────────────────────────── */
@media (max-width: 767px) {
  .por-que-conta    { padding: 60px 0 60px; }
  .pqc__container   { padding: 0 7.5vw; }
  .pqc__header      { margin-bottom: 40px; }
  .pqc__grid        { grid-template-columns: 1fr; row-gap: 40px; }
  .pqc__card        { padding: 0; border-left: none; border-top: 1px solid rgba(26,26,26,0.18); padding-top: 36px; }
  .pqc__card:first-child { border-top: none; padding-top: 0; }
  .pqc__card:last-child  { grid-column: auto; }
  .pqc__card-titulo { font-size: clamp(22px, 5.5vw, 28px); }
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .pqc__card-link, .pqc__card-link svg { transition: none; }
}

/* ================================================================
   BLOCO 4 — duas-portas
   Fundo branco · 2 cards com imagem 4:3 · container centralizado
================================================================ */

/* ── Seção ──────────────────────────────────────────────────────── */
.duas-portas {
  background: #ffffff;
  width: 100%;
  padding: 96px 0 96px;
}

/* ── Container — NÃO full-width, centralizado ───────────────────── */
.dp__container {
  width: 100%;
  padding: 0 100px;
}

/* ── Cabeçalho ──────────────────────────────────────────────────── */
.dp__header {
  margin-bottom: 52px;
}

.dp__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 14px;
}

.dp__titulo {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.022em;
  color: #1a1a1a;
}

/* ── Grid 2 colunas ─────────────────────────────────────────────── */
.dp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}

/* ── Card ───────────────────────────────────────────────────────── */
.dp__card {
  display: flex;
  flex-direction: column;
}

/* ── Imagem 4:3 ─────────────────────────────────────────────────── */
.dp__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.dp__img-placeholder {
  width: 100%;
  height: 100%;
}

.dp__img-placeholder--esq {
  background: #d6cfc0;
}
.dp__img-placeholder--dir {
  background: #c2c8c8;
}

/* ── Conteúdo do card ───────────────────────────────────────────── */
.dp__card-content {
  padding: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* ── Tag ────────────────────────────────────────────────────────── */
.dp__card-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
}

/* ── Título do card ─────────────────────────────────────────────── */
.dp__card-titulo {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.20;
  letter-spacing: -0.018em;
  color: var(--conta-gold);
}

/* ── Texto do card ──────────────────────────────────────────────── */
.dp__card-texto {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #5a5a5a;
  flex: 1;
}

/* ── Link do card ───────────────────────────────────────────────── */
.dp__card-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(48, 48, 48, 0.45);
  margin-top: 4px;
  transition:
    color var(--dur) var(--ease),
    text-decoration-color var(--dur) var(--ease);
}
.dp__card-link:hover {
  color: var(--conta-gold);
  text-decoration-color: var(--conta-gold);
}
.dp__card-link svg {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.dp__card-link:hover svg { transform: translateX(2px); }

/* ================================================================
   RESPONSIVIDADE — duas-portas
================================================================ */

@media (max-width: 1023px) {
  .duas-portas  { padding: 72px 0 72px; }
  .dp__grid     { column-gap: 24px; }
}

@media (max-width: 767px) {
  .duas-portas    { padding: 60px 0 60px; }
  .dp__container  { padding: 0 7.5vw; }
  .dp__grid       { grid-template-columns: 1fr; row-gap: 28px; }
  .dp__card-titulo { font-size: clamp(22px, 5.5vw, 28px); }
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .dp__card-link, .dp__card-link svg { transition: none; }
}

/* ================================================================
   SEÇÃO SEGUINTE — placeholder
================================================================ */
.next-section-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--conta-offwhite);
  color: var(--conta-cinza);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  border-top: 1px solid rgba(48, 48, 48, .10);
}

/* ================================================================
   RESPONSIVIDADE
================================================================ */

/* ── LAPTOP · 1024–1279px ───────────────────────────────────────── */
@media (max-width: 1279px) {
  .header-hero {
    height: 90vh;
    min-height: 660px;
  }
  .hero__container {
    padding: 0 100px 52px 100px;
  }
  .hero__content { max-width: 520px; }
  .hero__headline { font-size: clamp(26px, 3.0vw, 42px); }
}

/* ── TABLET · 768–1023px ────────────────────────────────────────── */
@media (max-width: 1023px) {
  .header-hero {
    height: auto;
    min-height: 600px;
    padding-top: 72px;
    align-items: flex-end;
  }
  .hero__container {
    padding: 0 100px 52px 100px;
  }
  .hero__content { max-width: 100%; }
  .hero__headline {
    font-size: clamp(24px, 4.5vw, 38px);
    max-width: 100%;
  }
  .hero__supporting { max-width: 100%; }
  .navbar__links  { display: none; }
  .navbar__cta    { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ── MOBILE · ≤767px ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .header-hero {
    height: 90vh;
    min-height: 560px;
    padding-top: 72px;
    align-items: flex-end;
  }
  .hero__container {
    padding: 0 7.5vw 48px 7.5vw;
  }
  .hero__eyebrow  { font-size: 9.5px; margin-bottom: 12px; }
  .hero__headline {
    font-size: clamp(22px, 7vw, 34px);
    letter-spacing: -0.018em;
    margin-bottom: 12px;
  }
  .hero__supporting {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 22px;
  }
  .hero__cta-group { gap: 10px; }
  .hero__btn {
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }
  .navbar__inner { padding: 0 7.5vw; }
}

/* ── MOBILE PEQUENO · ≤480px ────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__container { padding: 0 7.5vw 44px 7.5vw; }
  .hero__headline  { font-size: clamp(22px, 8vw, 34px); }
  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__btn, .hero__btn-icon { transition: none; }
}

/* ================================================================
   HERO SECUNDÁRIO
   Mesmas classes do hero principal · placeholder de fundo escuro
================================================================ */

.hero-secundario {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-sec__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-sec__placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  /*
    Placeholder neutro escuro — substituir pelo elemento de mídia:
    <img> ou <video> com object-fit: cover
  */
}

/* Responsividade — espelha o hero principal */
@media (max-width: 1279px) {
  .hero-secundario { height: 90vh; min-height: 660px; }
}
@media (max-width: 1023px) {
  .hero-secundario { height: auto; min-height: 600px; padding-top: 72px; align-items: flex-end; }
}
@media (max-width: 767px) {
  .hero-secundario { height: 90vh; min-height: 560px; padding-top: 72px; }
}

/* ================================================================
   BLOCO 1 — grid-capacidades
   Estilo referência: AmerisourceBergen / Institute of Health
   Texto direto no fundo escuro — sem caixas de card
   Full-width · padding 50px · max-width 1200px
================================================================ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --cap-bg:       #ffffff;             /* Fundo branco */
  --cap-titulo:   #1a1a1a;
  --cap-sub:      #5a5a5a;
  --cap-item-t:   #8e7223;
  --cap-item-tx:  #5a5a5a;
  --cap-chevron:  rgba(48,48,48,0.45);
  --cap-div:      rgba(48,48,48,0.12);
  --cap-link:     #1a1a1a;
  --cap-link-hover: #8e7223;
}

/* ── Seção — full-width ─────────────────────────────────────────── */
.grid-capacidades {
  background: var(--cap-bg);
  width: 100%;
  padding: 96px 0 96px;
}

/* ── Container ──────────────────────────────────────────────────── */
.cap__container {
  width: 100%;
  padding: 0 100px;
}

/* ── Cabeçalho ──────────────────────────────────────────────────── */
.cap__header {
  max-width: 860px;
  margin-bottom: 56px;
}

.cap__titulo {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--cap-titulo);
  margin-bottom: 18px;
}

.cap__subtitulo {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--cap-sub);
  max-width: 760px;
}

/* ── Grid 4×2 — itens sem caixa ─────────────────────────────────── */
.cap__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 0;
  margin-bottom: 52px;
}

/* ── Item individual ────────────────────────────────────────────── */
.cap__item {
  padding: 48px 0 48px;
  border-top: 1px solid var(--cap-div);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

/* Linha inferior na segunda fileira */
.cap__item:nth-child(n+5) {
  border-bottom: 1px solid var(--cap-div);
}

/* ── Tag do item — padrão eyebrow do hero ───────────────────────── */
.cap__item-tag {
  font-family: var(--f-mono);       /* IBM Plex Mono — igual ao hero */
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;                /* sem espaçamento — padrão do site */
  text-transform: uppercase;
  color: #1a1a1a;                   /* Preto — contraste sobre fundo branco */
  line-height: 1;
  margin-bottom: 2px;
}

/* ── Título do item — com chevron (não é link) ──────────────────── */
.cap__item-titulo {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--cap-item-t);
  display: block;
  transition: color var(--dur) var(--ease);
}

.cap__chevron {
  font-style: normal;
  font-size: 18px;
  color: var(--cap-chevron);
  margin-left: 3px;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

/* ── Texto do item ──────────────────────────────────────────────── */
.cap__item-texto {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cap-item-tx);
  flex: 1;
}

/* ── Link "Saiba mais" — sublinhado, abaixo do texto ────────────── */
.cap__item-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cap-link);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(48,48,48,0.55);
  margin-top: 4px;
  transition:
    color var(--dur) var(--ease),
    text-decoration-color var(--dur) var(--ease);
}
.cap__item-link:hover {
  color: var(--cap-link-hover);
  text-decoration-color: var(--cap-link-hover);
}
.cap__item-link svg {
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.cap__item-link:hover svg {
  transform: translateX(2px);
}

/* ── CTA — alinhado à esquerda ──────────────────────────────────── */
.cap__footer {
  display: flex;
  justify-content: flex-start;
}

.cap__btn-outline {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid rgba(48, 48, 48, 0.28);
  font-family: var(--f-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  letter-spacing: -0.01em;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.cap__btn-outline:hover {
  background: rgba(48, 48, 48, 0.06);
  border-color: #303030;
  color: #000000;
}
.cap__btn-outline:focus-visible {
  outline: 2px solid var(--conta-gold);
  outline-offset: 3px;
}

/* ================================================================
   RESPONSIVIDADE — grid-capacidades
================================================================ */

/* ── LAPTOP · 1024–1279px ───────────────────────────────────────── */
@media (max-width: 1279px) {
  .grid-capacidades { padding: 80px 0 80px; }
  .cap__grid        { column-gap: 24px; }
}

/* ── TABLET · 768–1023px — 2 colunas ───────────────────────────── */
@media (max-width: 1023px) {
  .grid-capacidades { padding: 72px 0 72px; }
  .cap__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
  }
  /* Reposiciona bordas inferiores para nova grade 2×4 */
  .cap__item:nth-child(n+5) { border-bottom: none; }
  .cap__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--cap-div); }
  .cap__titulo { font-size: clamp(20px, 3.5vw, 32px); }
}

/* ── MOBILE · ≤767px — 1 coluna ─────────────────────────────────── */
@media (max-width: 767px) {
  .grid-capacidades { padding: 60px 0 60px; }
  .cap__container   { padding: 0 7.5vw; }
  .cap__header      { margin-bottom: 40px; }
  .cap__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .cap__item:nth-child(n+5)          { border-bottom: none; }
  .cap__item:nth-last-child(-n+2)    { border-bottom: none; }
  .cap__item:last-child              { border-bottom: 1px solid var(--cap-div); }
  .cap__titulo      { font-size: clamp(20px, 6vw, 28px); }
  .cap__item-titulo { font-size: clamp(22px, 5.5vw, 28px); }
  .cap__item        { padding: 36px 0; }
}

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cap__item-titulo, .cap__chevron, .cap__btn-outline { transition: none; }
}
