
/* v21 — alinhamento visual com a página em construção: Font Awesome local, fontes, badges e switch institucional */
:root {
  --navy-950: #041226;
  --navy-900: #071b36;
  --navy-800: #0b294d;
  --blue-700: #133f6f;
  --gold-500: #c79b42;
  --gold-400: #d8b66b;
  --gold-300: #ead7a9;
  --ivory-50: #fbfaf7;
  --ivory-100: #f5f2eb;
  --ink-deep: #0d2038;
  --muted-soft: #6e7784;
  --line-soft: rgba(13, 32, 56, .13);
  --serif: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  --sans: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
}

html { background: var(--ivory-50); }
body {
  font-family: var(--sans) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #f7f6f2;
}

h1, h2, .hero h1, .page-card h1, .panel-head strong, .time-unit strong {
  font-family: var(--serif) !important;
  letter-spacing: -0.025em;
}

/* Header full-width, com assinatura premium mais próxima da página em construção */
.site-header {
  padding-top: 18px !important;
}
.site-header .container.nav {
  width: 100% !important;
  max-width: none !important;
  padding: 0 clamp(22px, 4.2vw, 58px) !important;
}
.site-header .nav {
  grid-template-columns: 238px minmax(0, 1fr) auto !important;
  gap: 22px !important;
}
.site-header .brand {
  display: inline-flex !important;
  align-items: center !important;
  width: 222px !important;
  padding: 10px 13px 9px !important;
  border: 1px solid rgba(216, 182, 107, .40) !important;
  border-left: 3px solid var(--gold-500) !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 18px 42px rgba(4, 18, 38, .13) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header .brand img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
}
.site-header.is-scrolled {
  background: rgba(251,250,247,.88) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(4,18,38,.08);
  padding: 10px 0 !important;
}
.site-header.is-scrolled .brand {
  width: 202px !important;
  padding: 8px 12px 7px !important;
  box-shadow: 0 12px 28px rgba(4,18,38,.10) !important;
}

.site-header .menu {
  gap: 5px !important;
}
.site-header .menu a {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #18304d !important;
  font-family: var(--sans) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: .015em !important;
  text-transform: uppercase;
  transition: color .24s ease, background .24s ease, border-color .24s ease, transform .24s ease;
}
.site-header .menu a:hover,
.site-header .menu a.active {
  color: var(--navy-900) !important;
  background: rgba(199,155,66,.10);
  border-color: rgba(199,155,66,.22);
  transform: translateY(-1px);
}
.site-header .menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  transition: transform .28s ease;
}
.site-header .menu a:hover::after,
.site-header .menu a.active::after { transform: scaleX(1); }
.menu-icon { width: 16px !important; height: 16px !important; display: grid; place-items: center; }
.menu-fa {
  color: var(--gold-500) !important;
  font-size: 13px !important;
  opacity: .92 !important;
  transition: transform .26s ease, color .26s ease, opacity .26s ease;
}
.site-header .menu a:hover .menu-fa,
.site-header .menu a.active .menu-fa {
  transform: translateY(-2px) scale(1.05);
  opacity: 1 !important;
}

.nav-right.header-tools {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 12px !important;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(199,155,66,.24);
  border-radius: 999px;
  color: rgba(13,32,56,.78);
  background: rgba(255,255,255,.82);
  box-shadow: 0 15px 35px rgba(8,40,71,.08), inset 0 0 0 1px rgba(255,255,255,.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(216,182,107,.10);
  animation: statusPulse 2.8s ease-in-out infinite;
}
.status-fa { color: var(--gold-500); font-size: 11px; }
@keyframes statusPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(216,182,107,.10); }
  50% { transform: scale(1.18); box-shadow: 0 0 0 8px rgba(216,182,107,.045); }
}

