/* Template Advogado — base visual (home) */
:root {
  --gold: #bfa365;
  --gold-hover: #d0b36f;
  --gold-soft: #d9c68e;
  --dark: #101722;
  --dark-2: #0b1018;
  --dark-3: #1a2431;
  --text: #252b33;
  --text-muted: #56606b;
  --cream: #f0eadf;
  --cream-2: #ebe2d3;
  --cream-3: #ddd0bb;
  --white: #ffffff;
  --border: #ded6c9;
  --surface: #f8f5ef;
  --surface-dark: #141c28;
  --line-gold: rgba(191, 163, 101, 0.42);
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --font-ui: Manrope, "Source Sans 3", sans-serif;
  --container: 1140px;
  --header-h: 104px;
  --radius-pill: 50px;
  --shadow-soft: 0 20px 48px rgba(16, 23, 34, 0.14);
  --shadow-card: 0 18px 42px rgba(16, 23, 34, 0.12);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: rgba(35, 40, 46, 0.25);
}

.btn-outline-dark:hover {
  border-color: var(--dark);
}

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 190px;
  height: 86px;
  object-fit: contain;
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-2);
}

.brand-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  color: inherit;
  transition: var(--transition);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: var(--dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-list a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-2);
  transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 240px;
  padding: 0.75rem 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.nav-flyout {
  position: relative;
}

.nav-flyout-trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nav-flyout-trigger::after {
  content: "›";
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.nav-submenu {
  position: absolute;
  top: 0;
  left: calc(100% - 4px);
  min-width: 220px;
  padding: 0.75rem 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: var(--transition);
  z-index: 25;
}

.nav-flyout:hover .nav-submenu,
.nav-flyout:focus-within .nav-submenu,
.nav-flyout.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hero */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 5.5rem 0 5rem;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 600;
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 52rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-lead strong {
  color: var(--white);
  font-weight: 600;
}

/* Sections common */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--dark-2);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-center {
  text-align: center;
}

.section-center .section-lead {
  margin-inline: auto;
}

.section--cream {
  background: var(--cream);
}

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

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.8);
}

.section--muted {
  background: #f7f5f1;
}

/* Intro — texto + painel + 3 cards */
.section-intro {
  background: #f7f6f2;
}

.intro-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.intro-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: var(--dark-2);
  line-height: 1.3;
  margin-bottom: 1.15rem;
}

.intro-copy p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-copy strong {
  color: var(--dark-2);
  font-weight: 700;
}

.intro-panel {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.intro-panel h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.intro-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.intro-list strong {
  color: var(--dark-2);
  font-weight: 700;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.intro-feature {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.intro-feature-icon {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.intro-feature-icon svg {
  width: 28px;
  height: 28px;
}

.intro-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark-2);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.intro-feature p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}

.intro-feature strong {
  color: var(--dark-2);
  font-weight: 700;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  position: relative;
  background: var(--cream-2);
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholders — marcar onde a imagem entra */
.img-placeholder,
.area-card img[src*="placeholder"],
.about-photo img[src*="placeholder"] {
  object-fit: contain;
  background: var(--cream);
}

.about-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.about-quote {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--gold);
  background: rgba(185, 155, 95, 0.08);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark-2);
  line-height: 1.5;
}

.about-answer-grid {
  margin-top: 2rem;
}

.about-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.home-urgent-section {
  padding: clamp(5.5rem, 8vw, 7.5rem) 0;
}

.home-urgent-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(3.5rem, 7vw, 6.5rem);
  align-items: center;
}

