:root {
  --navy: #10283f;
  --navy-dark: #091a2b;
  --navy-light: #1c3c59;
  --blue: #256f9f;
  --gold: #d4a94d;
  --gold-light: #f0d798;
  --cream: #f7f4ed;
  --white: #ffffff;
  --text: #1d2a35;
  --muted: #66737e;
  --line: #dbe1e5;
  --shadow: 0 24px 60px rgba(7, 25, 42, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e9eef1;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(9, 26, 43, 0.08);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 0 6vw 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 169, 77, 0.18), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(37, 111, 159, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 55%, #173b57);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -95px;
  height: 190px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.03));
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 34px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-top: 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--blue);
}

.hero-copy h1,
.section-heading h2,
.registry-heading h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.025em;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0;
  font-size: clamp(46px, 6vw, 79px);
  line-height: 1.02;
}

.hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.button-secondary {
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.04);
  color: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 20px;
}

.hero-facts strong {
  font-size: 14px;
}

.hero-facts span {
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.cnpj-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}

.card-accent {
  position: absolute;
  top: 0;
  right: 34px;
  width: 74px;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: var(--gold);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71c28d;
  box-shadow: 0 0 0 5px rgba(113,194,141,.13);
}

.company-symbol {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 34px 0 25px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
}

.cnpj-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 3vw, 35px);
  line-height: 1.15;
}

.trade-name {
  margin: 10px 0 28px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.company-data {
  margin: 0;
}

.company-data div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.company-data dt {
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
}

main {
  position: relative;
  z-index: 3;
}

.section {
  padding: 110px 7vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 58px;
}

.section-number {
  padding-top: 9px;
  color: #9aa7b0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.section-heading h2 {
  max-width: 760px;
  margin: 15px 0 0;
  color: var(--navy);
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

.about-text {
  max-width: 720px;
  padding-left: 94px;
}

.about-text p {
  color: var(--muted);
  font-size: 16px;
}

.about-text .lead {
  margin-top: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.mission-card {
  position: relative;
  margin-top: 10px;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.mission-card::before {
  content: "“";
  position: absolute;
  top: -25px;
  right: 24px;
  color: rgba(212,169,77,.2);
  font-family: Georgia, serif;
  font-size: 170px;
  line-height: 1;
}

.mission-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mission-card blockquote {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.5;
}

.services-section {
  background: #f4f7f8;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding-left: 94px;
}

.service-highlight {
  display: flex;
  gap: 28px;
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  color: var(--gold-light);
}

.service-highlight span {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-highlight h3 {
  margin: 12px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.25;
}

.service-highlight strong {
  color: var(--gold-light);
  font-size: 14px;
}

.service-description p {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-list span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-left: 94px;
}

.commitment-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.commitment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37,111,159,.35);
  box-shadow: 0 18px 40px rgba(7,25,42,.08);
}

.commitment-card > span {
  display: inline-flex;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.commitment-card h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 19px;
}

.commitment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.registry-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(37,111,159,.21), transparent 25%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.registry-heading .section-number {
  color: rgba(255,255,255,.38);
}

.registry-heading h2 {
  color: var(--white);
}

.registry-card {
  margin-left: 94px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.075);
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.registry-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.registry-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.registry-badge {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  letter-spacing: .06em;
}

.registry-title small {
  color: rgba(255,255,255,.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.registry-title h3 {
  max-width: 720px;
  margin: 5px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.25;
}

.registry-status {
  padding: 10px 14px;
  border: 1px solid rgba(113,194,141,.28);
  border-radius: 999px;
  background: rgba(113,194,141,.09);
  color: #9ee0b4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.registry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.registry-item {
  padding: 23px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.registry-item-wide {
  grid-column: 1 / -1;
}

.registry-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.43);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.registry-item strong {
  color: rgba(255,255,255,.92);
  font-size: 16px;
}

.registry-note {
  margin: 30px 0 0;
  color: rgba(255,255,255,.47);
  font-size: 12px;
}

footer {
  padding: 70px 7vw 24px;
  background: #071522;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-content > div:first-child > p {
  max-width: 470px;
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255,255,255,.54);
  font-size: 13px;
}

.footer-company strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.35);
  font-size: 11px;
}

@media (max-width: 1080px) {
  .hero-content,
  .about-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 70px;
  }

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

  .cnpj-card-hero {
    max-width: 700px;
  }

  .about-text,
  .service-layout,
  .commitments-grid,
  .registry-card {
    padding-left: 0;
    margin-left: 0;
  }

  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 0 22px 110px;
  }

  .hero::after {
    bottom: -70px;
    height: 120px;
  }

  .topbar {
    min-height: 78px;
  }

  .nav-links {
    display: none;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cnpj-card {
    padding: 28px 22px;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section {
    padding: 82px 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 42px;
  }

  .section-number {
    padding: 0;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .about-text .lead {
    font-size: 21px;
  }

  .mission-card {
    padding: 32px 25px;
  }

  .mission-card blockquote {
    font-size: 22px;
  }

  .service-highlight {
    flex-direction: column;
    padding: 30px 24px;
  }

  .commitments-grid,
  .registry-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .commitment-card {
    min-height: auto;
  }

  .registry-top,
  .registry-title,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .registry-status {
    align-self: flex-start;
  }

  .registry-item-wide {
    grid-column: auto;
  }

  .registry-title h3 {
    font-size: 23px;
  }

  footer {
    padding: 58px 22px 22px;
  }

  .footer-bottom {
    gap: 8px;
  }
}

@media print {
  body {
    background: var(--white);
  }

  .page-shell {
    box-shadow: none;
  }

  .nav-links,
  .hero-actions {
    display: none;
  }

  .hero,
  .registry-section,
  footer {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
