:root {
  --bg: #060912;
  --bg-soft: #0b1120;
  --surface: rgba(15, 20, 32, 0.78);
  --surface-strong: #101826;
  --surface-alt: #0d1422;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(201, 161, 72, 0.22);
  --text: #ffffff;
  --muted: #aeb8c9;
  --gold: #c9a148;
  --gold-deep: #8f7431;
  --blue: #0057b8;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.16);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(201, 161, 72, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.34), transparent 26%),
    linear-gradient(180deg, #002754 0%, #003c79 40%, #002347 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(7, 11, 20, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 74, 0.28);
  background: rgba(201, 161, 74, 0.08);
  color: #f5e7c8;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 108px 0 76px;
  background:
    linear-gradient(92deg, rgba(2, 16, 32, 0.95) 0%, rgba(0, 55, 104, 0.64) 44%, rgba(3, 18, 35, 0.9) 100%),
    linear-gradient(180deg, rgba(0, 87, 184, 0.1), rgba(1, 12, 24, 0.54)),
    url("../assets/images/fundo.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 161, 72, 0.14), transparent 18%),
    radial-gradient(circle at 72% 24%, rgba(0, 87, 184, 0.1), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100svh - 184px);
  max-width: none;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy > * {
  opacity: 0;
  animation: rise-in 700ms ease forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 150ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 220ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 290ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 360ms;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.hero-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(1.78rem, 3.6vw, 3.3rem);
  letter-spacing: -0.045em;
}

.lead,
.section-intro,
.panel-note,
.contact-note,
.timeline-step p,
.feature-card p,
.audience-card p,
.definition-card p,
.criteria-card p,
.faq-card p,
.mini-card p,
.highlight-box p,
.global-panel span {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.lead {
  max-width: 46ch;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  color: #0b0f18;
  background: linear-gradient(135deg, #e1c077 0%, #c9a14a 54%, #b48434 100%);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.btn-block {
  width: 100%;
}

.hero-proof,
.feature-card,
.mini-card,
.definition-card,
.criteria-card,
.audience-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(12, 18, 31, 0.58);
  box-shadow: var(--shadow-soft);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-media {
  display: grid;
  gap: 16px;
}

.hero-figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(8, 12, 20, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-figure img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-media-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(201, 161, 74, 0.06), rgba(10, 15, 25, 0.88) 40%),
    rgba(10, 15, 25, 0.76);
  box-shadow: var(--shadow-soft);
}

.hero-media-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  line-height: 1.4;
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-mini-proof span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(12, 18, 31, 0.46);
  color: #dde3ee;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-panel {
  opacity: 0;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 27, 42, 0.9) 0%, rgba(9, 14, 24, 0.94) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: rise-in 820ms ease 320ms forwards;
}

.hero-panel h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-link {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.panel-list,
.info-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li,
.info-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.panel-list li + li,
.info-list li + li {
  margin-top: 14px;
}

.panel-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f5d19a);
  box-shadow: 0 0 14px rgba(217, 179, 106, 0.35);
}

.panel-note {
  margin: 24px 0 0;
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -170px;
}

.trust-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 14, 24, 0.74);
  box-shadow: var(--shadow-soft);
}

.trust-shell p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  max-width: 38ch;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
}

.timeline-support {
  margin-top: 26px;
}

.feature-proof-heading {
  margin-top: 34px;
  margin-bottom: 20px;
}

.timeline-scale-heading {
  margin: 34px auto 24px;
}

.timeline-scale-panel {
  max-width: 1080px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.impact-section {
  padding: 52px 0 22px;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(0, 87, 184, 0.1), rgba(1, 17, 34, 0.04)),
    rgba(0, 50, 98, 0.7);
}

.comparison-section,
.team-proof-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    transparent;
}

#desafio,
#modelo,
#operacao-escala,
#time,
#como,
#publico,
#diferenciais,
.presence-section,
.authority-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.comparison-section,
.team-proof-section,
.faq-section {
  padding-top: 74px;
  padding-bottom: 82px;
}

.section-pdr {
  padding-top: 90px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at top right, rgba(0, 87, 184, 0.16), transparent 22%),
    radial-gradient(circle at bottom left, rgba(201, 161, 72, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(0, 61, 120, 0.34), rgba(2, 17, 34, 0.18));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.18rem, 1.72vw, 1.66rem);
  letter-spacing: -0.025em;
}

