/* ============================================================
   CTS GROUP — Premium Marketing Design System
   Sans-serif only (Geist), modern, depth-rich
   ============================================================ */

:root {
  /* ===== Brand colors ===== */
  --c-blue:      #003399;
  --c-blue-d:    #00226A;
  --c-blue-dd:   #001440;
  --c-blue-deep: #001A4D;
  --c-blue-900:  #001F66;
  --c-blue-l:    #6081BF;
  --c-blue-ll:   #B8C7E3;
  --c-blue-50:   #F0F4FC;
  --c-blue-25:   #F7F9FE;

  /* ===== Neutrals ===== */
  --c-ink:       #0A0F1F;
  --c-ink-2:     #1F2A44;
  --c-ink-3:     #4A5673;
  --c-ink-4:     #7A8499;
  --c-ink-5:     #B0B7C5;
  --c-line:      #E8ECF3;
  --c-line-2:    #F1F3F8;
  --c-bg:        #FFFFFF;
  --c-bg-soft:   #F7F9FC;
  --c-bg-warm:   #FBFAF7;

  /* ===== Accents (used sparingly) ===== */
  --c-accent:    #FF5A1F;   /* warm orange (subtle highlight) */
  --c-success:   #16A34A;

  /* ===== Typography ===== */
  --f-sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ===== Sizing ===== */
  --maxw:        1320px;
  --maxw-narrow: 1080px;
  --maxw-text:   720px;
  --gutter:      1.5rem;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* ===== Effects ===== */
  --shadow-xs: 0 1px 2px rgba(10,15,31,.04);
  --shadow-sm: 0 2px 8px rgba(10,15,31,.05), 0 1px 2px rgba(10,15,31,.04);
  --shadow-md: 0 8px 24px rgba(10,15,31,.06), 0 2px 6px rgba(10,15,31,.04);
  --shadow-lg: 0 24px 48px -12px rgba(10,15,31,.12), 0 4px 12px rgba(10,15,31,.05);
  --shadow-xl: 0 40px 80px -20px rgba(0,34,106,.18), 0 8px 24px rgba(10,15,31,.06);
  --shadow-blue: 0 24px 48px -12px rgba(0,51,153,.25);

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink-2);
  background: var(--c-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--c-blue); color: #fff; }

/* Troca de idioma — transição suave */
html.is-i18n-switching body {
  opacity: 0.94;
  transition: opacity 0.2s var(--ease);
}
html:not(.is-i18n-switching) body {
  transition: opacity 0.25s var(--ease);
}

/* ============================================================
   Page-load animation — branded full-screen loader
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--c-blue-dd);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: all;
  overflow: hidden;
  isolation: isolate;
}
.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  z-index: 0;
}
.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(96,129,191,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,51,153,0.4) 0%, transparent 60%);
  z-index: 0;
}
.pl-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  opacity: 0;
  animation: plFade .8s var(--ease) .4s forwards;
}
.pl-corner--tl { top: 1.75rem; left: 2rem; }
.pl-corner--tr { top: 1.75rem; right: 2rem; }
.pl-corner--bl { bottom: 1.75rem; left: 2rem; }
.pl-corner--br { bottom: 1.75rem; right: 2rem; }
.pl-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.pl-tag {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue-l);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
  animation: plFade .8s var(--ease) .15s forwards;
}
.pl-tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-blue-l);
  box-shadow: 0 0 0 4px rgba(96,129,191,0.2);
  animation: plPulse 1.6s ease-in-out infinite;
}
.pl-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1;
}
.pl-mark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  animation: plLetter .9s var(--ease) forwards;
}
.pl-mark span:nth-child(1) { animation-delay: .1s; }
.pl-mark span:nth-child(2) { animation-delay: .2s; }
.pl-mark span:nth-child(3) { animation-delay: .3s; }
.pl-logo {
  display: block;
  width: clamp(220px, 28vw, 360px);
  height: auto;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: plLogoIn 1s var(--ease) .15s forwards;
  filter: drop-shadow(0 12px 36px rgba(96,129,191,0.18));
}
@keyframes plLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pl-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.015em;
  opacity: 0;
  animation: plFade .8s var(--ease) .55s forwards;
}
.pl-sub em {
  font-style: italic;
  color: var(--c-blue-l);
  font-weight: 500;
}
.pl-bar {
  width: 220px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  margin-top: 0.75rem;
  opacity: 0;
  animation: plFade .8s var(--ease) .7s forwards;
}
.pl-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--c-blue-l), #fff, transparent);
  animation: plBar 1.4s ease-in-out infinite;
  width: 60%;
}
@keyframes plLetter {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes plFade {
  to { opacity: 1; }
}
@keyframes plPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(96,129,191,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(96,129,191,0.05); }
}
@keyframes plBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(266%); }
}
@keyframes pageOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
body.loaded .page-loader { animation: pageOut .7s var(--ease) forwards; }
body.is-loading { overflow: hidden; }

/* Page-exit curtain (when navigating to another page) */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--c-blue-dd);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform .55s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
body.is-leaving .page-curtain {
  transform: translateY(0);
  pointer-events: all;
}
@media (max-width: 640px) {
  .pl-corner { font-size: 0.625rem; }
  .pl-corner--tl, .pl-corner--bl { left: 1.25rem; }
  .pl-corner--tr, .pl-corner--br { right: 1.25rem; }
}