.home-urgent-copy .section-title {
  max-width: 17ch;
  font-size: clamp(1.85rem, 3.3vw, 2.55rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.home-urgent-copy .section-lead {
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.75;
}

.home-urgent-copy .btn {
  margin-top: 0.75rem;
}

.home-urgent-panel {
  align-self: center;
  min-height: 260px;
  border-top: 4px solid rgba(191, 163, 101, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 250, 243, 0.92));
  padding: clamp(1.65rem, 3vw, 2.25rem);
  box-shadow: 0 24px 64px rgba(16, 23, 34, 0.12);
}

.home-urgent-panel h3 {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.home-urgent-panel .intro-list {
  display: grid;
  gap: 0;
}

.home-urgent-panel .intro-list li {
  border-top: 1px solid rgba(16, 23, 34, 0.08);
  padding: 0.85rem 0 0.85rem 1.25rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.home-urgent-panel .intro-list li:first-child {
  border-top: 0;
}

.home-about-section {
  padding: clamp(5.5rem, 8vw, 7.5rem) 0;
}

.home-about-layout {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3.5rem, 7vw, 6rem);
}

.home-about-photo {
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(16, 23, 34, 0.16);
}

.home-about-copy {
  border-left: 4px solid rgba(191, 163, 101, 0.7);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.home-about-copy .section-title {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.home-about-copy .section-lead {
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.75;
}

.home-about-copy .eyebrow {
  margin-bottom: 0.65rem;
  color: var(--gold);
}

.home-about-close {
  margin-top: 0.35rem;
  color: var(--dark-2);
  font-weight: 600;
}

.home-about-actions {
  margin-top: 1.5rem;
}

/* Avaliações Google — estilo Trustindex/Franca */
.section-reviews {
  background:
    radial-gradient(circle at 50% 0%, rgba(191, 163, 101, 0.1), transparent 28rem),
    linear-gradient(180deg, #f7f4ed 0%, #f3efe6 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.reviews-head {
  margin-bottom: 2rem;
}

.reviews-pill {
  display: inline-block;
  margin: 0 auto 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(176, 122, 98, 0.55);
  border-radius: 999px;
  color: #b07a62;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-head .section-title {
  max-width: 22ch;
  margin-inline: auto;
  color: #0f2f45;
}

.reviews-head .section-lead {
  max-width: 46rem;
  margin-inline: auto;
}

.reviews-frame {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(16, 23, 34, 0.08);
  border: 1px solid rgba(16, 23, 34, 0.06);
  padding: 1.25rem 0.75rem 1rem;
  overflow: hidden;
}

.reviews-frame-trustindex {
  min-height: 12rem;
  padding: 1.5rem 1rem 1.25rem;
  overflow: visible;
}

.reviews-frame-trustindex .ti-widget {
  max-width: 100%;
}

.reviews-iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: transparent;
}

.reviews-footer-link {
  margin-top: 1.35rem;
  text-align: center;
}

.reviews-footer-link a {
  color: var(--dark-2);
  font-weight: 600;
  text-decoration: none;
}

.reviews-footer-link a:hover {
  color: var(--gold-dark, #9a7b3c);
  text-decoration: underline;
}

/* Embed / carrossel */
.gr-shell {
  position: relative;
  padding: 0.5rem 2.4rem;
}

.gr-viewport {
  overflow: hidden;
}

.gr-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2.6rem 0.25rem 0.75rem;
}

.gr-track::-webkit-scrollbar {
  display: none;
}

.gr-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  background: #fff;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(16, 23, 34, 0.06);
  padding: 1.15rem 1.1rem 1.25rem;
  text-align: center;
}

.gr-avatar-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: -2.6rem auto 0.85rem;
}

.gr-avatar-img,
.gr-avatar-fallback {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(16, 23, 34, 0.12);
}

.gr-avatar-fallback {
  background: linear-gradient(145deg, #d9a5b0, #c27888);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.gr-google-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(16, 23, 34, 0.15);
}

.gr-name {
  margin: 0;
  font-family: var(--font-sans, "Manrope", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #1d2430;
}

.gr-date {
  margin: 0.2rem 0 0.55rem;
  color: #8b93a1;
  font-size: 0.82rem;
}

.gr-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.gr-star {
  display: block;
}

.gr-verified {
  width: 16px;
  height: 16px;
  margin-left: 0.35rem;
  border-radius: 50%;
  background: #1a73e8;
  position: relative;
  flex: 0 0 auto;
}

.gr-verified::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 3px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gr-text {
  margin: 0;
  color: #3a4452;
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 4.5em;
}

.gr-more {
  display: inline-block;
  margin-top: 0.75rem;
  border: 0;
  background: none;
  color: #1a73e8;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

.gr-more:hover {
  text-decoration: underline;
}

.gr-next,
.gr-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(16, 23, 34, 0.12);
  background: #fff;
  color: #6b7280;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 23, 34, 0.08);
  z-index: 2;
}

.gr-next { right: 0.15rem; }
.gr-prev { left: 0.15rem; }

.gr-next:hover,
.gr-prev:hover {
  color: var(--dark-2);
  border-color: rgba(191, 163, 101, 0.45);
}

.gr-empty {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.gr-empty p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .gr-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  .gr-shell {
    padding: 0.35rem 2rem;
  }

  .gr-card {
    flex-basis: 86%;
    max-width: 86%;
  }

  .reviews-iframe {
    min-height: 480px;
  }
}

/* Blocos educativos (Home + reutilizáveis em serviços) */
.section-edu .edu-head {
  margin-bottom: 2rem;
}

.section-edu .edu-head .section-title {
  max-width: 28ch;
  margin-inline: auto;
}

.edu-windows-grid,
.edu-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.edu-window-card,
.edu-method-card,
.edu-mistake {
  background: var(--white);
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 28px rgba(16, 23, 34, 0.05);
}

.edu-window-card h3,
.edu-method-card h3,
.edu-mistake h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--dark-2);
  margin-bottom: 0.55rem;
}

.edu-window-card p,
.edu-method-card p,
.edu-mistake p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.edu-mistakes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.edu-mistake {
  border-left: 3px solid rgba(191, 163, 101, 0.65);
}

.edu-strategy-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.edu-strategy-col {
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  min-height: 100%;
}

.edu-strategy-col h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.edu-strategy-col > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.edu-strategy-col ul {
  display: grid;
  gap: 0.65rem;
}

.edu-strategy-col li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  line-height: 1.55;
  font-size: 0.95rem;
}

.edu-strategy-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.edu-strategy-col--reactive {
  background: #f3efe6;
  border: 1px solid rgba(16, 23, 34, 0.08);
}

.edu-strategy-col--strategic {
  background: linear-gradient(160deg, #121925 0%, #1a2433 100%);
  color: #fff;
  border: 1px solid rgba(191, 163, 101, 0.28);
}

.edu-strategy-col--strategic h3 {
  color: #fff;
}

.edu-strategy-col--strategic > p,
.edu-strategy-col--strategic li {
  color: rgba(255, 255, 255, 0.82);
}

.edu-strategy-col--strategic li::before {
  background: var(--gold);
}

.edu-note {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.edu-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.home-clusters-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 163, 101, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8f6ef 100%);
  padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.home-clusters-section .section-title {
  max-width: 21ch;
  margin-inline: auto;
}

.home-cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.75rem;
}

.home-cluster-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(191, 163, 101, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(16, 23, 34, 0.09);
  padding: clamp(1.65rem, 3vw, 2.35rem);
}

.home-cluster-card--featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%);
  border-top: 4px solid var(--gold);
}

.home-cluster-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-cluster-card h3 {
  font-family: var(--font-serif);
  color: var(--dark-2);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  margin: 0.75rem 0 1rem;
}

.home-cluster-card p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.home-cluster-card .btn {
  margin-top: auto;
}

.home-cluster-links {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  margin: 0.25rem 0 1.25rem;
}