.section-intro {
  margin: 14px 0 0;
  max-width: 58ch;
  font-size: 0.97rem;
  line-height: 1.72;
}

.feature-grid,
.audience-grid,
.faq-grid,
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.mini-card,
.definition-card,
.criteria-card,
.audience-card,
.faq-card {
  padding: 24px;
}

.feature-card,
.mini-card,
.definition-card,
.criteria-card,
.audience-card,
.faq-card,
.team-card,
.timeline-step,
.careers-card,
.support-item,
.governance-column,
.impact-card,
.authority-point,
.global-panel div {
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.feature-card:hover,
.mini-card:hover,
.definition-card:hover,
.criteria-card:hover,
.audience-card:hover,
.faq-card:hover,
.team-card:hover,
.timeline-step:hover,
.careers-card:hover,
.support-item:hover,
.governance-column:hover,
.impact-card:hover,
.authority-point:hover,
.global-panel div:hover {
  transform: translateY(-3px);
}

.feature-card h3,
.mini-card h3,
.definition-card h3,
.criteria-card h3,
.audience-card h3,
.faq-card h3,
.timeline-step h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.feature-card p,
.mini-card p,
.audience-card p,
.faq-card p,
.criteria-card p,
.definition-card p {
  margin: 0;
  font-size: 0.94rem;
}

.split-grid,
.definition-grid,
.contact-shell,
.global-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.definition-grid {
  margin-bottom: 28px;
}

.proof-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 26px;
  align-items: center;
}

.pdr-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.criteria-grid-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 26px auto 0;
}

.pdr-visual-grid {
  margin-top: 28px;
}

.criteria-grid-summary .criteria-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.criteria-grid-summary .criteria-card h3,
.criteria-grid-summary .criteria-card p {
  margin-left: auto;
  margin-right: auto;
}

.criteria-grid-summary .criteria-card p {
  max-width: 28ch;
}

.pdr-compare-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(10, 15, 25, 0.74);
  box-shadow: var(--shadow);
}

.pdr-compare-card-primary {
  border-color: rgba(217, 179, 106, 0.24);
  background:
    linear-gradient(180deg, rgba(217, 179, 106, 0.08), rgba(10, 15, 25, 0.92) 34%),
    rgba(10, 15, 25, 0.84);
}

.pdr-compare-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.pdr-compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdr-compare-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.pdr-compare-list li + li {
  margin-top: 12px;
}

.pdr-compare-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f5d19a);
}

.proof-split-reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.proof-media {
  display: grid;
  gap: 14px;
}

.proof-media img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(8, 12, 20, 0.82);
  box-shadow: var(--shadow);
}

.proof-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.proof-copy .section-intro {
  margin-bottom: 22px;
}

.proof-points {
  display: grid;
  gap: 14px;
}

.proof-point {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(10, 15, 25, 0.72);
  box-shadow: var(--shadow-soft);
}

.proof-point strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.proof-point span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.audience-proof-points {
  margin-bottom: 26px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.comparison-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(10, 15, 25, 0.74);
  box-shadow: var(--shadow-soft);
}

.comparison-card-highlight {
  border-color: rgba(217, 179, 106, 0.24);
  background:
    linear-gradient(180deg, rgba(217, 179, 106, 0.08), rgba(10, 15, 25, 0.92) 30%),
    rgba(10, 15, 25, 0.82);
}

.comparison-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.comparison-media img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 20, 0.82);
}

.comparison-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-tag-gold {
  background: rgba(217, 179, 106, 0.14);
  border-color: rgba(217, 179, 106, 0.28);
  color: #f8e8c8;
}

.comparison-copy {
  padding: 16px 6px 4px;
}

.comparison-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.94rem;
}

.comparison-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.proof-real-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.proof-real-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(10, 15, 25, 0.72);
  box-shadow: var(--shadow-soft);
}

.proof-real-card img {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 20, 0.82);
}

.proof-real-copy {
  padding: 18px 20px 20px;
}

.proof-real-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.94rem;
}

.proof-real-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.stack-cards {
  display: grid;
  gap: 18px;
}