/* Hero entrance animations triggered by .loaded */
.hero-anim { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
body.loaded .hero-anim { opacity: 1; transform: translateY(0); }
body.loaded .hero-anim-1 { transition-delay: .1s; }
body.loaded .hero-anim-2 { transition-delay: .2s; }
body.loaded .hero-anim-3 { transition-delay: .3s; }
body.loaded .hero-anim-4 { transition-delay: .4s; }
body.loaded .hero-anim-5 { transition-delay: .5s; }
body.loaded .hero-anim-6 { transition-delay: .6s; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-sans);
  color: var(--c-ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.h-display {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}
.h-1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.h-2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.h-3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  line-height: 1.6;
  color: var(--c-ink-3);
  font-weight: 400;
  /* max-width: 60ch; */
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--c-blue);
}

.eyebrow--light { color: var(--c-blue-l); }
.eyebrow--light::before { background: var(--c-blue-l); }

.text-gradient {
  background: linear-gradient(120deg, var(--c-blue) 0%, var(--c-blue-l) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }
.container--text { max-width: var(--maxw-text); }

.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-blue-dd); color: #fff; }
.section--ink { background: var(--c-ink); color: #fff; }
.section--blue { background: var(--c-blue); color: #fff; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head .lead { justify-self: end; max-width: 480px; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-head .lead { justify-self: start; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .arrow { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--c-ink);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--blue {
  background: var(--c-blue);
  color: #fff;
}
.btn--blue:hover {
  background: var(--c-blue-d);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn--ghost:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-ink-5);
}

.btn--white {
  background: #fff;
  color: var(--c-ink);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-xl);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all .35s var(--ease);
  background: var(--c-bg);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
  z-index: -1;
}
.site-header.is-scrolled {
  padding: 0.625rem 0;
}
.site-header.is-scrolled::before {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--c-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 48px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-ink);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  z-index: 2;
  flex-shrink: 0;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  box-shadow: 0 4px 12px rgba(0,51,153,0.25);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 50%);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.brand-sub {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: var(--c-ink-4);
  text-transform: uppercase;
  font-weight: 400;
}

/* Logo image (header / footer) */
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity .25s ease, transform .25s ease;
  flex-shrink: 0;
}
.brand:hover .brand-logo { opacity: 0.88; }
.brand--on-dark { display: inline-flex; align-items: center; }
.brand-logo--white { height: 48px; max-width: 240px; }
@media (max-width: 700px) {
  .brand-logo { height: 36px; max-width: 180px; }
  .brand-logo--white { height: 40px; max-width: 200px; }
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  margin-left: auto;
}

.nav-list__links {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-wrap: nowrap;
  text-transform: uppercase;
}

.nav-links > li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-list__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-left: 0.5rem;
  margin-left: 0.25rem;
  border-left: 1px solid var(--c-line);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--c-ink-2);
  border-radius: 100px;
  transition: color .25s var(--ease), background .25s var(--ease);
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link span {
  white-space: nowrap;
}

.nav-link:hover { color: var(--c-blue); background: var(--c-blue-50); }
.nav-link.is-active { color: var(--c-blue); background: var(--c-blue-25); }
.nav-link .caret,
.nav-icon-external {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 0.65;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.nav-link:hover .caret,
.nav-link:hover .nav-icon-external { opacity: 1; }

.nav-link--external {
  gap: 0.25rem;
}

.nav-lang {
  display: flex;
  align-items: center;
}

.nav-lang select,
#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.5rem 1.75rem 0.5rem 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  background: var(--c-bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%234A5673' stroke-width='1.6'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.5rem center / 10px;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.nav-lang select:hover,
#languageSelector:hover {
  border-color: var(--c-ink-5);
  background-color: #fff;
}