.home-cluster-links a {
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--dark-2);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 0.7rem 0.9rem;
}

/* Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.area-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.area-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
}

.area-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--dark-2);
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.areas-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Signals — grid 2x2 com ícone e borda dourada à esquerda */
.section-signals {
  background: #fafafa;
}

.section-line {
  width: 48px;
  height: 2px;
  margin: 0.35rem auto 1.15rem;
  background: var(--gold);
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.signal-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f9f7f2;
  border: 1px solid #ebe6dc;
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.35rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.signal-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.signal-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
}

.signal-icon svg {
  width: 24px;
  height: 24px;
}

.signal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark-2);
  margin-bottom: 0.4rem;
}

.signal-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Who / where / how */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.info-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--text-muted);
}

/* Steps — cards com ícone dourado e borda superior */
.section-steps {
  background: #faf8f4;
}

.section-dots {
  width: 56px;
  height: 4px;
  margin: 0.35rem auto 2.5rem;
  background-image: radial-gradient(circle, var(--dark-2) 1.4px, transparent 1.5px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  text-align: center;
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.35rem 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark-2);
  margin-bottom: 0.65rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Dossier — card com cabeçalho escuro e linhas */
.section-dossier {
  background: #f7f5f1;
}

.dossier-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.dossier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: #1a1a1a;
  color: var(--white);
  padding: 1.15rem 1.75rem;
}

.dossier-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
}

.dossier-head span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.dossier-body {
  padding: 0 1.75rem;
}

.dossier-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eeeeee;
}

.dossier-row:last-child {
  border-bottom: 0;
}

.dossier-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.2rem;
}

.dossier-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark-2);
  margin-bottom: 0.45rem;
}

.dossier-content p {
  color: #666666;
  font-size: 0.98rem;
  line-height: 1.6;
}

.dossier-content strong {
  color: var(--dark-2);
  font-weight: 600;
}

/* Contact — fundo escuro + card branco */
.section-contact {
  background: #1e2126;
  color: var(--white);
  padding: 5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-layout--light {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
}

.contact-intake {
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 163, 101, 0.09), transparent 26rem),
    var(--white);
}

.contact-intake-card,
.contact-card--page {
  min-height: 100%;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 23, 34, 0.08);
}

.contact-intake-card {
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-intake-copy h2 {
  max-width: 9ch;
  font-family: var(--font-serif);
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--dark-2);
  margin: 0.7rem 0 1.35rem;
}

.contact-intake-copy p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(16, 23, 34, 0.12);
  background: #fff;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-method:hover {
  border-color: rgba(191, 163, 101, 0.45);
  box-shadow: 0 10px 24px rgba(16, 23, 34, 0.06);
}

.contact-method-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
}

.contact-method-icon--phone {
  background: var(--dark);
}

.contact-method-icon--email {
  background: var(--gold);
}

.contact-method-icon--instagram {
  background: var(--dark-3);
  color: var(--gold-soft);
}

.contact-method-text {
  font-size: 0.98rem;
  line-height: 1.35;
  color: #5c6570;
  word-break: break-word;
}

.contact-method-text strong {
  color: #5c6570;
  font-weight: 700;
}

.contact-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section-dots--gold {
  margin: 0 0 1.25rem;
  background-image: radial-gradient(circle, var(--gold) 1.4px, transparent 1.5px);
}

.contact-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.contact-copy strong {
  color: var(--white);
  font-weight: 700;
}

.contact-disclaimer {
  font-size: 0.95rem;
}

.contact-disclaimer span {
  color: var(--gold);
  font-weight: 600;
}

.contact-copy-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.35rem 0 1.5rem;
}

.contact-copy-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.contact-copy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.contact-card {
  background: var(--white);
  color: var(--text);
  padding: 2rem 1.85rem 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-card > h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--dark-2);
  margin-bottom: 0.55rem;
}

.contact-card--page {
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 48px rgba(16, 23, 34, 0.08);
}

.contact-card--page > h3 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0.7rem 0 0.85rem;
}

.contact-card-lead {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

.contact-checks {
  margin-bottom: 1.5rem;
}

.contact-checks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: #555;
  font-size: 0.95rem;
}

.contact-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark-2);
}

.form-group .req {
  color: #cf2e2e;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e5e1d8;
  border-radius: 4px;
  font: inherit;
  color: var(--text);
  background: #f7f5f2;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-card .btn-block + .btn-block {
  margin-top: 0.65rem;
}

.btn-dark {
  background: #1e2126;
  color: var(--white);
}

.btn-dark:hover {
  background: #121417;
}

.form-note {
  margin-top: 0.95rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* FAQ */
.section-faq {
  background: var(--white);
}

.faq {
  max-width: 820px;
}

.faq h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--dark-2);
}

.faq > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--dark-2);
  list-style: none;
}

.accordion-trigger::-webkit-details-marker,
.accordion-trigger::marker {
  display: none;
  content: "";
}

.accordion-trigger::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 400;
}

.accordion-item[open] .accordion-trigger::after {
  content: "−";
}

.accordion-panel {
  padding: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ page — cards estilo Maré */
.section-faq-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 163, 101, 0.08), transparent 26rem),
    var(--surface);
  padding-top: 2.75rem;
}

.faq-page-shell {
  max-width: 760px;
}

.faq-page-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.faq-page-shell > h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: var(--dark-2);
  margin: 0 0 1.25rem;
}

.faq-page-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-page-accordion .accordion-item {
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 23, 34, 0.05);
  overflow: hidden;
}

.faq-page-accordion .accordion-trigger {
  padding: 1.05rem 1.2rem;
  font-size: 1rem;
  line-height: 1.4;
}

.faq-page-accordion .accordion-panel {
  padding: 0 1.2rem 1.1rem;
}

