/* ════════════════════════════════════════════════════════════════════
   COMPONENTS — navbar, footer, botões, cards, secções, formulários…
   ════════════════════════════════════════════════════════════════════ */

/* ─────────────── NAVBAR ─────────────── */
/* Sticky aplicado ao WRAPPER (#navbar-root, filho directo de <body>): só assim
   a navbar acompanha o scroll. Aplicado ao .navbar dentro do wrapper, ela só
   "colaria" dentro da caixa de 74px do próprio wrapper e desaparecia no scroll. */
#navbar-root {
  position: sticky;
  top: 0;
  z-index: 200;
}
.navbar {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  cursor: pointer;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-strong);
  line-height: 1;
  white-space: nowrap;
}
.brand__name span {
  font-weight: 500;
  color: var(--gold-dark);
}
.brand__tag {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.navbar__burger {
  display: none; /* mostrado só no mobile (responsive.css) */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--navy);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navlink {
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.navlink:hover {
  color: var(--ink-strong);
}
.navlink.is-active {
  border-bottom-color: var(--gold);
}

/* ─────────────── BOTÕES ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px clamp(18px, 5vw, 32px);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-dark);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-soft);
}
.btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.btn--sm {
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 11px 22px;
}
.btn--nav {
  margin-left: 14px;
}

/* Link com seta (→) */
.link-arrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: gap 0.2s;
}
.link-arrow:hover {
  gap: 12px;
}
.link-arrow--muted {
  color: rgba(255, 255, 255, 0.5);
}
.link-arrow--muted:hover {
  color: #fff;
}
.link-arrow--gold-dark {
  color: var(--gold-dark);
}

/* ─────────────── HERO (home) ─────────────── */
.hero {
  isolation: isolate;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 840px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(120px, 15vh, 190px);
}
.hero__content {
  max-width: 820px;
  margin-inline: auto;
}
.hero__content .eyebrow {
  justify-content: center;
}

/* Fundo abstracto: duotono navy + grelha arquitectónica + brilho dourado */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy);
  background-image:
    radial-gradient(
      ellipse 55% 70% at 80% 10%,
      rgba(184, 147, 90, 0.2),
      transparent 62%
    ),
    radial-gradient(
      ellipse 65% 85% at 8% 100%,
      rgba(120, 142, 192, 0.12),
      transparent 60%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 68px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.026) 0 1px,
      transparent 1px 68px
    ),
    linear-gradient(140deg, #14142a 0%, #1c1f3c 55%, #232a4d 100%);
  background-size: cover;
}
/* Variante com fotografia real (HERO_IMAGE definido em hero.js) */
.hero__bg--photo {
  background-image:
    var(--hero-image), linear-gradient(140deg, #14142a, #232a4d);
  background-size: cover, cover;
  background-position:
    center center,
    center center;
}
/* Overlay de legibilidade — escurece o lado do texto e a base */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      102deg,
      rgba(13, 13, 20, 0.94) 0%,
      rgba(18, 18, 34, 0.82) 40%,
      rgba(20, 22, 42, 0.46) 78%,
      rgba(20, 22, 42, 0.3) 100%
    ),
    linear-gradient(0deg, rgba(13, 13, 20, 0.55) 0%, transparent 36%);
}
.hero__lead {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  line-height: 1.8;
  margin: 28px auto 40px;
}
.hero__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 56px;
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Indicador de scroll (sugere navegação para baixo) */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  transform: translateX(-50%);
  width: 23px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: heroScroll 1.9s ease-in-out infinite;
}
@keyframes heroScroll {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Estatísticas (hero e bandas escuras) */
.stat__value {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.stat__value span {
  color: var(--gold);
}
.stat__value--lg {
  font-size: 44px;
}
.stat__value--lg span {
  font-size: 28px;
}
.stat__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

/* ─────────────── PLACEHOLDERS DE IMAGEM ─────────────── */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: monospace;
  text-transform: uppercase;
}
.ph::before,
.ph::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.6;
}
.ph::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.ph::after {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.ph__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.ph__sub {
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted-2);
  text-align: center;
  max-width: 200px;
  line-height: 1.6;
}

/* Placeholder escuro do hero */
.ph--hero {
  width: 100%;
  height: 460px;
  border-radius: 6px;
  border: 1px solid rgba(184, 147, 90, 0.2);
  background: repeating-linear-gradient(
    135deg,
    #212138 0 13px,
    #1c1c31 13px 26px
  );
}
.ph--hero .ph__label {
  color: rgba(232, 213, 176, 0.6);
}
.ph--hero .ph__sub {
  color: rgba(255, 255, 255, 0.3);
}