.nav-lang select:focus-visible,
#languageSelector:focus-visible {
  outline: 2px solid var(--c-blue-l);
  outline-offset: 2px;
}

.nav-item--dropdown { position: relative; }
.nav-item--dropdown:hover .caret { transform: rotate(180deg); }
.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 100;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0; height: 16px;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink-2);
  transition: all .2s var(--ease);
}
.nav-dropdown-link:hover { background: var(--c-blue-50); color: var(--c-blue); }
.nav-dropdown-link svg { width: 14px; height: 14px; opacity: 0; transform: translateX(-4px); transition: all .2s var(--ease); }
.nav-dropdown-link:hover svg { opacity: 1; transform: translateX(0); }
.nav-dropdown-divider { height: 1px; background: var(--c-line-2); margin: 0.5rem 0; }

.nav-cta-wrap { margin-left: 0.75rem; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5625rem 1rem;
  background: var(--c-ink);
  color: #fff;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover {
  background: var(--c-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,51,153,0.25);
}
.nav-cta.is-active {
  background: var(--c-blue);
}

@media (max-width: 1280px) {
  .nav-link {
    padding: 0.5rem 0.625rem;
    font-size: 0.75rem;
  }
  .nav-cta {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
  .brand-logo {
    height: 36px;
    max-width: 170px;
  }
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: all .3s var(--ease);
  border-radius: 2px;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .menu-toggle { display: inline-flex; }
  .nav-list {
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 6rem 1.5rem 2rem;
    gap: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    margin-left: 0;
  }
  .nav-list.is-open { transform: translateX(0); }
  .nav-list__links,
  .nav-list__actions {
    display: block;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav-links > li { width: 100%; }
  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1rem;
    font-size: 1.0625rem;
    border-radius: 10px;
  }
  .nav-list__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--c-line);
  }
  .nav-lang select,
  #languageSelector {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    font-size: 0.8125rem;
  }
  .nav-cta-wrap { margin: 0; }
  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--c-bg-soft);
    margin: 0.25rem 0 0.5rem;
    min-width: 0;
    display: none;
  }
  .nav-item--dropdown.is-open .nav-dropdown { display: block; }
  .nav-item--dropdown:hover .caret { transform: none; }
  .nav-item--dropdown.is-open .caret { transform: rotate(180deg); }
}

/* ============================================================
   HERO — Home (the centerpiece)
   ============================================================ */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(96,129,191,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(0,51,153,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 60%, rgba(96,129,191,0.10) 0%, transparent 50%),
    var(--c-bg);
}
.hero-bg--home-image {
  background: url("../img/hero-img.jpg") center right / cover no-repeat;
}

.hero-bg--home-image-2 {
  background: url("../img/traducoes-banner-img.jpeg") center right / cover no-repeat;
}

.hero-bg--home-image::before, .hero-bg--home-image-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
     rgba(255,255,255,1) 0,
     rgba(255,255,255,1) 10vw,
    rgba(255,255,255,0.8) 45vw,
    rgba(255,255,255,0.7) 65vw,
    rgba(255,255,255,0) 100%
  );
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0,51,153,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,51,153,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--c-ink-2);
  font-weight: 500;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  background: var(--c-blue);
  color: #fff;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
  50% { box-shadow: 0 0 0 5px rgba(22,163,74,0.05); }
}

.hero-title {
  margin: 1.5rem 0 1.5rem;
  letter-spacing: -0.045em;
}
.hero-title .accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--c-blue) 0%, var(--c-blue-l) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead { margin-bottom: 2rem; max-width: 540px; font-size: 1.125rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars > * {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--c-blue-50);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.hero-trust-avatars > *:first-child { margin-left: 0; }
.hero-trust-text {
  font-size: 0.8125rem;
  color: var(--c-ink-3);
  line-height: 1.4;
}
.hero-trust-text strong { color: var(--c-ink); font-weight: 600; display: block; }

/* Hero visual — animated dashboard mockup */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 580px;
}