.team-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(0, 87, 184, 0.08), rgba(1, 16, 31, 0.02)),
    rgba(0, 49, 96, 0.72);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.team-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(0, 43, 84, 0.62);
  box-shadow: var(--shadow-soft);
}

.team-card-primary {
  border-color: rgba(201, 161, 72, 0.24);
  background:
    linear-gradient(180deg, rgba(201, 161, 72, 0.08), rgba(0, 65, 126, 0.82) 34%),
    rgba(0, 43, 84, 0.78);
}

.team-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.highlight-box {
  padding: 30px;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(217, 179, 106, 0.1), rgba(11, 16, 27, 0.92) 30%),
    rgba(11, 16, 27, 0.9);
  box-shadow: var(--shadow-soft);
}

.impact-heading {
  margin-bottom: 28px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.impact-card {
  padding: 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 23, 36, 0.92), rgba(9, 14, 24, 0.78));
  box-shadow: var(--shadow-soft);
}

.impact-card-primary {
  border-color: rgba(217, 179, 106, 0.28);
  background:
    linear-gradient(180deg, rgba(217, 179, 106, 0.12), rgba(9, 14, 24, 0.96) 38%),
    rgba(9, 14, 24, 0.92);
}

.impact-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--text);
}

.impact-value {
  white-space: nowrap;
}

.impact-value-wide {
  font-size: clamp(1.78rem, 3.1vw, 2.9rem);
  letter-spacing: -0.06em;
}

.impact-value-word {
  font-size: clamp(1.82rem, 3.05vw, 2.85rem);
  letter-spacing: -0.04em;
}

.impact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.quote {
  margin: 0 0 22px;
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  line-height: 1.42;
}

.info-list.compact {
  margin-top: 22px;
}

.definition-card.emphasis {
  border-color: var(--line-strong);
}

.governance-section {
  position: relative;
  padding-top: 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(0, 87, 184, 0.08), rgba(1, 16, 31, 0.02)),
    rgba(0, 49, 96, 0.72);
}

.governance-heading {
  margin-bottom: 28px;
}

.governance-purpose {
  margin-bottom: 32px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(201, 161, 72, 0.06), rgba(0, 65, 126, 0.9) 26%),
    rgba(0, 43, 84, 0.84);
  box-shadow: var(--shadow);
}

.governance-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.governance-statement {
  margin: 0;
  max-width: 34ch;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.34;
  color: var(--text);
}

.governance-values {
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.governance-assurance {
  margin-bottom: 24px;
}

.governance-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.governance-assurance-card {
  padding: 26px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.governance-assurance-card-green {
  border-color: rgba(106, 201, 126, 0.24);
  background:
    linear-gradient(180deg, rgba(71, 148, 87, 0.12), rgba(10, 15, 25, 0.94) 38%),
    rgba(10, 15, 25, 0.9);
}

.governance-assurance-card-blue {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 15, 25, 0.94) 38%),
    rgba(10, 15, 25, 0.9);
}

.governance-assurance-card-gold {
  border-color: rgba(201, 161, 72, 0.24);
  background:
    linear-gradient(180deg, rgba(201, 161, 72, 0.1), rgba(10, 15, 25, 0.94) 38%),
    rgba(10, 15, 25, 0.9);
}

.governance-assurance-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.governance-assurance-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.34;
}

.governance-assurance-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.governance-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.governance-values-grid span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.governance-flow {
  display: grid;
  gap: 24px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  background: rgba(10, 15, 25, 0.62);
  box-shadow: var(--shadow);
}

.governance-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.governance-top span {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.88rem;
}