/* Placeholder claro/champagne (cards de insight, media de artigos) */
.ph--soft {
  background: var(--champagne-fill);
  border: 1px solid var(--champagne-line);
}
.ph--soft::before,
.ph--soft::after {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  border-color: var(--gold-soft);
}
.ph--soft::before {
  top: 11px;
  left: 11px;
}
.ph--soft::after {
  bottom: 11px;
  right: 11px;
}
.ph--soft .ph__label {
  font-size: 9px;
  letter-spacing: 0.13em;
}

/* ─────────────── VALUES STRIP ─────────────── */
.values-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-block: 22px;
}
.values-strip__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 32px;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
}
.value-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.value-pill span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
}

/* ─────────────── PARÁGRAFOS DE TEXTO ─────────────── */
.prose {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.85;
}
.prose--sm {
  font-size: 15px;
}
.prose + .prose {
  margin-top: 22px;
}
.prose strong {
  color: var(--navy-soft);
  font-weight: 600;
}

/* ─────────────── CARD GENÉRICO ─────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all 0.35s;
}

/* Service card (home) */
.service-card {
  padding: 32px 30px;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--champagne);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card__icon::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.85;
}
.kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-card__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy-soft);
  margin: 9px 0 11px;
  line-height: 1.3;
}
.card-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
}

/* ─────────────── DIFERENCIAIS ─────────────── */
.diffs {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.diff-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 36px;
  border-bottom: 1px solid var(--line-3);
  transition: background 0.2s;
}
.diff-row:last-child {
  border-bottom: none;
}
.diff-row:hover {
  background: var(--champagne-bg);
}
.diff-row__num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  min-width: 42px;
}
.diff-row__body {
  flex: 1;
  min-width: 200px;
}
.diff-row__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 3px;
}
.diff-row__desc {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ─────────────── MISSÃO / BANDAS DECORATIVAS ─────────────── */
.mission__text {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.mission__text em {
  font-style: italic;
  color: var(--champagne);
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 90, 0.08);
  pointer-events: none;
}
.deco-circle--br {
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
}
.deco-circle--cta {
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
}
.deco-circle--card {
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-color: rgba(184, 147, 90, 0.1);
}

/* ─────────────── SECTORES ─────────────── */
.sector-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Camada de imagem/textura (faz zoom no hover) */
.sector-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy);
  background-image:
    radial-gradient(
      circle at var(--tx, 70%) var(--ty, 30%),
      var(--tint, rgba(184, 147, 90, 0.18)),
      transparent 56%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 34px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 34px
    ),
    linear-gradient(150deg, #181834 0%, #23284a 100%);
  background-size: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sector-card__media--photo {
  background-size: cover;
  background-position: center;
}
.sector-card:hover .sector-card__media {
  transform: scale(1.07);
}
/* Véu escuro para garantir legibilidade do texto sobre a imagem */
.sector-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 22, 0.3) 0%,
    rgba(15, 15, 22, 0.74) 100%
  );
  transition: background 0.35s ease;
}
.sector-card:hover .sector-card__veil {
  background: linear-gradient(
    180deg,
    rgba(15, 15, 22, 0.22) 0%,
    rgba(15, 15, 22, 0.66) 100%
  );
}
.sector-card:hover {
  border-color: rgba(184, 147, 90, 0.32);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.sector-card__content {
  position: relative;
  z-index: 2;
}
.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 90, 0.22);
  transform: translate(18px, -18px);
  transition: transform 0.35s ease;
}
.sector-card:hover::before {
  transform: translate(10px, -10px);
}
.sector-card__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 10px;
}
.sector-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}

/* Tiles maiores (página Sectores) */
.sector-tile {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.sector-tile:hover {
  background: var(--navy-soft);
  border-color: rgba(184, 147, 90, 0.2);
}
.sector-tile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 90, 0.12);
  transform: translate(22px, -22px);
}
.sector-tile__num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: auto;
}
.sector-tile__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 28px 0 10px;
}
.sector-tile__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.sector-cta {
  background: var(--champagne-bg);
  border: 1px solid var(--champagne);
  border-radius: 6px;
  padding: 34px 30px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sector-cta__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy-soft);
  line-height: 1.3;
  margin-bottom: 16px;
}
.sector-cta__desc {
  font-size: 13px;
  color: var(--gold-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.sector-cta .btn {
  align-self: flex-start;
}

/* ─────────────── INSIGHTS · cards (home) ─────────────── */
.insight-card {
  overflow: hidden;
  cursor: pointer;
}
.insight-card:hover {
  box-shadow: var(--shadow-card);
}
.insight-card__media {
  height: 170px;
  border-bottom: 1px solid var(--champagne-line);
}
.insight-card__body {
  padding: 24px;
}
.meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.insight-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-soft);
  line-height: 1.35;
  margin-bottom: 9px;
}
.insight-card__excerpt {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.65;
}