.faq-page-accordion .accordion-panel p {
  margin: 0;
  line-height: 1.65;
}

.faq-page-accordion .accordion-panel a {
  color: var(--dark-2);
  text-decoration: underline;
  text-decoration-color: rgba(191, 163, 101, 0.55);
  text-underline-offset: 0.15em;
}

.faq-page-accordion .accordion-panel a:hover {
  color: var(--gold-hover);
}

.faq-page-cta {
  margin-top: 2rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 4.5rem 0;
}

.final-cta .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.final-cta .section-lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
  text-align: center;
}

.final-cta .btn-group {
  justify-content: center;
}

.final-cta--home {
  padding: 5.25rem 0;
  text-align: left;
}

.final-cta--home .container {
  position: relative;
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  pointer-events: none;
}

.final-cta-copy,
.final-cta-panel {
  position: relative;
  z-index: 1;
}

.final-cta-copy {
  max-width: 680px;
}

.final-cta--home .section-title {
  max-width: 15ch;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta--home .section-lead {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.final-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.final-cta-badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(191, 163, 101, 0.34);
  border-radius: 999px;
  background: rgba(11, 16, 24, 0.5);
  color: rgba(255, 255, 255, 0.88);
  padding: 0.48rem 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.final-cta-panel {
  border: 1px solid rgba(191, 163, 101, 0.28);
  border-top: 4px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ec 100%);
  color: var(--text);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.final-cta-kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.final-cta-panel strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--dark-2);
}

.final-cta-panel p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.final-cta-panel .btn {
  width: 100%;
}

/* Page heroes (hub / serviço / internas) — padrão centralizado */
.hub-hero {
  background: var(--dark);
  color: var(--white);
  padding: 3.5rem 0 3.25rem;
  text-align: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

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

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

.hub-hero .eyebrow {
  margin-inline: auto;
}

.hub-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 0 auto 1rem;
  max-width: 18ch;
}

.hub-hero p {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.hub-hero .btn-group {
  justify-content: center;
  margin-top: 1.5rem;
}

.section-hub {
  background: #faf8f4;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 0 0 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 100%;
  overflow: hidden;
}

.hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.hub-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--cream);
  display: block;
}

.hub-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark-2);
  margin: 1.15rem 1.4rem 0.55rem;
  line-height: 1.3;
}

.hub-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  margin: 0 1.4rem 1rem;
}

.hub-card-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 1.4rem;
}

.hub-card:hover .hub-card-link {
  color: var(--gold-hover);
}

/* Página Contato */
.section-contact-page {
  background: var(--white);
}

.contact-channel-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(191, 163, 101, 0.08), transparent 26rem),
    var(--cream);
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-channel-card {
  min-height: 265px;
  border: 1px solid rgba(191, 163, 101, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(16, 23, 34, 0.08);
  padding: clamp(1.6rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-channel-card h2 {
  font-family: var(--font-serif);
  color: var(--dark-2);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
}

.contact-channel-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.contact-channel-card a,
.contact-channel-card span {
  color: var(--dark-2);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.channel-card {
  background: #f9f7f2;
  border-top: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.channel-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.channel-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark-2);
  margin-bottom: 0.55rem;
  word-break: break-word;
}

.channel-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.contact-prep {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.prep-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark-2);
  margin: 0.5rem 0 1rem;
}

.prep-panel {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.prep-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.prep-panel p {
  color: #555;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.prep-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-3);
  font-size: 0.92rem;
  color: var(--text-muted) !important;
}

.office-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.section-office .container {
  max-width: 1120px;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.section-label-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(16, 23, 34, 0.12);
}

.section-label-row span {
  color: rgba(16, 23, 34, 0.48);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.office-card {
  background: #fff;
  border: 1px solid rgba(191, 163, 101, 0.24);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 16px 44px rgba(16, 23, 34, 0.08);
  padding: 1.75rem 1.5rem;
  margin-top: 0.5rem;
}

.office-card h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.office-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.office-note {
  font-size: 0.92rem;
  border-top: 1px solid rgba(16, 23, 34, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.office-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
}

.map-placeholder {
  background: var(--cream);
  border: 1px solid rgba(191, 163, 101, 0.24);
  overflow: hidden;
  min-height: 360px;
}

.map-placeholder img,
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  object-fit: cover;
}

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

/* Blog */
.section-blog {
  background: #f5f5f5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
}

.blog-card-media {
  display: block;
  background: var(--cream);
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  color: #9a9a9a;
}

.blog-meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.blog-meta time {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #9a9a9a;
}

.blog-card-body h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  color: #222;
}

.blog-card-body h2 a:hover {
  color: var(--gold);
}

.blog-card-body p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border: 1px solid #d0d0d0;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.blog-read-more:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(185, 155, 95, 0.06);
}

/* Blog listing — estrutura tipo hub editorial */
.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 1.35rem 0 1.5rem;
}

.blog-hero-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(191, 163, 101, 0.4);
  border-radius: 999px;
  background: rgba(11, 16, 24, 0.45);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.blog-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.blog-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.section-blog-listing {
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 163, 101, 0.08), transparent 26rem),
    var(--surface);
  padding-top: 2.5rem;
}

.blog-search-bar {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(16, 23, 34, 0.12);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(16, 23, 34, 0.06);
}

.blog-search-bar:focus {
  outline: none;
  border-color: var(--gold);
}

.blog-listing-intro {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.7;
}