.governance-top span.governance-trigger {
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.governance-top span.governance-trigger:hover,
.governance-top span.governance-trigger:focus-visible,
.governance-top span.governance-trigger.is-active {
  color: var(--text);
  border-color: rgba(201, 161, 72, 0.24);
  background: rgba(201, 161, 72, 0.1);
  transform: translateY(-1px);
}

.governance-top span.governance-trigger:focus-visible,
.governance-column.governance-trigger:focus-visible {
  outline: 2px solid rgba(201, 161, 72, 0.38);
  outline-offset: 2px;
}

.governance-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.governance-column {
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.governance-column.governance-trigger {
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.governance-column.governance-trigger:hover,
.governance-column.governance-trigger:focus-visible,
.governance-column.governance-trigger.is-active {
  border-color: rgba(201, 161, 72, 0.24);
  background:
    linear-gradient(180deg, rgba(201, 161, 72, 0.08), rgba(255, 255, 255, 0.02) 40%),
    rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.governance-column.governance-trigger .governance-list {
  pointer-events: none;
}

.governance-column-primary {
  border-color: rgba(217, 179, 106, 0.24);
  background:
    linear-gradient(180deg, rgba(217, 179, 106, 0.08), rgba(255, 255, 255, 0.02) 40%),
    rgba(255, 255, 255, 0.03);
}

.governance-column h3 {
  margin: 0 0 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.governance-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.governance-list li {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.governance-list li.is-interactive {
  padding: 0;
  border: 0;
  background: transparent;
}

.governance-role-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.35;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.governance-role-button:hover,
.governance-role-button:focus-visible,
.governance-role-button.is-active {
  color: var(--text);
  border-color: rgba(201, 161, 72, 0.24);
  background: rgba(201, 161, 72, 0.1);
  transform: translateY(-1px);
}

.governance-role-button:focus-visible {
  outline: 2px solid rgba(201, 161, 72, 0.38);
  outline-offset: 2px;
}

.governance-list li::before {
  content: none;
}

.governance-people-panel {
  margin-top: 22px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(201, 161, 72, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(201, 161, 72, 0.08), rgba(10, 15, 25, 0.92) 32%),
    rgba(10, 15, 25, 0.9);
  box-shadow: var(--shadow);
}

.governance-people-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.governance-people-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.governance-people-head h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.governance-people-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.governance-people-selected strong {
  color: var(--text);
}

.governance-people-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.governance-people-close:hover,
.governance-people-close:focus-visible {
  border-color: rgba(201, 161, 72, 0.24);
  background: rgba(201, 161, 72, 0.12);
  transform: translateY(-1px);
}

.governance-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.governance-person-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.governance-person-name {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.governance-person-role {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.governance-person-bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.criteria-card {
  min-height: 100%;
  padding-top: 28px;
}

.criteria-card.caution {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(12, 18, 31, 0.9)),
    rgba(12, 18, 31, 0.84);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(11, 17, 29, 0.8);
  box-shadow: var(--shadow);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 179, 106, 0.22), rgba(255, 255, 255, 0.08));
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.timeline-step p {
  margin: 0;
  font-size: 0.98rem;
}

.section-global {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    linear-gradient(90deg, rgba(5, 8, 15, 0.9) 0%, rgba(5, 8, 15, 0.82) 40%, rgba(5, 8, 15, 0.88) 100%),
    url("../assets/images/fundo.png") center center / cover no-repeat;
}

.authority-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    rgba(7, 11, 20, 0.72);
}

.authority-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(217, 179, 106, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 22%);
  pointer-events: none;
}

.authority-shell {
  position: relative;
}

.authority-heading {
  margin-right: auto;
  margin-left: auto;
}

.country-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.global-presence {
  margin-top: 28px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.global-presence-label {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.presence-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(0, 87, 184, 0.08), rgba(1, 16, 31, 0.02)),
    rgba(0, 44, 86, 0.66);
}

.presence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(217, 179, 106, 0.08), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 22%);
  pointer-events: none;
}

.presence-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.presence-copy .section-intro {
  max-width: 56ch;
}

.presence-map {
  position: relative;
}

.map-surface {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 68% 26%, rgba(217, 179, 106, 0.14), transparent 20%),
    radial-gradient(circle at 74% 74%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(12, 18, 31, 0.96), rgba(9, 14, 24, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-surface::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 21% 33%, rgba(255, 255, 255, 0.08) 0 5%, transparent 5.5%),
    radial-gradient(circle at 24% 42%, rgba(255, 255, 255, 0.06) 0 9%, transparent 9.5%),
    radial-gradient(circle at 32% 63%, rgba(255, 255, 255, 0.06) 0 8%, transparent 8.5%),
    radial-gradient(circle at 54% 34%, rgba(255, 255, 255, 0.06) 0 5%, transparent 5.5%),
    radial-gradient(circle at 58% 36%, rgba(255, 255, 255, 0.05) 0 5%, transparent 5.5%),
    radial-gradient(circle at 62% 37%, rgba(255, 255, 255, 0.05) 0 5%, transparent 5.5%),
    radial-gradient(circle at 68% 74%, rgba(255, 255, 255, 0.06) 0 8%, transparent 8.5%);
  opacity: 0.42;
}

.map-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  background-size: 160px 100%, 100% 140px;
  opacity: 0.24;
}

.map-dot {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.86);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.map-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f5d19a);
  box-shadow: 0 0 0 6px rgba(217, 179, 106, 0.08);
}