/* Badges + meta */
.badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--champagne-bg);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.badge--solid {
  background: var(--gold);
  color: #fff;
}
.meta-date {
  font-size: 11px;
  color: var(--muted);
}

/* ─────────────── INSIGHTS · lista (página) ─────────────── */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.filter-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--slate);
  border: 1px solid var(--line-2);
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy-soft);
}
.filter-btn.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.article-row:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--champagne);
  transform: translateY(-2px);
}
.article-row__media {
  min-height: 176px;
  border-right: 1px solid var(--champagne-line);
}
.article-row__media .ph__label {
  font-size: 8.5px;
}
.article-row__body {
  padding: 28px 32px;
}
.article-row__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy-soft);
  line-height: 1.25;
  margin: 4px 0 10px;
}
.article-row__excerpt {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─────────────── LEITOR DE ARTIGO ─────────────── */
.article {
  padding-block: 70px;
}
.article__back {
  margin-bottom: 34px;
}
.article__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 400;
  color: var(--navy-soft);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 16px 0 22px;
}
.article__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.article__byavatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--champagne);
}
.article__byname {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-soft);
}
.article__bymeta {
  font-size: 12px;
  color: var(--muted);
}
.article__lead {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy-soft);
  line-height: 1.6;
  margin: 34px 0 30px;
}
.article__figure {
  margin: 6px 0 34px;
}
.article__figure .ph--soft {
  height: 188px;
  border-radius: 6px;
}
.article__figcaption {
  font-size: 11.5px;
  font-style: italic;
  color: var(--muted-2);
  margin-top: 9px;
  text-align: center;
}
.article__quote {
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 6px 0 34px;
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy-soft);
  line-height: 1.5;
}
.article__h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-soft);
  margin: 36px 0 14px;
}
.article__p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ─────────────── EQUIPA ─────────────── */
.roster {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.roster__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  width: 158px;
  text-align: center;
}
.avatar-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.roster__item.is-active .avatar-ring {
  border-color: var(--gold);
}
.avatar {
  width: 100%; 
  height: 100%; 
  border-radius: 50%;
  background-color: var(--navy-soft); 
  background-size: cover;          
  background-position: center 15%; 
  background-repeat: no-repeat;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: background-color .25s, transform .25s;
  box-sizing: border-box;
  transform: scale(0.95); 
}
.roster__item.is-active .avatar {
  background-color: var(--navy);
}
.avatar__initials {
  font-family: var(--serif);
  font-size: 35px;
  color: var(--champagne);
}
.roster__labels {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.roster__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.25;
  transition: color 0.25s;
}
.roster__item.is-active .roster__name {
  color: var(--navy-soft);
}
.roster__role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 60px;
}
.profile__portrait {
  position: sticky;
  top: 100px;
}
.portrait {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  position: relative;
}
.portrait__photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top ;
}

.portrait__placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    #edf0f3 0 14px,
    #e4e8ed 14px 28px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.portrait__placeholder::before,
.portrait__placeholder::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.6;
}
.portrait__placeholder::before {
  top: 16px;
  left: 16px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.portrait__placeholder::after {
  bottom: 16px;
  right: 16px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.portrait__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--champagne);
}
.portrait__note {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.portrait__sub {
  font-family: monospace;
  font-size: 10px;
  color: var(--muted-2);
  text-align: center;
  max-width: 200px;
  line-height: 1.6;
}

.profile__role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.profile__name {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--navy-soft);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.creds {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.cred {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line-2);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.rule-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.profile__bio p {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 20px;
}

.expertise-box {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.expertise-box__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.expertise-item {
  display: flex;
  align-items: center;
  gap: 11px;
}
.expertise-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.expertise-item span {
  font-size: 13.5px;
  color: var(--navy-soft);
  font-weight: 500;
}
.profile__foot {
  margin-top: 28px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.profile__email {
  font-size: 11px;
  color: var(--muted);
}

/* ─────────────── SOBRE — cards missão/visão, factbox ─────────────── */
.factbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
}
.factbox__cell {
  background: #fff;
  padding: 26px 28px;
}
.factbox__value {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--navy-soft);
  line-height: 1;
}
.factbox__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.promise-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.promise-card--navy {
  background: var(--navy);
  border: none;
}
.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 64px;
  background: var(--gold);
}
.promise-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.promise-card__text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-soft);
  line-height: 1.5;
}
.promise-card--navy .promise-card__text {
  color: #fff;
  font-weight: 300;
}