.dash-card {
  position: absolute;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dash-main {
  inset: 8% 8% 22% 12%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 2;
}
.dash-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dash-main-title {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 0.5rem;
}
.dash-main-value {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.dash-main-trend {
  font-size: 0.75rem;
  color: var(--c-success);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.dash-chart {
  flex: 1;
  position: relative;
  min-height: 100px;
}
.dash-chart svg { width: 100%; height: 100%; overflow: visible; }
.dash-chart-line {
  stroke: var(--c-blue);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 2s var(--ease) .8s forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.dash-chart-area {
  fill: url(#chart-gradient);
  opacity: 0;
  animation: fade-in 1s ease 1.8s forwards;
}
@keyframes fade-in { to { opacity: 1; } }
.dash-chart-dot {
  fill: var(--c-blue);
  stroke: #fff;
  stroke-width: 3;
  opacity: 0;
  animation: fade-in .4s ease forwards;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 32px;
  padding-top: 0.5rem;
  border-top: 1px solid var(--c-line-2);
}
.dash-bar {
  flex: 1;
  background: var(--c-blue-ll);
  border-radius: 2px;
  transform-origin: bottom;
  animation: bar-grow .8s var(--ease) forwards;
  transform: scaleY(0);
}
.dash-bar.is-up { background: var(--c-blue); }
@keyframes bar-grow { to { transform: scaleY(1); } }

.dash-stat {
  inset: auto 4% 8% auto;
  width: 56%;
  padding: 1.125rem 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 4s ease-in-out infinite;
}
.dash-stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-d));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 16px rgba(0,51,153,0.25);
}
.dash-stat-text strong { display: block; font-size: 1.125rem; color: var(--c-ink); font-weight: 600; letter-spacing: -0.02em; }
.dash-stat-text span { font-size: 0.75rem; color: var(--c-ink-4); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.dash-tag {
  inset: 4% auto auto 4%;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  animation: float 4s ease-in-out infinite reverse;
}
.dash-tag-dot {
  width: 6px; height: 6px;
  background: var(--c-success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.dash-decor {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.dash-decor.dec-1 {
  inset: -10% auto auto -10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--c-blue-l) 0%, transparent 70%);
}
.dash-decor.dec-2 {
  inset: auto -10% -15% auto;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--c-blue) 0%, transparent 70%);
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 520px; margin: 0 auto; aspect-ratio: 1.1 / 1; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-trust { flex-wrap: wrap; }
}

/* ============================================================
   Cadastro de profissionais
   ============================================================ */
.cadastro-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.cadastro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  width: 100%;
}
.cadastro-hero-content {
  max-width: 100%;
  text-align: center;
}
.cadastro-hero-kicker {
  margin-bottom: 1.5rem;
}
.cadastro-hero-title {
  margin-bottom: 1.5rem;
}
.cadastro-hero-lead {
  margin-bottom: 2rem;
}
.cadastro-steps {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
}
.cadastro-step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(232,236,243,0.85);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cadastro-step-num {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--c-blue);
}
.cadastro-step-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--c-ink-3);
}
.cadastro-step-text strong {
  color: var(--c-ink);
  font-weight: 600;
}
.cadastro-form-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(232,236,243,0.9);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
.cadastro-form-card h2 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.cadastro-form-card > p {
  color: var(--c-ink-3);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.cadastro-form-card form {
  display: grid;
  gap: 1.125rem;
}
.cadastro-form-card .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .cadastro-hero {
    min-height: 0;
  }
  .cadastro-hero-grid {
    grid-template-columns: 1fr;
  }
  .cadastro-form-card {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .cadastro-step {
    background: rgba(255,255,255,0.88);
  }
}

/* ============================================================
   HERO — Inner pages (smaller, page-specific)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

body[data-page="traducoes"] .page-hero {
  background: url("../img/traducoes-banner-img.jpeg") center right / cover no-repeat !important;
  /* isolation: unset; */
}

.page-hero::before, body[data-page="traducoes"] .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(0,51,153,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(96,129,191,0.12) 0%, transparent 60%),
    var(--c-bg);
  z-index: -2;
}

.page-hero::after, body[data-page="traducoes"] .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,51,153,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,51,153,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 0%, transparent 80%);
  z-index: -1;
}

