:root {
  --navy: #0e1726;
  --navy-2: #111f33;
  --navy-3: #192a41;
  --paper: #f6f1e8;
  --paper-2: #fbf8f2;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --muted-dark: #c9d1df;
  --gold: #bf9652;
  --gold-2: #8c6a35;
  --line: rgba(23, 32, 51, .13);
  --line-dark: rgba(255, 255, 255, .15);
  --shadow: 0 22px 70px rgba(14, 23, 38, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 999;
  background: var(--gold);
  color: #100d08;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.topline {
  background: #090f19;
  color: var(--muted-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.topline .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topline a {
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.topline a:hover { border-bottom-color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 23, 38, .94);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: fit-content;
}

.brand-logo-symbol {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.34));
}

.brand-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--muted-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  border-radius: 12px;
  padding: 9px 11px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.main-nav a { color: var(--muted-dark); }

.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  min-height: 46px;
  color: inherit;
  background: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #12100b;
  box-shadow: 0 14px 36px rgba(191,150,82,.25);
}

.btn-primary:hover { background: #cda661; }

.btn-secondary {
  border-color: rgba(255,255,255,.24);
  color: var(--white);
  background: rgba(255,255,255,.05);
}

.btn-secondary:hover { border-color: rgba(191,150,82,.68); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background:
    radial-gradient(circle at 12% 18%, rgba(191,150,82,.20), transparent 31%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, var(--navy), #090f19 72%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -220px 38%;
  height: 380px;
  background: rgba(191,150,82,.08);
  transform: rotate(-7deg);
  border-radius: 60px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .72fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(39px, 6.2vw, 74px);
  line-height: .98;
  letter-spacing: -.058em;
}

.hero-lead {
  max-width: 800px;
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 840px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-points span {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 12px 13px;
  color: var(--muted-dark);
  background: rgba(255,255,255,.045);
  font-size: 13px;
}

.authority-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255,255,255,.065);
  box-shadow: var(--shadow);
}

.authority-card::before {
  content: "";
  position: absolute;
  inset: 18px -24px -18px 38px;
  border-radius: 34px;
  background: rgba(191,150,82,.10);
  transform: rotate(-3deg);
  z-index: -1;
}

.profile-photo-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #0a111c;
}