.map-dot-canada {
  top: 12.5%;
  left: 12.9%;
}

.map-dot-eua {
  top: 22.7%;
  left: 10.6%;
}

.map-dot-mexico {
  top: 35.2%;
  left: 10.5%;
}

.map-dot-brasil {
  top: 60.8%;
  left: 24.3%;
}

.map-dot-portugal {
  top: 20.8%;
  left: 47.6%;
}

.map-dot-espanha {
  top: 22.1%;
  left: 49.4%;
}

.map-dot-franca {
  top: 19.8%;
  left: 51.8%;
}

.map-dot-alemanha {
  top: 17.6%;
  left: 55.1%;
}

.map-dot-italia {
  top: 22.5%;
  left: 57.2%;
}

.map-dot-africa {
  top: 76.6%;
  left: 58.1%;
}

.country-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.brand-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #f5f7fb;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.brand-cloud span:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 179, 106, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.logo-badge.audi,
.logo-badge.volvo,
.logo-badge.hyundai {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: 0.28em;
}

.logo-badge.porsche,
.logo-badge.ferrari,
.logo-badge.maserati,
.logo-badge.peugeot {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.14em;
}

.logo-badge.bmw,
.logo-badge.lexus,
.logo-badge.tesla,
.logo-badge.kia,
.logo-badge.ram {
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: 0.22em;
}

.logo-badge.mercedes,
.logo-badge.land-rover,
.logo-badge.rolls-royce,
.logo-badge.aston-martin,
.logo-badge.volkswagen {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.logo-badge.lamborghini,
.logo-badge.mclaren,
.logo-badge.jaguar,
.logo-badge.bentley {
  font-style: italic;
  letter-spacing: 0.1em;
}

.logo-badge.toyota,
.logo-badge.honda,
.logo-badge.nissan,
.logo-badge.subaru,
.logo-badge.mitsubishi,
.logo-badge.chevrolet,
.logo-badge.ford,
.logo-badge.jeep,
.logo-badge.dodge {
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.12em;
}

.authority-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.authority-point {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(10, 15, 25, 0.74);
  box-shadow: var(--shadow);
}

.authority-point strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.96rem;
}