.ph-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ph-content { max-width: 640px; }
.ph-title {
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.ph-title .accent {
  background: linear-gradient(120deg, var(--c-blue) 0%, var(--c-blue-l) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ph-lead { margin-bottom: 2rem; font-size: 1.125rem; }
.ph-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.ph-meta-item .label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  display: block;
  margin-bottom: 0.25rem;
}
.ph-meta-item .value {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.ph-meta-item .value em {
  font-style: normal;
  color: var(--c-blue);
}

.ph-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  max-height: 560px;
}

@media (max-width: 1024px) {
  .ph-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ph-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .page-hero { padding: 8.5rem 0 3rem; }
  .ph-meta { gap: 1.75rem; }
}

/* ============================================================
   Marquee (the one user liked)
   ============================================================ */
.marquee {
  padding: 3rem 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line-2);
  border-bottom: 1px solid var(--c-line-2);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 2rem;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-ink-3);
  letter-spacing: -0.015em;
  opacity: 0.8;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.marquee-item:hover { opacity: 1; color: var(--c-blue); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Services grid (the one user liked)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-d) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.service-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  color: #fff;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card-num,
.service-card:hover .service-card-icon,
.service-card:hover .service-card-title,
.service-card:hover .service-card-desc { color: inherit; }
.service-card:hover .service-card-num { color: rgba(255,255,255,0.6); }
.service-card:hover .service-card-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.service-card:hover .service-card-link { color: #fff; }
.service-card:hover .service-card-arrow { background: rgba(255,255,255,0.15); color: #fff; }

.service-card-num {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 1.5rem;
  transition: color .35s var(--ease);
}
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-ll);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  margin-bottom: 1.25rem;
  transition: all .35s var(--ease);
}
.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
  transition: color .35s var(--ease);
}
.service-card-desc {
  font-size: 0.9375rem;
  color: var(--c-ink-3);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  transition: color .35s var(--ease);
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--c-ink);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: auto;
  transition: color .35s var(--ease);
}
.service-card-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  transition: all .35s var(--ease);
}
.service-card:hover .service-card-arrow svg { transform: translate(2px, -2px); }
.service-card-arrow svg { transition: transform .35s var(--ease); }

/* ============================================================
   Group companies (the one user liked)
   ============================================================ */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .companies-grid { grid-template-columns: 1fr; } }

.company-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-ink);
  color: #fff;
  min-height: 460px;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.company-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.company-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.company-card:hover .company-card-bg img { transform: scale(1.06); }
.company-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,20,64,0.3) 0%, rgba(0,20,64,0.85) 60%, rgba(0,20,64,0.95) 100%);
}
.company-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.company-card-tag {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue-ll);
  margin-bottom: 0.5rem;
}
.company-card-title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
}
.company-card-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.company-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  transition: gap .25s var(--ease);
}
.company-card:hover .company-card-link { gap: 0.75rem; }
.company-card-link svg { width: 14px; height: 14px; }

/* ============================================================
   About / Generic content sections
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.about-visual-tag-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--c-blue-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
}
.about-visual-tag strong { display: block; font-size: 1rem; font-weight: 600; }
.about-visual-tag span { font-size: 0.75rem; color: var(--c-ink-4); }

.about-content > .eyebrow { margin-bottom: 1rem; }
.about-content > h2 { margin-bottom: 1.25rem; }
.about-content > p { color: var(--c-ink-3); margin-bottom: 1rem; max-width: 56ch; font-size: 1.0625rem; }

.values-list { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.values-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--c-bg-soft);
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
}
.values-list li:hover { background: #fff; border-color: var(--c-line); box-shadow: var(--shadow-md); }
.value-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
}
.value-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.value-text p {
  font-size: 0.875rem;
  color: var(--c-ink-3);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   Stats section
   ============================================================ */
.stats-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--c-blue-dd);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(96,129,191,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,51,153,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.stats-section .eyebrow { color: var(--c-blue-ll); }
.stats-section .eyebrow::before { background: var(--c-blue-ll); }
.stats-section h2 { color: #fff; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  padding: 2.5rem 1.5rem 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 900px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
}
.stat-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-value em {
  font-style: normal;
  color: var(--c-blue-l);
  font-size: 0.6em;
  font-weight: 500;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 220px;
}

/* ============================================================
   Map section
   ============================================================ */
.map-section { padding: clamp(4rem, 9vw, 8rem) 0; }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) { .map-grid { grid-template-columns: 1fr; gap: 3rem; } }