.profile-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.profile-caption {
  padding: 18px 18px 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.profile-caption strong {
  display: block;
  color: var(--white);
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}

.profile-caption span {
  display: block;
  color: var(--muted-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.authority-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.authority-item {
  padding-top: 13px;
  border-top: 1px solid var(--line-dark);
}

.authority-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 3px;
  font-size: 17px;
}

.authority-item span {
  display: block;
  color: var(--muted-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

section { padding: 88px 0; }

.section-head {
  max-width: 840px;
  margin-bottom: 36px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--gold-2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.dark .section-kicker { color: var(--gold); }

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.047em;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.dark {
  background: var(--navy);
  color: var(--white);
}

.dark .section-head p,
.dark p.muted { color: var(--muted-dark); }

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

.priority-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 318px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 46px rgba(23,32,51,.06);
}

.priority-card.is-main {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(191,150,82,.25), transparent 32%),
    linear-gradient(145deg, var(--navy-2), var(--navy));
  border-color: rgba(255,255,255,.13);
}

.priority-card h3 {
  margin-bottom: 11px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.priority-card p {
  color: var(--muted);
  font-size: 15px;
}

.priority-card.is-main p { color: var(--muted-dark); }

.priority-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  font-size: 14px;
}

.priority-card li + li { margin-top: 7px; }

.priority-card a {
  margin-top: 22px;
  color: var(--gold-2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.priority-card.is-main a { color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 50px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: 0 12px 46px rgba(23,32,51,.06);
}

.panel h3 {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.panel p, .panel li { color: var(--muted); }

.panel ul {
  margin-bottom: 0;
  padding-left: 18px;
}

.about-logo {
  display: block;
  width: min(330px, 100%);
  margin: 0 auto 28px;
  border-radius: 16px;
  background: #050505;
  box-shadow: 0 12px 34px rgba(23,32,51,.12);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(191,150,82,.45);
  border-radius: 999px;
  background: rgba(191,150,82,.14);
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
}

.method-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.16;
}

.method-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

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

.document-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.document-card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.document-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.document-card li + li { margin-top: 6px; }

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

.content-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.content-card h3 {
  font-size: 22px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.content-card p {
  color: var(--muted-dark);
  font-size: 15px;
}

.content-card a {
  margin-top: 18px;
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

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

.faq-category {
  margin: 28px 0 14px;
  color: var(--gold-2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 19px 21px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 21px 20px;
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  grid-template-columns: .90fr 1.10fr;
  gap: 28px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 12px 46px rgba(23,32,51,.06);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
}

.contact-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-list span,
.contact-list a { color: var(--muted); }

.intake-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(191,150,82,.95);
  box-shadow: 0 0 0 4px rgba(191,150,82,.13);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.map-frame {
  width: 100%;
  height: 310px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(.15);
}

.notice {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.page-hero {
  padding: 70px 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(191,150,82,.20), transparent 31%),
    linear-gradient(135deg, var(--navy), #090f19 72%);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  max-width: 800px;
  color: var(--muted-dark);
  font-size: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.breadcrumb a { color: var(--gold); }

.text-section { padding: 74px 0; }

.text-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 38px;
  align-items: start;
}

.prose {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  box-shadow: 0 12px 46px rgba(23,32,51,.06);
}

.prose h2 { font-size: 34px; }

.prose h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.prose p, .prose li { color: var(--muted); }

.prose ul { padding-left: 20px; }

.side-cta {
  position: sticky;
  top: 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 46px rgba(23,32,51,.06);
}

.side-cta h2 { font-size: 28px; }

.side-cta p { color: var(--muted); }

.side-photo {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.site-footer {
  padding: 42px 0;
  background: #090f19;
  color: var(--muted-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .90fr;
  gap: 26px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer a {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted-dark);
  border-bottom: 1px solid transparent;
}

.site-footer a:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

@media (max-width: 1120px) {
  .main-nav ul { gap: 13px; font-size: 13px; }
}

@media (max-width: 1040px) {
  .hero-grid, .split, .contact-wrap, .text-grid { grid-template-columns: 1fr; }

  .side-cta { position: static; }

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

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

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

  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    background: rgba(14,23,38,.99);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform .2s ease;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav ul {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
    padding: 18px 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
  }

  .menu-toggle { display: inline-flex; }
}

@media (max-width: 780px) {
  .profile-photo { height: 300px; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 28px)); }

  .topline .container {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 8px 0;
    gap: 4px;
  }

  .hero { padding: 58px 0 42px; }

  section { padding: 62px 0; }

  .priority-grid, .method-grid, .documents-grid, .content-grid, .footer-grid, .form-grid {
    grid-template-columns: 1fr;
  }

  .priority-card.is-main { grid-column: span 1; }

  .hero-actions { flex-direction: column; }

  .btn { width: 100%; }

  h1 { font-size: clamp(38px, 12vw, 56px); }

  .brand-logo-symbol { width: 48px; height: 48px; }

  .brand-title { font-size: 16px; }

  .brand-subtitle { font-size: 10px; }

  .authority-card, .panel, .contact-card, .prose, .side-cta { padding: 22px; }
  .profile-photo { height: 280px; }
}


.hero-mote { max-width: 760px; margin: 0 0 30px; color: var(--gold); font-size: 18px; font-style: italic; }
.axis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.axis-card { min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 46px rgba(23,32,51,.06); display: flex; flex-direction: column; justify-content: space-between; }
.axis-card.featured { color: var(--text-inverse, #f6f1e8); background: radial-gradient(circle at 12% 18%, rgba(191,150,82,.25), transparent 32%), linear-gradient(145deg, var(--navy-2), var(--navy)); border-color: rgba(255,255,255,.13); }
.axis-card h3 { margin-bottom: 12px; font-size: 28px; line-height: 1.08; letter-spacing: -.035em; }
.axis-card p { color: var(--muted); font-size: 15px; }
.axis-card.featured p { color: var(--muted-dark); }
.axis-card .for-who { margin-bottom: 16px; font-weight: 700; color: var(--ink); }
.axis-card.featured .for-who { color: var(--white); }
.axis-card ul { margin: 18px 0 0; padding-left: 18px; font-size: 14px; }
.axis-card li + li { margin-top: 7px; }
.axis-card a { margin-top: 22px; color: var(--gold-2); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 900; }
.axis-card.featured a { color: var(--gold); }
.secondary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.secondary-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); }
.secondary-card h3 { font-size: 22px; line-height: 1.15; margin-bottom: 8px; }
.secondary-card p { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.secondary-card a { color: var(--gold-2); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 900; }
.risk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.risk-card { padding: 24px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.risk-card h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.16; }
.risk-card p { margin-bottom: 0; color: var(--muted-dark); font-size: 15px; }
.guide-card { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,.045); display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; }
.guide-card h3 { font-size: 22px; line-height: 1.16; margin-bottom: 10px; }
.guide-card p { color: var(--muted-dark); font-size: 15px; }
.guide-card a { color: var(--gold); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 900; }
.form-intro { margin: 0 0 4px; color: var(--muted); font-size: 14px; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
@media (max-width:1040px){ .axis-grid, .secondary-grid { grid-template-columns:1fr; } .risk-grid { grid-template-columns:repeat(2, 1fr); } }
@media (max-width:720px){ .risk-grid { grid-template-columns:1fr; } }


.side-brand {
  display: block;
  width: min(280px, 100%);
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #050505;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(23,32,51,.08);
}



/* =========================
   V8 OVERRIDES
   ========================= */

.about-logo {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  background: #050505;
}

.about-logo--symbol {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

#sobre .section-head {
  max-width: 560px;
}

#sobre .panel {
  display: block;
}

.read-more,
.guide-card a,
.secondary-card a,
.axis-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(191,150,82,.35);
  background: rgba(191,150,82,.16);
  color: #f0c97f !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  width: fit-content;
}

.read-more:hover,
.guide-card a:hover,
.secondary-card a:hover,
.axis-card a:hover {
  background: rgba(191,150,82,.26);
  transform: translateY(-1px);
}

.guide-card {
  min-height: 290px;
}

.guide-card h3 {
  margin-bottom: 12px;
}

.guide-card p {
  margin-bottom: 18px;
}

#artigos-destaque .guide-card,
#conteudo .guide-card {
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}

.side-brand {
  width: min(240px, 100%);
  object-fit: contain;
}

details summary {
  line-height: 1.35;
}

.prose p {
  line-height: 1.72;
}

.prose h2 {
  margin-top: 8px;
  margin-bottom: 14px;
}

.prose h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

/* Melhorias fortes para mobile */
@media (max-width: 860px) {
  .topline {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .navbar {
    min-height: 72px;
    gap: 14px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 76px);
  }

  .brand-title {
    font-size: 15px;
    line-height: 1.05;
  }

  .brand-subtitle {
    font-size: 10px;
    letter-spacing: .08em;
  }

  .main-nav {
    inset: 72px 0 auto 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .main-nav ul {
    width: calc(100% - 28px);
    padding: 18px 0 20px;
    gap: 8px;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav li a {
    display: block;
    width: 100%;
    padding: 10px 6px;
  }

  .main-nav li .btn {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    padding: 46px 0 34px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: clamp(34px, 10.4vw, 48px);
    letter-spacing: -.045em;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 12px;
  }

  .hero-lead,
  .section-head p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-mote {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  section,
  .text-section {
    padding: 54px 0;
  }

  .authority-card,
  .panel,
  .contact-card,
  .prose,
  .side-cta {
    padding: 20px;
    border-radius: 18px;
  }

  .profile-photo {
    height: 250px;
  }

  .axis-card,
  .secondary-card,
  .guide-card,
  .document-card,
  .risk-card {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .hero-points span {
    font-size: 13px;
    padding: 11px 12px;
  }

  .split,
  .contact-wrap,
  .text-grid {
    gap: 22px;
  }

  .breadcrumb {
    gap: 6px;
    font-size: 12px;
  }

  .about-logo,
  .about-logo--symbol,
  .side-brand {
    width: min(180px, 100%);
    margin-bottom: 16px;
  }

  .map-frame {
    height: 250px;
  }

  summary {
    font-size: 16px;
    padding: 16px 17px;
  }

  details p {
    padding: 0 17px 17px;
    font-size: 15px;
  }

  .site-footer {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .brand-logo-symbol {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .menu-toggle {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .page-hero {
    padding: 46px 0 34px;
  }

  .guide-card h3,
  .axis-card h3,
  .secondary-card h3,
  .document-card h3 {
    font-size: 20px;
  }

  .panel h3 {
    font-size: 24px;
  }

  .prose {
    padding: 18px;
  }

  .prose p,
  .prose li {
    font-size: 15px;
  }

  label {
    font-size: 12px;
  }

  input, select, textarea {
    padding: 12px 13px;
  }
}



/* =========================
   V9 OVERRIDES
   ========================= */

/* Volta a logo horizontal da seção Sobre, sem distorção */
.about-logo,
.about-logo--symbol {
  display: block;
  width: min(360px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 28px;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

/* Card da seção Sobre mais equilibrado */
#sobre .panel {
  padding-top: 26px;
}

/* Em telas menores, segura um pouco o tamanho da logo */
@media (max-width: 860px) {
  .about-logo,
  .about-logo--symbol {
    width: min(300px, 100%);
    margin-bottom: 20px;
  }
}

@media (max-width: 520px) {
  .about-logo,
  .about-logo--symbol {
    width: min(260px, 100%);
    margin-bottom: 18px;
  }
}



/* =========================
   V10 OVERRIDES
   ========================= */

/* Página de artigos com cards mais claros e CTA realmente visível */
.guides-grid {
  align-items: stretch;
}

.guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  border: 1px solid rgba(23,32,51,.10);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23,32,51,.06);
}

.guide-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.read-more,
.guide-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 132px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #12100b !important;
  box-shadow: 0 12px 26px rgba(191,150,82,.22);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.read-more:hover,
.guide-card a:hover {
  background: #cda661;
  border-color: #cda661;
  color: #12100b !important;
  transform: translateY(-1px);
}

/* Título e abertura da página de artigos mais organizados */
.page-hero + .text-section .guides-grid {
  margin-top: 6px;
}

/* Mobile ainda mais amarrado para home e páginas internas */
@media (max-width: 860px) {
  .hero-grid,
  .axis-grid,
  .secondary-grid,
  .risk-grid,
  .documents-grid,
  .guides-grid,
  .contact-wrap,
  .split,
  .text-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .axis-card,
  .secondary-card,
  .document-card,
  .risk-card {
    min-height: auto;
  }

  .hero-actions .btn,
  .contact-card .btn,
  .side-cta .btn {
    width: 100%;
  }

  .read-more,
  .guide-card a {
    width: 100%;
    min-width: 0;
  }
}



/* =========================
   V11 OVERRIDES
   ========================= */

/* Seção "Sobre": mantém a logo certa, mas menos dominante e com proporção natural */
.about-logo,
.about-logo--symbol {
  display: block;
  width: min(320px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 26px;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

#sobre .panel {
  padding-top: 22px;
}

@media (max-width: 860px) {
  .about-logo,
  .about-logo--symbol {
    width: min(280px, 100%);
    margin-bottom: 20px;
  }
}

@media (max-width: 520px) {
  .about-logo,
  .about-logo--symbol {
    width: min(240px, 100%);
    margin-bottom: 18px;
  }
}

/* Rodapé: versão discreta */
.site-version {
  opacity: .82;
  font-size: 12px;
  letter-spacing: .02em;
}



/* =========================
   V12 OVERRIDES
   ========================= */

/* Seção Sobre: usa a mesma lógica visual da página Documentos */
.about-brand {
  display: block;
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #050505;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(23,32,51,.08);
}

/* Neutraliza regras antigas da about-logo que causavam distorção */
#sobre .about-logo,
#sobre .about-logo--symbol {
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

/* Evita card visual exagerado na seção Sobre */
#sobre .panel {
  padding-top: 28px;
}

/* Mobile V12: reforço final */
@media (max-width: 860px) {
  .about-brand {
    width: min(240px, 100%);
    margin-bottom: 16px;
  }

  #sobre .panel {
    padding-top: 22px;
  }

  .page-hero h1,
  .hero h1 {
    overflow-wrap: anywhere;
  }

  .main-nav ul {
    padding-bottom: 28px;
  }

  .guides-grid,
  .documents-grid,
  .axis-grid,
  .secondary-grid,
  .risk-grid {
    gap: 14px;
  }

  .guide-card,
  .document-card,
  .axis-card,
  .secondary-card,
  .risk-card {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .about-brand {
    width: min(220px, 100%);
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .section-head p,
  .hero-lead,
  .page-hero p {
    font-size: 15.5px;
  }
}



/* =========================
   V13 OVERRIDES
   ========================= */

/* Correção final: seção Sobre usa EXATAMENTE a mesma lógica visual da página Documentos */
#sobre .side-brand {
  display: block;
  width: min(280px, 100%);
  height: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #050505;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(23,32,51,.08);
}

/* Neutraliza qualquer regra anterior específica de about-brand */
#sobre .about-brand,
#sobre .about-logo,
#sobre .about-logo--symbol {
  width: auto;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}



/* =========================
   V14 OVERRIDES
   ========================= */

/* Home: seção Sobre clonada da página Documentos */
#sobre .about-cta {
  position: static;
  top: auto;
}

#sobre .about-cta ul {
  margin-bottom: 0;
  padding-left: 18px;
}

#sobre .about-cta li {
  color: var(--muted);
}

#sobre .about-cta h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

#sobre .about-cta p {
  color: var(--muted);
}

@media (max-width: 860px) {
  #sobre .about-cta {
    padding: 22px;
  }
}



/* =========================
   V15 OVERRIDES
   ========================= */

/* Home - seção Sobre: usa apenas o símbolo da marca, sem imagem horizontal problemática */
.about-mark {
  display: block;
  width: min(180px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 18px;
}

#sobre .about-cta {
  position: static;
}

@media (max-width: 860px) {
  .about-mark {
    width: min(160px, 100%);
  }
}

@media (max-width: 520px) {
  .about-mark {
    width: min(140px, 100%);
  }
}



/* =========================
   V16 OVERRIDES
   ========================= */

/* Seção Sobre: título centralizado abaixo do símbolo */
#sobre .about-title {
  text-align: center;
  font-size: clamp(25px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 4px auto 18px;
  max-width: 100%;
}

@media (max-width: 520px) {
  #sobre .about-title {
    font-size: 23px;
  }
}



/* =========================
   V17 OVERRIDES
   ========================= */

/* Foto principal nova: horizontal, sem esticar e sem cortar de forma agressiva */
.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.profile-photo-wrap {
  background: #0a111c;
}

/* Menu mobile refeito */
body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 15, .58);
  z-index: 55;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  min-height: 42px;
}

.menu-toggle span:first-child {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1040px) {
  .site-header {
    z-index: 120;
  }

  .navbar {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 130;
    background: rgba(255,255,255,.06);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 0 auto;
    width: min(86vw, 380px);
    height: calc(100dvh - 72px);
    background: #0e1726;
    border-left: 1px solid rgba(255,255,255,.14);
    border-bottom: none;
    box-shadow: -18px 0 50px rgba(0,0,0,.32);
    transform: translateX(105%);
    transition: transform .22s ease;
    z-index: 125;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    width: 100%;
    padding: 18px 18px 28px;
    margin: 0;
    display: grid;
    gap: 8px;
    align-items: stretch;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--text-inverse);
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: rgba(191,150,82,.16);
    border-color: rgba(191,150,82,.42);
  }

  .main-nav .btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    color: #12100b;
    background: var(--gold);
  }

  .brand {
    min-width: 0;
  }

  .brand-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .hero-photo {
    aspect-ratio: 4 / 3;
    object-position: 64% center;
  }

  .profile-caption strong {
    font-size: 17px;
  }

  .authority-list {
    gap: 10px;
  }

  .authority-item {
    padding-top: 10px;
  }

  .brand-title {
    max-width: 190px;
  }
}

@media (max-width: 420px) {
  .main-nav {
    width: 92vw;
  }

  .brand-title {
    max-width: 160px;
  }

  .menu-toggle span:last-child {
    display: none;
  }

  .menu-toggle {
    min-width: 44px;
    padding-inline: 10px;
  }
}

/* Versão discreta */
.site-version {
  opacity: .82;
  font-size: 12px;
  letter-spacing: .02em;
}


/* =========================
   V19 - COMPACTAÇÃO DE LAYOUT
   ========================= */

section { padding: 68px 0; }
.text-section { padding: 60px 0; }
.page-hero { padding: 58px 0 44px; }
.hero { padding: 68px 0 46px; }
.section-head { margin-bottom: 26px; }
.section-head p { max-width: 760px; }
.hero-actions { margin-bottom: 22px; }
.hero-points { gap: 8px; }

.axis-card { min-height: 310px; padding: 24px; }
.secondary-card, .document-card, .risk-card, .guide-card { padding: 21px; }
.guide-card { min-height: 228px; justify-content: flex-start; }
.guide-card h3 { margin-bottom: 8px; font-size: 21px; }
.guide-card p { margin-bottom: 14px; line-height: 1.55; }

.article-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(191,150,82,.14);
  color: var(--gold-2);
  border: 1px solid rgba(191,150,82,.28);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#artigos-destaque .guides-grid, #guias .guides-grid, .page-hero + .text-section .guides-grid { gap: 14px; }
#artigos-destaque .section-head, #guias .section-head { margin-bottom: 22px; }
#documentos .documents-grid { gap: 14px; }
#documentos .section-head { margin-bottom: 22px; }
#documentos .btn { margin-top: 0; }
.risk-grid { gap: 14px; }
.risk-card p { line-height: 1.55; }

#faq .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px 14px;
}
#faq details { height: fit-content; }
#faq summary { font-size: 16px; padding: 15px 17px; }
#faq details p { padding: 0 17px 16px; font-size: 15px; }

#sobre .split { align-items: center; }
#sobre .section-head { margin-bottom: 0; }
#sobre .about-cta { padding: 24px; }
#contato .section-head { margin-bottom: 24px; }
.contact-wrap { gap: 22px; }
.site-version { opacity: .82; font-size: 12px; letter-spacing: .02em; }

@media (max-width: 1040px) {
  section { padding: 56px 0; }
  .text-section { padding: 50px 0; }
  .page-hero { padding: 48px 0 36px; }
  .hero { padding: 52px 0 38px; }
  #faq .faq-list { grid-template-columns: 1fr; }
  .axis-card { min-height: auto; }
}

@media (max-width: 720px) {
  section { padding: 46px 0; }
  .text-section { padding: 44px 0; }
  .section-head { margin-bottom: 20px; }
  .hero { padding: 44px 0 32px; }
  .hero-actions { margin-bottom: 18px; }
  .axis-card, .secondary-card, .document-card, .risk-card, .guide-card, .contact-card, .panel, .prose, .side-cta { padding: 18px; }
  .guide-card { min-height: auto; }
  .guide-card h3 { font-size: 20px; }
  .read-more, .guide-card a { margin-top: auto; }
  #sobre .section-head { margin-bottom: 20px; }
}



/* =========================
   V20 - CARDS DE ARTIGOS COMPACTOS
   ========================= */

/* Mata definitivamente os cards brancos gigantes da seção de artigos. */
.compact-articles {
  padding: 48px 0 !important;
}

.compact-articles .compact-head {
  margin-bottom: 18px !important;
}

.compact-articles .compact-head h2 {
  margin-bottom: 8px !important;
}

.compact-articles .compact-head p {
  max-width: 720px !important;
  margin-bottom: 0 !important;
}

.compact-guides {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.compact-guide-card {
  min-height: unset !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 18px !important;
  border-radius: 17px !important;
  background: #ffffff !important;
  border: 1px solid rgba(23,32,51,.10) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.06) !important;
}

.compact-guide-card .article-tag {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 9px !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: rgba(191,150,82,.14) !important;
  color: var(--gold-2) !important;
  border: 1px solid rgba(191,150,82,.28) !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.compact-guide-card h3 {
  display: block !important;
  color: var(--ink) !important;
  font-size: 19px !important;
  line-height: 1.18 !important;
  margin: 0 0 9px !important;
  letter-spacing: -.02em !important;
}

.compact-guide-card p {
  display: block !important;
  color: var(--muted) !important;
  font-size: 14.5px !important;
  line-height: 1.48 !important;
  margin: 0 0 14px !important;
}

.compact-guide-card .read-more,
.compact-guide-card a.read-more {
  margin-top: auto !important;
  width: fit-content !important;
  min-width: 112px !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  color: #12100b !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  box-shadow: none !important;
}

.compact-section-action {
  margin-top: 16px !important;
}

.compact-article-list {
  padding-top: 42px !important;
}

@media (max-width: 980px) {
  .compact-guides {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .compact-articles {
    padding: 40px 0 !important;
  }

  .compact-guides {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .compact-guide-card {
    padding: 16px !important;
  }

  .compact-guide-card h3 {
    font-size: 18.5px !important;
  }

  .compact-guide-card .read-more,
  .compact-guide-card a.read-more {
    width: 100% !important;
    justify-content: center !important;
  }
}

.site-version {
  opacity: .82;
  font-size: 12px;
  letter-spacing: .02em;
}



/* =========================
   V21 - ARTIGOS COM CARDS REAIS
   ========================= */

.articles-section {
  padding: 50px 0 !important;
}

.articles-head {
  margin-bottom: 22px !important;
}

.articles-head h2 {
  margin-bottom: 8px !important;
}

.articles-head p {
  max-width: 720px !important;
  margin-bottom: 0 !important;
}

.articles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.article-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 20px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 1px solid rgba(23,32,51,.12) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.08) !important;
}

.article-card .article-tag {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 10px !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: rgba(191,150,82,.15) !important;
  color: var(--gold-2) !important;
  border: 1px solid rgba(191,150,82,.30) !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.article-card h3 {
  color: var(--ink) !important;
  font-size: 20px !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 10px !important;
}

.article-card p {
  color: var(--muted) !important;
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  margin: 0 0 16px !important;
}

.article-card a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 112px !important;
  margin-top: auto !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  color: #12100b !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.article-card a:hover {
  background: #cda661 !important;
  border-color: #cda661 !important;
  transform: translateY(-1px);
}

.articles-action {
  margin-top: 18px !important;
}

.articles-list-page {
  padding-top: 46px !important;
}

@media (max-width: 980px) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .articles-section {
    padding: 42px 0 !important;
  }

  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .article-card {
    padding: 17px !important;
  }

  .article-card h3 {
    font-size: 19px !important;
  }

  .article-card a {
    width: 100% !important;
  }
}

/* Versão discreta */
.site-version {
  opacity: .82;
  font-size: 12px;
  letter-spacing: .02em;
}