/* Cards de valor (página Sobre) */
.value-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.35s;
}
.value-card:hover {
  border-color: var(--champagne);
  box-shadow: 0 8px 24px rgba(15, 15, 15, 0.06);
}
.value-card__num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 8px;
}
.value-card__desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.6;
}

/* ─────────────── CTA ─────────────── */
.cta__box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta__box--champagne {
  background: var(--champagne-bg);
  border: 1px solid var(--champagne);
  padding: 52px clamp(28px, 5vw, 48px);
}
.cta__box--center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(28px, 5vw, 48px);
}
.cta__kicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cta__title--champagne {
  color: var(--navy-soft);
  font-weight: 400;
}
.cta__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.cta__sub--gold {
  color: var(--gold-dark);
}
.cta__content {
  position: relative;
}
.cta__actions {
  position: relative;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─────────────── PÁGINA: cabeçalho (page-header) ─────────────── */
.page-header {
  padding: 78px 0 70px;
}
.page-header__lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  line-height: 1.8;
  margin-top: 20px;
}
.page-header .display-page {
  margin-top: 22px;
}

/* ─────────────── SERVIÇOS · acordeão ─────────────── */
.accordion {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.acc-item {
  border-bottom: 1px solid var(--line-3);
  transition: background 0.25s;
}
.acc-item:last-child {
  border-bottom: none;
}
.acc-item.is-open {
  background: var(--ivory);
}
.acc-head {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 28px 36px;
  cursor: pointer;
}
.acc-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  min-width: 38px;
}
.acc-titles {
  flex: 1;
}
.acc-titles .kicker {
  margin-bottom: 5px;
}
.acc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-soft);
  line-height: 1.2;
}
.acc-sign {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.acc-body {
  padding: 0 36px 32px 100px;
  animation: kfcUp 0.3s ease;
}
.acc-body__text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 22px;
}

/* ─────────────── CONTACTOS · formulário ─────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-card__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy-soft);
  margin-bottom: 6px;
}
.form-card__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full {
  margin-bottom: 16px;
}
.field__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.input {
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
  color: var(--navy-soft);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.input:focus {
  border-color: var(--gold);
}
textarea.input {
  resize: vertical;
  min-height: 110px;
}
.field-error {
  font-size: 11px;
  color: var(--danger);
}
.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}
.form-success {
  text-align: center;
  padding: 48px 20px;
  animation: kfcUp 0.4s ease;
}
.form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--champagne-bg);
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 26px;
  color: var(--gold);
}
.form-success__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy-soft);
  margin-bottom: 10px;
}
.form-success__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 54px;
  background: var(--gold);
}
.info-card__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 5px;
}
.info-value {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
.chips {
  display: flex;
  gap: 10px;
}
.chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.map-ph {
  height: 220px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    135deg,
    #edf0f3 0 14px,
    #e4e8ed 14px 28px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.map-ph__pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
}
.map-ph__label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.map-ph__sub {
  font-family: monospace;
  font-size: 10px;
  color: var(--muted-2);
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--ink-strong);
}
.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 60px var(--gutter) 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}
.footer__brand-tag {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.8;
  max-width: 300px;
}
.footer__col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.footer__link:hover {
  color: var(--champagne);
}
.footer__item {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
}
.footer__legal {
  display: flex;
  gap: 22px;
}

/* ─────────────── UTILITÁRIOS ─────────────── */
/* Faixa branca de valores (home) com linha inferior */
.values-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.intro-sub {
  font-size: 14px;
  color: var(--muted);
}

/* Margens verticais pontuais (mantêm o HTML limpo) */
.mb-6 {
  margin-bottom: 6px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-14 {
  margin-bottom: 14px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-40 {
  margin-top: 40px;
}

/* Texto institucional com largura legível */
.prose-narrow {
  max-width: 680px;
}
.text-center {
  text-align: center;
}

/* Bloco de história (página Sobre) — coluna de texto */
.about-history__lead {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-history__text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-history__text strong,
.about-history__lead strong {
  color: var(--navy-soft);
  font-weight: 600;
}

/* Banda de credibilidade (estatísticas grandes sobre fundo escuro) */
.cred-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Nota lateral "transversal a sectores" (página Serviços) */
.note-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.note-split__title {
  max-width: 520px;
}

/* Abordagem (página Sectores) */
.approach-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.85;
}

.map-embed {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #d8d3c7;
  background: #f5f1e8;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.9;
}

.contact-link--whatsapp:hover {
  color: #25d366;
}

.contact-link--phone:hover {
  color: #b8935a;
}

.chip {
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.chip--whatsapp:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.08);
}

.chip--linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.45);
  background: rgba(10, 102, 194, 0.08);
}

.insight-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article__image {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  max-height: 460px;
}