.map-content > .eyebrow { margin-bottom: 1rem; }
.map-content > h2 { margin-bottom: 1.5rem; }
.map-content > p { color: var(--c-ink-3); margin-bottom: 2rem; max-width: 50ch; font-size: 1.0625rem; }
.map-presence { display: grid; gap: 0.875rem; }
.map-presence li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--c-bg-soft);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--c-ink-3);
  transition: all .25s var(--ease);
}
.map-presence li:hover { background: #fff; box-shadow: var(--shadow-sm); }
.map-presence-dot {
  width: 8px; height: 8px;
  background: var(--c-blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--c-blue-50);
}

.map-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-visual svg { width: 100%; height: 100%; }
.map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 0.75rem);
}
.map-marker { cursor: pointer; transition: transform .25s var(--ease); }
.map-marker:hover { transform: translateZ(0) scale(1.2); }
.map-marker-pulse { transform-origin: center; animation: pulse-ring 2.5s ease-out infinite; }
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-tooltip {
  position: absolute;
  background: var(--c-ink);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  pointer-events: none;
  transform: translate(-50%, -120%);
  white-space: nowrap;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.map-tooltip::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--c-ink);
}

/* ============================================================
   Testimonial
   ============================================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .testimonial-card { grid-template-columns: 1fr; } }
.testimonial-text-block { padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.testimonial-quote-mark {
  font-size: 3rem;
  line-height: 0.5;
  color: var(--c-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--c-ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}
.testimonial-author-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.testimonial-author-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name { font-weight: 600; font-size: 0.9375rem; color: var(--c-ink); letter-spacing: -0.01em; }
.testimonial-author-role { font-size: 0.8125rem; color: var(--c-ink-4); }
.testimonial-img { background: var(--c-bg-soft); min-height: 320px; }
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CTA section
   ============================================================ */
.cta-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--c-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0,51,153,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(96,129,191,0.18) 0%, transparent 60%);
  z-index: -1;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 80%);
  z-index: -1;
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner > .eyebrow { color: var(--c-blue-ll); justify-content: center; margin-bottom: 1.5rem; }
.cta-inner > .eyebrow::before { background: var(--c-blue-ll); }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1.5rem; letter-spacing: -0.035em; }
.cta-inner p { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-text { font-size: 0.9375rem; line-height: 1.6; max-width: 320px; margin: 1.25rem 0 1.5rem; color: rgba(255,255,255,0.55); }

.footer-socials { display: flex; gap: 0.5rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .25s var(--ease);
}
.footer-social:hover { background: var(--c-blue); color: #fff; transform: translateY(-2px); }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  font-family: var(--f-mono);
}
.footer-col ul { display: grid; gap: 0.625rem; }
.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color .25s var(--ease);
}
.footer-col ul a:hover { color: var(--c-blue-ll); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.24s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.32s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 0.48s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 0.56s; }
[data-stagger].is-visible > *:nth-child(9) { transition-delay: 0.64s; }
[data-stagger].is-visible > *:nth-child(10) { transition-delay: 0.72s; }

/* ============================================================
   Forms (contacto)
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-ink-2);
  letter-spacing: -0.005em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: #fff;
  font-size: 0.9375rem;
  color: var(--c-ink);
  transition: all .25s var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px var(--c-blue-50);
}
.form-textarea { min-height: 140px; resize: vertical; font-family: inherit; line-height: 1.5; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%237A8499' stroke-width='1.5'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--c-ink-3);
  line-height: 1.5;
}
.form-checkbox-row input { accent-color: var(--c-blue); margin-top: 0.2rem; flex-shrink: 0; }
.form-checkbox-row a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   Contact specific
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-info h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.contact-info > p { color: var(--c-ink-3); margin-bottom: 2rem; font-size: 0.9375rem; }
.contact-method { display: flex; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--c-line); }
.contact-method:last-child { border-bottom: 1px solid var(--c-line); }
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
  flex-shrink: 0;
}
.contact-method-text .label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  display: block;
  margin-bottom: 0.25rem;
}
.contact-method-text .value {
  font-size: 0.9375rem;
  color: var(--c-ink);
  font-weight: 500;
  display: block;
  line-height: 1.45;
}
.contact-method-text .value:hover { color: var(--c-blue); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card form { display: grid; gap: 1.25rem; }

/* ============================================================
   Clients (logos grid)
   ============================================================ */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logos-grid { grid-template-columns: repeat(2, 1fr); } }

.logo-item {
  background: #fff;
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--c-ink-4);
  transition: all .3s var(--ease);
  text-align: center;
}
.logo-item:hover { background: var(--c-bg-soft); color: var(--c-blue); }

/* Case cards */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .3s var(--ease);
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-blue-ll); }
.case-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  background: var(--c-blue-50);
  color: var(--c-blue);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-card-title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin: 0.25rem 0; }
.case-card-desc { font-size: 0.9375rem; color: var(--c-ink-3); line-height: 1.55; }
.case-card-result {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-line-2);
  display: flex;
  gap: 2rem;
}
.case-card-result-item .label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  display: block;
}
.case-card-result-item .value {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--c-blue);
}