.language-switch {
  display: inline-flex !important;
  align-items: center;
  min-height: 38px;
  padding: 4px 5px 4px 11px;
  border: 1px solid rgba(199,155,66,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 15px 35px rgba(8,40,71,.08), inset 0 0 0 1px rgba(255,255,255,.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.language-switch > .fa-icon,
.language-switch > i {
  margin-right: 7px;
  color: var(--gold-500);
  font-size: 11px;
}
.language-option {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(13,32,56,.58);
  background: transparent;
  font: 800 10px/1 var(--sans) !important;
  letter-spacing: .05em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.language-option:hover { color: var(--navy-900); }
.language-option.is-active,
.language-option.active {
  color: var(--navy-950) !important;
  background: var(--gold-400) !important;
  box-shadow: 0 6px 14px rgba(4,18,38,.13);
}
.language-option:active { transform: scale(.96); }
.language-divider {
  width: 1px;
  height: 14px;
  margin: 0 1px;
  background: rgba(13,32,56,.15);
}
.hamb {
  width: 40px;
  height: 40px;
  border-radius: 999px !important;
  display: none;
  place-items: center;
  border: 1px solid rgba(199,155,66,.26) !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 10px 24px rgba(8,40,71,.08);
}
.hamb-fa { color: var(--navy-900); font-size: 16px; }

/* Badges e títulos de secção alinhados à página em construção */
.eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 18px !important;
  padding: 0 12px;
  border: 1px solid rgba(199,155,66,.20);
  border-radius: 999px;
  color: var(--gold-500) !important;
  background: rgba(199,155,66,.055);
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  width: fit-content;
}
.eyebrow::before {
  content: "\f19c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-500);
  font-size: 11px;
}
.hero .eyebrow::before { content: "\f66f"; }
.practices .eyebrow::before, .page-hero-areas .eyebrow::before { content: "\f0b1"; }
.sectors .eyebrow::before, .page-hero-sectors .eyebrow::before { content: "\f5fd"; }
.invest-presence .eyebrow::before, .page-hero-invest .eyebrow::before { content: "\f3c5"; }

/* Ícones com a mesma lógica da página em construção: círculo, linha, dourado e microanimação */
.fa-icon { line-height: 1 !important; }
.trust-svg,
.practice-svg,
.sector-svg,
.office-svg,
.panel-fa,
.value-fa,
.area-fa,
.sector-page-fa,
.process-fa,
.contact-fa,
.insight-fa,
.cta-fa,
.page-hero-fa {
  color: var(--gold-500) !important;
  filter: none !important;
  transition: transform .44s cubic-bezier(.22,.61,.36,1), color .28s ease, background .28s ease, box-shadow .28s ease;
}
.trust-item .trust-svg,
.practice .practice-svg,
.value-card .value-fa,
.area-service-card .area-fa,
.sector-service-card .sector-page-fa,
.process-card .process-fa,
.contact-office .contact-fa,
.insight-card .insight-fa {
  display: grid !important;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  border: 1px solid rgba(199,155,66,.28);
  border-radius: 50%;
  background: rgba(199,155,66,.06);
  font-size: 21px !important;
}
.trust-item:hover .trust-svg,
.practice:hover .practice-svg,
.value-card:hover .value-fa,
.area-service-card:hover .area-fa,
.sector-service-card:hover .sector-page-fa,
.process-card:hover .process-fa,
.contact-office:hover .contact-fa,
.insight-card:hover .insight-fa {
  transform: translateY(-5px) scale(1.04);
  background: var(--gold-400);
  color: var(--navy-950) !important;
  box-shadow: 0 16px 30px rgba(199,155,66,.18);
}
.sector-card .sector-svg {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(234,215,169,.34);
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: var(--gold-300) !important;
  font-size: 20px !important;
}
.sector-card:hover .sector-svg {
  background: var(--gold-400);
  color: var(--navy-950) !important;
  transform: translateY(-4px) scale(1.045);
}
.page-card-icon {
  border-radius: 50% !important;
  border: 1px solid rgba(199,155,66,.34) !important;
  background: rgba(199,155,66,.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 18px 36px rgba(4,18,38,.13) !important;
}
.page-card:hover .page-hero-fa { animation: iconFloat .85s ease both; }
@keyframes iconFloat { 0%{transform:translateY(0)}45%{transform:translateY(-7px)}100%{transform:translateY(0)} }

/* Redes sociais como na página em construção */
.social-rail a,
.footer-social a {
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease !important;
}
.social-rail a {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(216,182,107,.34) !important;
  color: var(--gold-400) !important;
  background: rgba(7,27,54,.72) !important;
  box-shadow: 0 12px 28px rgba(4,18,38,.16);
}
.social-rail a:hover {
  transform: translateY(-2px) !important;
  color: var(--navy-950) !important;
  border-color: var(--gold-400) !important;
  background: var(--gold-400) !important;
}
.social-rail .social-fa,
.social-rail .social-svg {
  color: currentColor !important;
  font-size: 15px !important;
}
.footer-social {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px !important;
  height: 36px !important;
  border: 1px solid rgba(216,182,107,.30) !important;
  color: var(--gold-400) !important;
  background: rgba(255,255,255,.04) !important;
}
.footer-social a:hover {
  transform: translateY(-2px) !important;
  color: var(--navy-950) !important;
  background: var(--gold-400) !important;
  border-color: var(--gold-400) !important;
}
.footer-social .social-fa { font-size: 14px !important; color: currentColor !important; }

/* Botões: ícones com animação limpa */
.btn .fa-icon,
.link-arrow .fa-icon,
.circle-btn .fa-icon,
.sector-arrow .fa-icon,
.practice-next .fa-icon {
  transition: transform .32s cubic-bezier(.22,.61,.36,1), color .28s ease;
}
.btn:hover .fa-icon,
.link-arrow:hover .fa-icon,
.practice-next:hover .fa-icon { transform: translateX(5px); }
.circle-btn:hover .fa-icon,
.sector-arrow:hover .fa-icon { transform: scale(1.12); }

/* Loader mais próximo do refinamento da página em construção */
.preloader {
  background: linear-gradient(145deg, #fbfaf7 0%, #f5f2eb 100%) !important;
}
.loader-inner {
  min-width: 310px;
  padding: 30px 32px;
  border: 1px solid rgba(199,155,66,.24);
  background: rgba(255,255,255,.76);
  box-shadow: 0 30px 70px rgba(4,18,38,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.loader-inner img { height: auto !important; width: min(230px, 62vw); }
.loader-bar { height: 2px !important; background: rgba(13,32,56,.12) !important; }
.loader-bar span { background: linear-gradient(90deg, transparent, var(--gold-500), var(--navy-900)) !important; }

/* Mobile */
@media (max-width: 1320px) {
  .site-header .menu a { font-size: 9.8px !important; padding: 0 7px; }
  .header-status { display: none !important; }
  .site-header .nav { grid-template-columns: 218px minmax(0,1fr) auto !important; }
}
@media (max-width: 1180px) {
  .site-header .menu { display: none !important; }
  .hamb { display: grid !important; }
  .site-header .nav { grid-template-columns: 220px 1fr auto !important; }
  .mobile-panel {
    background: rgba(255,255,255,.94) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(199,155,66,.16);
  }
  .mobile-panel a {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }
  .mobile-menu-fa { color: var(--gold-500) !important; font-size: 16px; width: 20px; }
}
@media (max-width: 680px) {
  .site-header .container.nav { padding: 0 18px !important; }
  .site-header .brand { width: min(190px, 58vw) !important; padding: 8px 10px 7px !important; }
  .site-header .nav { grid-template-columns: auto 1fr auto !important; }
  .language-switch { min-height: 36px; padding-left: 8px; }
  .language-switch > .fa-icon { display: none; }
  .language-option { min-width: 34px; height: 27px; padding: 0 8px; }
  .eyebrow { font-size: 9px !important; }
}