.authority-point span {
  display: block;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.section-global::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(217, 179, 106, 0.14), transparent 20%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.global-grid {
  position: relative;
  align-items: center;
}

.global-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(10, 15, 25, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.global-panel div {
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.global-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.global-panel span {
  display: block;
  font-size: 0.96rem;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    transparent;
}

.careers-section {
  padding-top: 24px;
}

.careers-shell {
  display: grid;
  gap: 22px;
}

.careers-heading {
  margin-bottom: 0;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.careers-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(10, 15, 25, 0.74);
  box-shadow: var(--shadow);
}

.careers-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.careers-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.careers-card-cta {
  border-color: rgba(217, 179, 106, 0.22);
  background:
    linear-gradient(180deg, rgba(217, 179, 106, 0.08), rgba(10, 15, 25, 0.92) 38%),
    rgba(10, 15, 25, 0.84);
}

.careers-card-cta .btn {
  margin-top: 18px;
}

.support-section {
  padding-top: 24px;
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 26px;
  align-items: start;
}

.support-heading {
  margin-bottom: 0;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 15, 25, 0.74);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-item:hover,
.support-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217, 179, 106, 0.3);
  background: rgba(13, 19, 31, 0.92);
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.support-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.support-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.support-arrow {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-section {
  padding-top: 24px;
}

.contact-shell {
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(217, 179, 106, 0.16), rgba(8, 12, 20, 0.94) 68%),
    rgba(8, 12, 20, 0.9);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(7, 11, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card .btn + .btn {
  margin-top: 12px;
}

.contact-note {
  margin: 18px 0 0;
  font-size: 0.96rem;
}

.site-footer {
  padding: 34px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    rgba(5, 8, 14, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.utility-menu {
  position: fixed;
  top: 56%;
  right: 24px;
  z-index: 60;
  transform: translateY(-50%);
  isolation: isolate;
}

.utility-menu summary {
  list-style: none;
}

.utility-menu summary::-webkit-details-marker {
  display: none;
}

.utility-toggle {
  position: absolute;
  top: 50%;
  right: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 78px;
  margin-top: -39px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px 0 0 18px;
  background: rgba(8, 12, 20, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 2;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.utility-toggle-text {
  display: none;
}

.utility-toggle:hover,
.utility-toggle:focus-visible {
  background: rgba(11, 17, 29, 0.98);
  border-color: rgba(217, 179, 106, 0.22);
  transform: translateX(-2px);
}

.utility-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0;
  line-height: 0;
  transform: translateX(1px);
  transition: transform 220ms ease;
}

.utility-toggle-icon::before {
  content: "›";
  font-size: 1.9rem;
  line-height: 1;
}

.utility-panel {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  width: min(332px, calc(100vw - 64px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(22px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.utility-menu[open] .utility-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0) scale(1);
}

.utility-menu[open] .utility-toggle-icon {
  transform: rotate(180deg) translateX(1px);
}

.utility-panel-inner {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(7, 11, 20, 0.96);
  box-shadow: var(--shadow);
}

.utility-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 12px;
  border-radius: 14px;
  transition: background 180ms ease;
}

.utility-item:hover,
.utility-item:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-icon-green {
  border-color: rgba(72, 202, 122, 0.42);
  background: rgba(52, 168, 83, 0.18);
  color: #7ef0a0;
}

.utility-copy strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.utility-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(113, 231, 151, 0.28);
  background: linear-gradient(145deg, #2fcb61 0%, #1eab4b 55%, #16863b 100%);
  color: #f7fffa;
  box-shadow:
    0 12px 28px rgba(12, 18, 28, 0.34),
    0 0 0 8px rgba(37, 184, 84, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(12, 18, 28, 0.38),
    0 0 0 10px rgba(37, 184, 84, 0.1);
  filter: saturate(1.03);
}

.whatsapp-float span {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  padding: 34px 0 28px;
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-office {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-kicker,
.footer-title {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand h2 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.4rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.footer-note,
.footer-office p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.footer-links a,
.footer-contact a {
  color: var(--text);
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-office strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .definition-grid,
  .proof-split,
  .presence-grid,
  .support-shell,
  .contact-shell,
  .careers-grid,
  .global-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .governance-assurance-grid,
  .brand-cloud,
  .before-after-grid,
  .proof-real-gallery,
  .pdr-compare,
  .authority-points,
  .team-grid,
  .governance-columns,
  .feature-grid,
  .audience-grid,
  .faq-grid,
  .criteria-grid,
  .careers-grid,
  .footer-shell,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .header-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }

  .trust-shell {
    border-radius: 28px;
  }

  .section,
  .hero {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .impact-section {
    padding-top: 56px;
  }

  .contact-shell {
    padding: 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .governance-purpose,
  .governance-values,
  .governance-flow {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 72px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .authority-points,
  .hero-actions,
  .team-grid,
  .governance-columns,
  .feature-grid,
  .audience-grid,
  .faq-grid,
  .criteria-grid,
  .governance-assurance-grid,
  .timeline,
  .before-after-grid,
  .proof-real-gallery,
  .pdr-compare {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    gap: 14px;
  }

  .comparison-card {
    padding: 14px;
    border-radius: 20px;
  }

  .comparison-media,
  .comparison-media img {
    border-radius: 18px;
  }

  .comparison-copy {
    padding: 14px 4px 2px;
  }

  .comparison-copy strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .comparison-copy p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .utility-menu {
    right: 12px;
  }

  .utility-toggle {
    width: 40px;
    height: 66px;
    margin-top: -33px;
  }

  .utility-panel {
    width: min(300px, calc(100vw - 32px));
  }

  .hero-panel,
  .contact-card,
  .highlight-box {
    padding: 24px;
  }

  .btn {
    width: 100%;
  }

  .support-item {
    grid-template-columns: auto 1fr;
  }

  .support-arrow {
    display: none;
  }

  .trust-shell p {
    width: 100%;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-surface {
    min-height: 400px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