/* ============================================================
   Partners
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; } }

.partner-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all .3s var(--ease);
}
.partner-card:hover { box-shadow: var(--shadow-lg); border-color: var(--c-blue-ll); transform: translateY(-2px); }
.partner-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-ll);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
  flex-shrink: 0;
}
.partner-card-content h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; font-weight: 600; letter-spacing: -0.015em; }
.partner-card-content p { font-size: 0.875rem; color: var(--c-ink-3); line-height: 1.55; margin-bottom: 0.75rem; }
.partner-card-content .tag-list { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.partner-card-content .tag-list span {
  padding: 0.25rem 0.625rem;
  background: var(--c-bg-soft);
  border-radius: 100px;
  font-size: 0.6875rem;
  color: var(--c-ink-3);
  font-weight: 500;
}

/* ============================================================
   Servicos page — methodology and detailed cards
   ============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: method;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .method-grid { grid-template-columns: 1fr; } }

.method-step {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  position: relative;
}
.method-step::before {
  counter-increment: method;
  content: "0" counter(method);
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--c-ink-5);
}
.method-step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
}
.method-step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.method-step p { font-size: 0.875rem; color: var(--c-ink-3); line-height: 1.55; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card { display: flex; flex-direction: column; gap: 1rem; }
.team-card-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-soft);
  position: relative;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-name { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.015em; }
.team-card-role { font-size: 0.8125rem; color: var(--c-ink-4); font-family: var(--f-mono); letter-spacing: 0.04em; }

/* ============================================================
   Timeline (history)
   ============================================================ */
.timeline-list {
  display: grid;
  gap: 0;
  position: relative;
  margin-top: 2rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--c-line);
  position: relative;
}
.timeline-item:last-child { border-bottom: 1px solid var(--c-line); }
.timeline-year {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
}
.timeline-content h4 { font-size: 1.125rem; margin-bottom: 0.5rem; font-weight: 600; letter-spacing: -0.015em; }
.timeline-content p { font-size: 0.9375rem; color: var(--c-ink-3); line-height: 1.6; max-width: 60ch; }
@media (max-width: 640px) { .timeline-item { grid-template-columns: 1fr; gap: 0.75rem; } .timeline-year { font-size: 1.5rem; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 0.625rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.faq-item:hover { border-color: var(--c-blue-ll); }
.faq-item.is-open { box-shadow: var(--shadow-md); border-color: var(--c-blue-ll); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--c-blue); color: #fff; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  font-size: 0.9375rem;
  color: var(--c-ink-3);
  line-height: 1.65;
}
.faq-item.is-open .faq-answer-inner { padding: 0 1.5rem 1.5rem; }

/* ============================================================
   Service detail blocks (servicos page)
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--c-line);
  align-items: center;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 2rem; direction: ltr !important; }
}

.service-detail-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-ll);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
  margin-bottom: 1.25rem;
}
.service-detail-content h3 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.1;
}
.service-detail-content > p {
  color: var(--c-ink-3);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 56ch;
}
.service-detail-features { display: grid; gap: 0.625rem; margin-bottom: 1.5rem; }
.service-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--c-ink-2);
}
.service-detail-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-blue-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23003399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5l3 3 5-6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  margin-top: 1px;
}

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  position: relative;
}
.service-detail-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Helpers
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.section-divider { height: 1px; background: var(--c-line); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   CTS TRADUÇÕES — separate aesthetic (cts.co.mz inspired)
   Red/oriental theme, traditional WordPress feel
   ============================================================ */
.trad-page {
  --c-red:        #C8102E;
  --c-red-d:      #8B0817;
  --c-red-l:      #E33D52;
  --c-red-50:     #FCF1F2;
  --c-gold:       #D4A574;
  --c-cream:      #FAF6F0;
}
.trad-page::selection { background: var(--c-red); color: #fff; }

.trad-page .brand-mark { background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-d) 100%); box-shadow: 0 4px 12px rgba(200,16,46,0.25); }
.trad-page .nav-link:hover { color: var(--c-red); background: var(--c-red-50); }
.trad-page .nav-cta { background: var(--c-red); }
.trad-page .nav-cta:hover { background: var(--c-red-d); box-shadow: 0 8px 20px rgba(200,16,46,0.3); }
.trad-page .eyebrow { color: var(--c-red); }
.trad-page .eyebrow::before { background: var(--c-red); }