.blog-listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.blog-listing-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--dark-2);
  margin-bottom: 1rem;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.blog-filter {
  border: 1px solid rgba(16, 23, 34, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--dark-2);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.blog-filter:hover,
.blog-filter.is-active {
  background: var(--dark-2);
  border-color: var(--dark-2);
  color: #fff;
}

.blog-filter.is-active {
  background: linear-gradient(135deg, #b48d3c 0%, #d3b76d 52%, #a77b2f 100%);
  border-color: transparent;
  color: #101722;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.blog-article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(191, 163, 101, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 23, 34, 0.14);
}

.blog-article-card.is-hidden {
  display: none;
}

.blog-article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #101722;
}

.blog-article-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
}

.blog-article-cat {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--dark-2);
  margin: 0;
}

.blog-article-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.blog-article-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #8a8a8a;
  font-size: 0.8rem;
}

.blog-article-foot .hub-card-link {
  margin: 0;
}

.blog-empty {
  display: none;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed rgba(16, 23, 34, 0.15);
  border-radius: 14px;
}

.blog-empty.is-visible {
  display: block;
}

.blog-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 1rem;
}

.blog-aside-card {
  border: 1px solid rgba(191, 163, 101, 0.24);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 23, 34, 0.08);
  padding: 1.25rem;
}

.blog-aside-card h3 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.blog-theme-list {
  display: grid;
  gap: 0.55rem;
}

.blog-theme-list button,
.blog-theme-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 12px;
  background: #fbf8f1;
  color: var(--dark-2);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  text-align: left;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.blog-theme-list button:hover,
.blog-theme-list a:hover,
.blog-theme-list button.is-active {
  border-color: rgba(191, 163, 101, 0.45);
  background: #fff;
}

.blog-theme-list small {
  color: var(--text-muted);
  font-weight: 700;
}

@media (max-width: 960px) {
  .blog-listing-layout,
  .blog-article-grid {
    grid-template-columns: 1fr;
  }

  .blog-aside {
    position: static;
  }
}

/* Post individual — estrutura editorial estilo guia (Maré → Arcenio) */
.section-post {
  background:
    radial-gradient(circle at 10% 0%, rgba(191, 163, 101, 0.07), transparent 24rem),
    #f7f4ed;
}

.post-hero {
  text-align: center;
  min-height: 420px;
}

.post-hero-inner {
  max-width: 860px;
  margin-inline: auto;
}

.post-hero .breadcrumb {
  justify-content: center;
}

.post-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.18;
  margin: 0 auto 1rem;
  max-width: 18ch;
  letter-spacing: -0.035em;
}

.post-hero > .container > p,
.post-hero-inner > p {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-size: 1.05rem;
}

.post-hero .btn-group {
  justify-content: center;
  margin-top: 0;
}

.post-hero-meta {
  display: none;
}

.post-layout,
.post-shell {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  padding: 2.5rem 0 4.5rem;
}

.post-content {
  max-width: none;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin: 0 0 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(16, 23, 34, 0.08);
}

.post-author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(191, 163, 101, 0.5);
  flex-shrink: 0;
}

.post-author-by {
  margin: 0;
  color: var(--dark-2);
  font-size: 0.98rem;
  line-height: 1.35;
}

.post-author-by strong {
  font-weight: 800;
}

.post-author-meta {
  margin: 0.28rem 0 0;
  color: #777;
  font-size: 0.86rem;
  line-height: 1.45;
}

.post-featured {
  margin: 0 0 0.55rem;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
}

.post-featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.post-featured figcaption,
.post-caption {
  margin: 0 0 1.5rem;
  color: #888;
  font-size: 0.86rem;
  line-height: 1.45;
  font-style: italic;
}

.post-essentials {
  background: #fff;
  border: 1px solid rgba(191, 163, 101, 0.22);
  border-radius: 14px;
  padding: 1.45rem 1.45rem 1.5rem;
  margin: 1.75rem 0 1.85rem;
  box-shadow: 0 14px 32px rgba(16, 23, 34, 0.05);
}

.post-essentials > span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--gold);
}

.post-summary-box,
.post-toc,
.post-callout {
  border: 1px solid rgba(191, 163, 101, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 23, 34, 0.05);
  padding: 1.35rem 1.25rem;
  margin: 1.5rem 0;
}

.post-summary-box span,
.post-toc strong,
.post-sources > span,
.post-keep > span,
.post-service-band > span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.post-summary-box p,
.post-callout p {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.post-toc {
  display: block;
}

.post-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  color: #555;
  display: grid;
  gap: 0.45rem;
}

.post-toc a {
  color: var(--dark-2);
  font-weight: 700;
  text-decoration: none;
}

.post-toc a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-callout {
  border-left: 4px solid var(--gold);
  background: #fbf8f1;
  box-shadow: none;
}

.post-callout strong {
  display: block;
  color: var(--dark-2);
  margin-bottom: 0.35rem;
}

.post-steps {
  counter-reset: post-step;
  list-style: none;
  padding-left: 0 !important;
}

.post-steps li {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.post-steps li::before {
  counter-increment: post-step;
  content: counter(post-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(191, 163, 101, 0.16);
  color: var(--dark-2);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.post-content > p,
.post-content > ul,
.post-content > ol {
  color: #4d5360;
  line-height: 1.78;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.post-content > ul,
.post-content > ol {
  padding-left: 1.25rem;
}

.post-content > ul li,
.post-content > ol li {
  margin-bottom: 0.5rem;
}

.post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content .btn {
  color: #101722;
  text-decoration: none;
}

.post-content .btn-outline-dark {
  color: var(--dark-2);
}

.post-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  color: var(--dark-2);
  margin: 2.6rem 0 0.95rem;
  scroll-margin-top: 100px;
  letter-spacing: -0.02em;
}

.post-content h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--dark-2);
  margin: 1.85rem 0 0.65rem;
}

.post-table-wrap {
  overflow-x: auto;
  margin: 1.15rem 0 1.65rem;
  border: 1px solid rgba(191, 163, 101, 0.22);
  border-radius: 12px;
  background: #fff;
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.post-table th,
.post-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.post-table th {
  background: #f9f7f2;
  color: var(--dark-2);
  font-weight: 700;
}

.post-table tr:last-child td {
  border-bottom: 0;
}

.post-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-2);
  padding: 0 0 0.7rem;
}

.post-checklist {
  list-style: none;
  padding-left: 0 !important;
  margin: 0;
}

.post-checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.75rem;
  color: #444;
  line-height: 1.55;
}

.post-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(191, 163, 101, 0.18);
  color: #8a7040;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.post-checklist li strong {
  color: var(--dark-2);
}

.post-mid-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 2rem 0;
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 163, 101, 0.18), transparent 14rem),
    linear-gradient(135deg, #101722 0%, #1a2433 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(16, 23, 34, 0.18);
}

.post-mid-promo > div > span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.post-mid-promo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.post-mid-promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.post-mid-promo .btn,
.post-mid-promo .btn-wa-label,
.post-mid-promo .btn-wa-number {
  color: #101722;
}

.post-mid-promo .btn {
  flex-shrink: 0;
}

.post-mid-promo .btn-wa-label,
.post-mid-promo .btn-wa-number {
  display: block;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: inherit;
}

.post-sources {
  margin: 2.4rem 0;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 12px;
  background: #fff;
}

.post-sources ol {
  margin: 0;
  padding-left: 1.2rem;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.55;
}

.post-sources a {
  color: var(--dark-2);
}

.post-faq {
  margin-top: 2.75rem;
}

.post-faq > h2 {
  margin-top: 0;
}

.post-service-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 2.5rem 0 0;
  padding: 1.45rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(191, 163, 101, 0.28);
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 23, 34, 0.05);
}

.post-service-band h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.post-service-band p {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
}

.post-service-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.post-keep {
  margin-top: 2.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 23, 34, 0.08);
}

.post-keep > span {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--gold);
}

.post-keep h2 {
  margin: 0 0 1.25rem;
}

.post-keep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.post-keep-card {
  display: block;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(191, 163, 101, 0.2);
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.post-keep-card:hover {
  border-color: rgba(191, 163, 101, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 23, 34, 0.08);
}

.post-keep-card small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.post-keep-card strong {
  display: block;
  color: var(--dark-2);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.post-keep-card span {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.45;
}

.post-aside,
.post-sidebar {
  display: none;
}

@media (max-width: 900px) {
  .post-keep-grid {
    grid-template-columns: 1fr;
  }

  .post-mid-promo,
  .post-service-band {
    flex-direction: column;
    align-items: stretch;
  }

  .post-mid-promo .btn,
  .post-service-band-actions .btn {
    width: 100%;
  }

  .post-service-band-actions {
    width: 100%;
  }

  .post-service-band-actions .btn {
    flex: 1;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28ch;
}

.footer-col h2 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ========== Página de serviço (servico.html) ========== */
.section-svc-intro {
  background: var(--white);
  padding-top: 2.5rem;
}

.svc-layout {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 2.5rem;
  align-items: start;
}

.svc-aside-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.svc-aside-nav a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
  line-height: 1.35;
}

.svc-aside-nav a::before {
  content: "›";
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}

.svc-aside-nav a:hover {
  color: var(--gold);
}

.svc-aside-nav a.is-active {
  color: var(--gold);
  font-weight: 600;
}

.svc-aside-cta {
  background: #f7f5f1;
  border-top: 2px solid var(--gold);
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
}

.svc-aside-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark-2);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.svc-aside-cta p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.svc-aside-cta .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  line-height: 1.3;
  padding: 0.85rem 1rem;
}

.svc-aside-loc {
  margin: 0.9rem 0 0 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888 !important;
}

.svc-featured-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background: #f0ebe3;
}

.svc-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  color: #3a3a3a;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.section-dots--left {
  margin: 0.2rem 0 1.25rem;
}

.svc-main > p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-main strong {
  color: var(--dark-2);
  font-weight: 700;
}

.section-seo-depth {
  background: #f9f7f3;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.answer-card {
  background: var(--white);
  border: 1px solid rgba(35, 40, 46, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.answer-card--wide {
  grid-column: span 3;
}

.answer-card span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.answer-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

.answer-card strong {
  color: var(--dark-2);
}

.entity-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 2rem 0;
}

.entity-cloud span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(185, 155, 95, 0.35);
  border-radius: 999px;
  background: rgba(185, 155, 95, 0.08);
  color: var(--dark-2);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.cta-strip p {
  color: #444;
  line-height: 1.65;
}

.btn-wa-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  min-width: 9.5rem;
  padding-block: 0.72rem;
}

.btn-wa-label {
  display: block;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-wa-number {
  display: block;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.decision-layout {
  display: grid;
  grid-template-columns: 0.68fr 0.32fr;
  gap: 2rem;
  align-items: start;
}

.section-related-links {
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.related-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 163, 101, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  padding: 1.15rem 1rem;
  box-shadow: 0 14px 34px rgba(16, 23, 34, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.related-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(191, 163, 101, 0.12));
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 163, 101, 0.42);
  box-shadow: 0 22px 48px rgba(16, 23, 34, 0.14);
}

.related-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
}

.related-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark-2);
  line-height: 1.3;
}

.related-card small {
  display: block;
  color: var(--text-muted);
  line-height: 1.45;
}

.svc-quote {
  color: var(--gold) !important;
  font-style: italic;
  text-align: center;
  margin: 1.5rem 0 !important;
  font-size: 1.05rem;
  line-height: 1.55;
}

.svc-main h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--dark-2);
  margin: 1.75rem 0 0.85rem;
}

.svc-exam {
  margin-top: 1.75rem;
}