.trad-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(200,16,46,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 80%, rgba(212,165,116,0.18) 0%, transparent 60%),
    var(--c-cream);
  overflow: hidden;
}
.trad-hero::before {
  content: "中";
  position: absolute;
  font-family: serif;
  font-size: clamp(20rem, 40vw, 36rem);
  font-weight: 900;
  color: rgba(200,16,46,0.04);
  top: 50%; right: -5%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.trad-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) { .trad-hero-grid { grid-template-columns: 1fr; gap: 3rem; } }

.trad-hero-content > .eyebrow { margin-bottom: 1rem; }
.trad-hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--c-ink);
}
.trad-hero-title .accent { color: var(--c-red); }
.trad-hero-lead {
  font-size: 1.125rem;
  color: var(--c-ink-3);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
}
.trad-hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

.trad-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.trad-btn--primary { background: var(--c-red); color: #fff; }
.trad-btn--primary:hover { background: var(--c-red-d); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(200,16,46,0.3); }
.trad-btn--ghost { background: transparent; color: var(--c-ink); border: 1px solid var(--c-ink-5); }
.trad-btn--ghost:hover { background: #fff; border-color: var(--c-red); color: var(--c-red); }

.trad-hero-langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,16,46,0.15);
}
.trad-hero-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #fff;
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink);
}
.trad-hero-lang span { font-family: serif; color: var(--c-red); font-size: 1.125rem; }

.trad-hero-visual {
  position: relative;
  aspect-ratio: 1/1.1;
  max-height: 540px;
}
.trad-hero-stack {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(139,8,23,0.15), 0 8px 16px rgba(139,8,23,0.08);
  padding: 1.5rem;
}
.trad-hero-stack-1 {
  inset: 0 30% 30% 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trad-hero-stack-2 {
  inset: 25% 0 5% 25%;
  z-index: 2;
  background: var(--c-red);
  color: #fff;
}
.trad-hero-stack-3 {
  inset: 50% 50% 0 0;
  z-index: 1;
  background: var(--c-gold);
  border-radius: 18px;
  opacity: 0.9;
}
.trad-stamp-num {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-ink-4);
  text-transform: uppercase;
}
.trad-stamp-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.trad-stamp-cn {
  font-family: serif;
  font-size: 2.5rem;
  color: var(--c-red);
  line-height: 1;
  margin-top: 0.5rem;
}
.trad-stamp-row { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--c-line-2); }
.trad-stamp-row span { font-size: 0.75rem; color: var(--c-ink-4); }
.trad-stamp-row strong { font-size: 0.875rem; color: var(--c-ink); }

.trad-hero-stack-2-cn {
  font-family: serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.95);
  line-height: 0.9;
  font-weight: 400;
}
.trad-hero-stack-2-label {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* Trad sections (re-using utilities with red theme) */
.trad-page .service-card-icon { background: var(--c-red-50); color: var(--c-red); border-color: rgba(200,16,46,0.2); }
.trad-page .service-card:hover::before { background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-d) 100%); }
.trad-page .service-card-arrow { color: var(--c-red); }
.trad-page .text-gradient { background: linear-gradient(120deg, var(--c-red) 0%, var(--c-gold) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trad-page .stats-section { background: linear-gradient(135deg, var(--c-red-d) 0%, #5C0510 100%); }
.trad-page .stats-section .eyebrow { color: rgba(255,200,205,0.9); }
.trad-page .stats-section .eyebrow::before { background: rgba(255,200,205,0.9); }
.trad-page .stat-value em { color: var(--c-gold); }
.trad-page .cta-section::before { background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(200,16,46,0.4) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 100% 100%, rgba(212,165,116,0.18) 0%, transparent 60%); }
.trad-page .cta-inner > .eyebrow { color: rgba(255,200,205,0.9); }
.trad-page .cta-inner > .eyebrow::before { background: rgba(255,200,205,0.9); }
.trad-page .footer-social:hover { background: var(--c-red); }

.trad-section--cream { background: var(--c-cream); }
.trad-page .map-presence-dot { background: var(--c-red); box-shadow: 0 0 0 3px var(--c-red-50); }
.trad-page .map-visual { background: linear-gradient(135deg, var(--c-cream) 0%, #fff 100%); }
.trad-page .partner-card-icon { background: var(--c-red-50); color: var(--c-red); border-color: rgba(200,16,46,0.2); }

/* About visual tag in trad page */
.trad-page .about-visual-tag-icon { background: var(--c-red-50); color: var(--c-red); }