.svc-exam h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--dark-2);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.svc-exam p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.05rem;
}

.svc-exam p:last-child {
  margin-bottom: 0;
}

.svc-exam strong {
  color: var(--dark-2);
  font-weight: 700;
}

/* Passos 2x2 */
.section-svc-steps {
  background: #f9f8f4;
}

.svc-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.svc-step {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 1.65rem 1.5rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.svc-step-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
}

.svc-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark-2);
  margin-bottom: 0.55rem;
}

.svc-step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Situações 3 cols + público */
.section-svc-situations {
  background: var(--white);
}

.svc-sit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.svc-sit {
  background: #f8f6f2;
  border: 1px solid #ebe6dc;
  border-top: 3px solid var(--gold);
  padding: 1.35rem 1.25rem 1.25rem;
}

.svc-sit h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 0.45rem;
}

.svc-sit p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.svc-sit a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.svc-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.svc-audience {
  background: #f8f6f2;
  border-top: 4px solid var(--gold);
  padding: 1.75rem 1.5rem 1.5rem;
}

.svc-audience h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--dark-2);
  margin-bottom: 0.75rem;
}

.svc-audience > p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.svc-audience ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-audience li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.svc-audience li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #222;
}

/* Docs pair + wide + CTA */
.section-svc-docs {
  background: #f9f8f4;
}

.svc-docs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-bottom: 1.35rem;
}

.svc-doc-card {
  background: var(--white);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.svc-doc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark-2);
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.svc-doc-lead {
  color: #888;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.svc-doc-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-doc-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.65rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.svc-doc-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888;
}

.svc-doc-card strong {
  color: var(--dark-2);
}

.svc-doc-card--dark {
  background: #24272e;
  color: var(--white);
}

.svc-doc-card--dark h3 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.svc-doc-card--dark li {
  color: rgba(255, 255, 255, 0.92);
}

.svc-doc-card--dark li::before {
  color: rgba(255, 255, 255, 0.7);
}

.svc-doc-note {
  margin-top: 1.25rem;
  padding-top: 0.25rem;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1.5;
}

.svc-doc-wide {
  background: var(--white);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.svc-doc-wide h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark-2);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.svc-doc-wide p {
  color: #555;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.svc-doc-wide p:last-child {
  margin-bottom: 0;
}

.svc-doc-wide strong {
  color: var(--dark-2);
}

.svc-docs-cta {
  text-align: center;
}

/* ========== Sofisticação visual — advocacia criminal ========== */
body {
  background:
    radial-gradient(circle at 15% 0%, rgba(191, 163, 101, 0.08), transparent 30rem),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 36rem);
}

.site-header {
  background: rgba(16, 23, 34, 0.96);
  border-bottom: 1px solid rgba(191, 163, 101, 0.22);
  box-shadow: 0 10px 34px rgba(11, 16, 24, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
}

.nav {
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-mark {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.brand-name,
.nav-list a,
.nav-toggle {
  color: var(--white);
}

.nav-toggle span {
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.brand-tag {
  color: var(--gold-soft);
}

.nav-dropdown-menu,
.nav-submenu {
  background: #111a26;
  border-color: rgba(191, 163, 101, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.nav-dropdown-menu a {
  color: rgba(255, 255, 255, 0.84);
}

.nav-dropdown-menu a:hover {
  color: var(--gold-soft);
}

.btn {
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(16, 23, 34, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #b48d3c 0%, #d3b76d 52%, #a77b2f 100%);
  color: #101722;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c29b49 0%, #e0c57b 52%, #b88c3c 100%);
  transform: translateY(-1px);
}

.btn-outline,
.btn-outline-dark {
  border-color: rgba(191, 163, 101, 0.48);
}

.btn-outline-dark {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.55);
}

.hero,
.hub-hero,
.post-hero,
.section--dark {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.94) 0%, rgba(11, 16, 24, 0.86) 42%, rgba(11, 16, 24, 0.62) 100%),
    radial-gradient(circle at 20% 18%, rgba(191, 163, 101, 0.2), transparent 20rem),
    url("../assets/img/hero-advocacia-criminal.jpg") center 38% / cover no-repeat,
    linear-gradient(135deg, #0b1018 0%, #111b28 48%, #202431 100%);
  overflow: hidden;
}

.section--dark {
  background:
    radial-gradient(circle at 20% 18%, rgba(191, 163, 101, 0.2), transparent 20rem),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 18rem),
    linear-gradient(135deg, #0b1018 0%, #111b28 48%, #202431 100%);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.92) 0%, rgba(11, 16, 24, 0.72) 43%, rgba(11, 16, 24, 0.34) 100%),
    radial-gradient(circle at 20% 18%, rgba(191, 163, 101, 0.18), transparent 20rem),
    url("../assets/img/capa-home-arcenio.png") center center / cover no-repeat,
    linear-gradient(135deg, #0b1018 0%, #111b28 48%, #202431 100%);
}

.hub-hero,
.post-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 3.5rem 0 3.25rem;
}

.hero::before,
.hub-hero::before,
.post-hero::before,
.section--dark::before {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

.hero::after,
.hub-hero::after,
.post-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 163, 101, 0.82), transparent);
  transform: translateX(-50%);
}

.hero-title,
.hub-hero h1,
.post-hero h1,
.section-title {
  letter-spacing: -0.035em;
}

.eyebrow {
  color: var(--gold-soft);
}

.section-intro,
.section-hub,
.section-steps,
.section-svc-steps,
.section-seo-depth,
.section-svc-situations {
  background:
    radial-gradient(circle at 10% 0%, rgba(191, 163, 101, 0.1), transparent 28rem),
    var(--surface);
}

.section--cream {
  background:
    linear-gradient(135deg, rgba(191, 163, 101, 0.12), transparent 40%),
    var(--cream);
}

.intro-panel,
.prep-panel,
.contact-card,
.dossier-card,
.svc-aside-cta {
  border: 1px solid rgba(191, 163, 101, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ec 100%);
  box-shadow: var(--shadow-card);
}

.area-card,
.hub-card,
.signal-card,
.info-card,
.step-card,
.channel-card,
.answer-card,
.svc-step,
.svc-sit,
.svc-doc-card,
.svc-doc-wide {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.area-card::before,
.hub-card::before,
.signal-card::before,
.info-card::before,
.step-card::before,
.channel-card::before,
.answer-card::before,
.svc-step::before,
.svc-sit::before,
.svc-doc-card::before,
.svc-doc-wide::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(191, 163, 101, 0.16));
}

.area-card:hover,
.hub-card:hover,
.signal-card:hover,
.info-card:hover,
.step-card:hover,
.channel-card:hover,
.answer-card:hover,
.svc-step:hover,
.svc-sit:hover {
  transform: translateY(-5px);
  border-color: rgba(191, 163, 101, 0.36);
  box-shadow: 0 26px 58px rgba(16, 23, 34, 0.18);
}

.area-card img,
.hub-card-img,
.svc-featured-img {
  background:
    radial-gradient(circle at 30% 15%, rgba(191, 163, 101, 0.24), transparent 18rem),
    linear-gradient(135deg, #101722 0%, #1b2533 100%);
  padding: 0;
  object-fit: cover;
  border-bottom: 1px solid rgba(191, 163, 101, 0.18);
}

.about-photo,
.map-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(191, 163, 101, 0.24);
}

.area-card h4,
.hub-card h3,
.signal-card h3,
.info-card h3,
.step-card h3,
.channel-card h3,
.answer-card span,
.svc-step h3,
.svc-sit h3,
.svc-doc-card h3 {
  color: var(--dark-2);
}

.hub-card-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

.signal-card {
  border-left: 0;
}

.signal-icon,
.step-icon {
  background: linear-gradient(135deg, rgba(191, 163, 101, 0.2), rgba(191, 163, 101, 0.06));
  border: 1px solid rgba(191, 163, 101, 0.32);
  border-radius: 999px;
}

.entity-cloud span {
  background: #111a26;
  color: var(--gold-soft);
  border-color: rgba(191, 163, 101, 0.45);
  box-shadow: 0 12px 28px rgba(16, 23, 34, 0.12);
}

.cta-strip {
  border: 1px solid rgba(191, 163, 101, 0.24);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
}

.svc-doc-card--dark {
  background:
    radial-gradient(circle at 20% 0%, rgba(191, 163, 101, 0.18), transparent 16rem),
    linear-gradient(135deg, #101722 0%, #1b2533 100%);
  border-color: rgba(191, 163, 101, 0.28);
}

.svc-doc-card.svc-doc-card--dark h3,
.svc-doc-card.svc-doc-card--dark strong {
  color: var(--white);
}

.svc-doc-card.svc-doc-card--dark .svc-doc-note {
  color: var(--gold-soft);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(191, 163, 101, 0.14), transparent 20rem),
    #0b1018;
}

/* Responsive */
@media (max-width: 1024px) {
  .areas-grid,
  .hub-grid,
  .blog-grid,
  .home-cluster-grid,
  .about-topic-grid,
  .related-grid,
  .edu-windows-grid,
  .edu-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edu-strategy-compare {
    grid-template-columns: 1fr;
  }

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

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

  .dossier-row {
    grid-template-columns: 110px 1fr;
    gap: 1rem;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: #101722;
    border-bottom: 1px solid rgba(191, 163, 101, 0.24);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(191, 163, 101, 0.18);
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-flyout-trigger::after {
    content: "+";
    font-size: 0.85rem;
  }

  .nav-flyout.is-open .nav-flyout-trigger::after {
    content: "−";
  }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--cream-3);
    min-width: 0;
    padding: 0 0 0.35rem 0.85rem;
    margin: 0 0 0.35rem;
    display: none;
  }

  .nav-flyout.is-open .nav-submenu {
    display: block;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .intro-top,
  .about-grid,
  .contact-layout,
  .contact-prep,
  .office-grid,
  .info-grid,
  .form-row,
  .contact-channel-grid,
  .contact-channels,
  .post-layout,
  .svc-layout,
  .svc-steps-grid,
  .svc-audience-grid,
  .svc-docs-pair,
  .answer-grid,
  .decision-layout,
  .final-cta-card {
    grid-template-columns: 1fr;
  }

  .answer-card--wide {
    grid-column: span 1;
  }

  .cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-strip .btn {
    width: 100%;
  }

  .final-cta--home {
    padding: 4rem 0;
  }

  .final-cta-card {
    padding-left: 1rem;
    border-radius: 0;
  }

  .final-cta-card::before {
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 999px;
  }

  .final-cta--home .section-title,
  .final-cta--home .section-lead {
    max-width: none;
    text-align: center;
  }

  .final-cta--home .eyebrow,
  .final-cta-badges {
    justify-content: center;
    text-align: center;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .post-aside,
  .post-sidebar {
    position: static;
  }

  .post-keep-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }

  .hero-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 88px;
  }

  .brand-mark {
    width: 145px;
    height: 72px;
  }

  .areas-grid,
  .signals-grid,
  .steps-grid,
  .hub-grid,
  .blog-grid,
  .footer-grid,
  .svc-sit-grid,
  .related-grid,
  .edu-windows-grid,
  .edu-method-grid,
  .edu-mistakes-list,
  .edu-strategy-compare {
    grid-template-columns: 1fr;
  }

  .dossier-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .dossier-head,
  .dossier-body {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }
}
