:root {
  --ink: #171716;
  --ink-soft: #343432;
  --muted: #686864;
  --line: #dedbd4;
  --line-dark: #383734;
  --paper: #ffffff;
  --paper-warm: #f6f4ef;
  --paper-deep: #ece8df;
  --gold: #a7864d;
  --gold-dark: #806536;
  --gold-light: #d9c79f;
  --success: #1f6b4f;
  --max: 1200px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img,
svg {
  display: block;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  transition: top 0.2s ease;
}

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

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

.topbar {
  background: var(--ink);
  color: #d9d8d4;
  font-size: 0.78rem;
  letter-spacing: 0.035em;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  color: white;
  transition: color 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.06;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.21rem;
  letter-spacing: 0.02em;
}

.brand-label {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 28px;
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 11px 19px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.012em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-cta,
.button-dark {
  background: var(--ink);
  color: white;
}

.nav-cta:hover,
.button-dark:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.button-outline {
  border-color: #bbb6ac;
  background: transparent;
  color: var(--ink);
}

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

.button-light {
  border-color: #73716c;
  background: transparent;
  color: white;
}

.button-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

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

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 1px;
  display: block;
  background: var(--ink);
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.mobile-panel {
  position: absolute;
  right: 0;
  top: 55px;
  width: min(88vw, 330px);
  display: grid;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgb(0 0 0 / 12%);
  padding: 12px;
}

.mobile-panel a {
  border-bottom: 1px solid #ece9e2;
  padding: 13px 10px;
  font-weight: 650;
}

.mobile-panel a:last-child {
  margin-top: 8px;
  border: 0;
  background: var(--ink);
  color: white;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 24%, rgb(167 134 77 / 10%), transparent 26%),
    linear-gradient(90deg, #fff 0%, #fff 65%, #f7f5f0 100%);
}

.hero::after {
  content: "EG";
  position: absolute;
  right: -0.03em;
  bottom: -0.27em;
  color: rgb(167 134 77 / 5%);
  font-family: var(--serif);
  font-size: min(42vw, 620px);
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: 80px;
  padding-block: 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3.05rem, 6vw, 5.7rem);
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-aside {
  align-self: end;
  margin-bottom: 28px;
  border-left: 1px solid var(--gold);
  padding: 16px 0 16px 28px;
}

.hero-aside-label {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-aside p {
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.trust-row {
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
  padding: 24px 38px;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 2rem;
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
}

.trust-item span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding-block: 112px;
}

.section-warm {
  background: var(--paper-warm);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  letter-spacing: -0.035em;
}

.section-heading p,
.split-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p,
.section-dark .split-copy > p {
  color: #c4c1ba;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.area-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 35px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.area-card:hover {
  position: relative;
  z-index: 1;
  background: #fbfaf7;
  box-shadow: 0 18px 55px rgb(36 31 23 / 9%);
  transform: translateY(-3px);
}

.area-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
}

.area-icon svg {
  width: 23px;
  height: 23px;
}

.area-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.area-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

@media (min-width: 1200px) {
  .page-content-section .area-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-content-section .area-grid > .area-card {
    grid-column: span 4;
  }

  .page-content-section .area-grid > .area-card:nth-child(-n + 4) {
    grid-column: span 3;
  }
}

@media (min-width: 821px) and (max-width: 1199px) {
  .page-content-section .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-content-section .area-grid > .area-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.7fr);
  align-items: center;
  gap: 110px;
}

.credential-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 48px;
}

.credential-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgb(167 134 77 / 28%);
  content: "";
  pointer-events: none;
}

.credential-monogram {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: -0.08em;
}

.credential-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.credential-card > p {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.credential-list span {
  display: flex;
  gap: 11px;
}

.credential-list span::before {
  color: var(--gold-dark);
  content: "—";
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.campaign-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  background: #1e1e1c;
  padding: 38px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.campaign-card:hover {
  border-color: var(--gold);
  background: #22211e;
}

.campaign-index {
  margin-bottom: 34px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.campaign-card h3 {
  max-width: 440px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.campaign-card p {
  max-width: 500px;
  color: #c3c0ba;
}

.campaign-card .text-link {
  color: var(--gold-light);
}

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

.step {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.step-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.step h3 {
  margin: 30px 0 12px;
  font-size: 1.45rem;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-section {
  padding-block: 72px;
  background: var(--paper-deep);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  background: #111110;
  color: #d1cec7;
  padding: 78px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr;
  gap: 70px;
  padding-bottom: 58px;
}

.site-footer .brand {
  color: white;
}

.site-footer .brand-label,
.site-footer p {
  color: #a7a39b;
}

.footer-intro {
  max-width: 420px;
  margin-top: 24px;
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 20px;
  color: white;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.85rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #32312e;
  padding-top: 24px;
  color: #89867f;
  font-size: 0.73rem;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 10px 34px rgb(0 0 0 / 20%);
  color: white;
  padding: 13px 17px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float:hover {
  background: #18563f;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
  padding-block: 104px 86px;
}

.page-hero::after {
  position: absolute;
  right: 6vw;
  bottom: -0.42em;
  color: rgb(167 134 77 / 7%);
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
  content: "§";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 890px;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 86px;
}

.prose h2 {
  margin: 52px 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.025em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
}

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

.prose ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 30px;
  padding-left: 22px;
}

.prose li::marker {
  color: var(--gold-dark);
}

.info-box {
  position: sticky;
  top: 116px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 30px;
}

.info-box h3 {
  margin-bottom: 13px;
  font-size: 1.5rem;
}

.info-box p {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-box .button {
  width: 100%;
  margin-top: 11px;
  text-align: center;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-block: 30px 40px;
}

.topic {
  border-left: 2px solid var(--gold);
  background: var(--paper-warm);
  padding: 20px 22px;
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-weight: 650;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.contact-data {
  display: grid;
  gap: 25px;
}

.contact-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 23px;
}

.contact-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 38px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.79rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #c8c4bb;
  border-radius: 0;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.privacy-check input {
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.article-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 30px;
}

.article-card small {
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 25px 0 18px;
  font-size: 1.5rem;
}

.article-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(4) {
    display: none;
  }

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

  .hero-aside {
    max-width: 510px;
    align-self: auto;
  }

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

  .split {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .topbar-inner span:first-child {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 75px;
  }

  .trust-grid,
  .campaign-grid,
  .steps-grid,
  .split,
  .cta-panel,
  .footer-grid,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split,
  .contact-layout {
    gap: 54px;
  }

  .cta-panel {
    gap: 28px;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .footer-grid {
    gap: 42px;
  }

  .info-box {
    position: static;
  }
}

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.03rem;
  }

  .brand-label {
    font-size: 0.55rem;
  }

  .hero {
    background:
      radial-gradient(
        circle at 90% 30%,
        rgb(167 134 77 / 10%),
        transparent 34%
      ),
      white;
  }

  .hero-grid {
    padding-block: 62px;
  }

  .hero h1 {
    font-size: clamp(2.78rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-aside {
    margin: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .area-grid,
  .article-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 0;
    padding: 29px;
  }

  .campaign-card {
    min-height: 280px;
    padding: 30px;
  }

  .credential-card {
    padding: 36px 30px;
  }

  .page-hero {
    padding-block: 74px 62px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 76px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Ajustes do WordPress */
.desktop-nav .menu,
.footer-links .menu,
.mobile-panel .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav .menu a {
  position: relative;
  display: block;
  padding-block: 28px;
}

.desktop-nav .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.desktop-nav .menu a:hover::after {
  right: 0;
}

.mobile-panel .menu,
.footer-links .menu {
  display: grid;
}

.mobile-panel .menu a {
  display: block;
  border-bottom: 1px solid #ece9e2;
  padding: 13px 10px;
  font-weight: 650;
}

.mobile-whatsapp {
  margin-top: 8px;
  border: 0 !important;
  background: var(--ink);
  color: white;
  text-align: center;
}

.footer-links .menu {
  gap: 9px;
}

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

.brand-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 240px;
  max-height: 58px;
  object-fit: contain;
}

.prose-wide {
  max-width: var(--max);
}

.eg-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-alert {
  border-left: 3px solid;
  background: white;
  padding: 14px 16px;
  font-size: 0.88rem;
}

.form-success {
  border-color: var(--success);
  color: #18563f;
}

.form-error {
  border-color: #9a382f;
  color: #7b2d27;
}

.pagination {
  margin-top: 45px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination .page-numbers {
  min-width: 42px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  text-align: center;
}

.pagination .current {
  background: var(--ink);
  color: white;
}

.article-card h2 {
  margin: 25px 0 18px;
  font-size: 1.5rem;
}

.alignwide {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .desktop-nav .menu {
    gap: 18px;
  }

  .desktop-nav .menu li:nth-child(4) {
    display: none;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }
}

/* Redesign escuro — versão 2.0 */
:root {
  --ink: #f4f0e8;
  --ink-soft: #d2ccc1;
  --muted: #aaa398;
  --line: #302d28;
  --line-dark: #3c3831;
  --paper: #090909;
  --paper-warm: #11100f;
  --paper-deep: #181510;
  --gold: #c9a45d;
  --gold-dark: #d6b46f;
  --gold-light: #ead29f;
  --success: #176a4b;
}

body {
  background:
    radial-gradient(circle at 14% 4%, rgb(201 164 93 / 6%), transparent 25rem),
    var(--paper);
  color: var(--ink);
}

.topbar {
  background: #050505;
  border-bottom: 1px solid #201f1c;
  color: #a9a49b;
}

.site-header {
  background: rgb(8 8 8 / 95%);
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: 84px;
}

.brand-image {
  width: clamp(205px, 24vw, 315px);
  height: 64px;
  overflow: hidden;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-header img {
  filter: drop-shadow(0 6px 20px rgb(201 164 93 / 18%));
}

.site-footer .brand-footer {
  width: min(100%, 330px);
  height: 84px;
  border: 1px solid #2d2a25;
  background: #f4f4f4;
}

.desktop-nav,
.desktop-nav a {
  color: #e7e2d9;
}

.nav-cta,
.button-dark,
.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.nav-cta:hover,
.button-dark:hover,
.button-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: #090909;
}

.desktop-nav .nav-cta {
  border-color: #219966;
  background: #167c55;
  color: #fff;
  box-shadow: 0 8px 24px rgb(22 124 85 / 18%);
}

.desktop-nav .nav-cta:hover {
  border-color: #32ad7a;
  background: #1c9163;
  color: #fff;
}

.button-outline {
  border-color: #686056;
  color: #ece7de;
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.mobile-menu summary {
  border-color: var(--line);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  background: var(--ink);
}

.mobile-menu .mobile-panel {
  width: min(84vw, 310px);
  gap: 0;
  border: 1px solid #332f28;
  border-top: 2px solid var(--gold);
  background: #0d0d0c;
  box-shadow: 0 24px 60px rgb(0 0 0 / 65%);
  padding: 8px 16px 12px;
}

.mobile-panel a,
.mobile-panel .menu a {
  border-bottom-color: var(--line);
}

.mobile-menu .mobile-panel .menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  background: transparent;
  color: #ece7de;
  text-align: left;
  padding: 12px 4px;
  font-size: 0.92rem;
  font-weight: 600;
}

.mobile-menu .mobile-panel .menu a:hover,
.mobile-menu .mobile-panel .menu a:focus-visible {
  background: #191714;
  color: var(--gold-light);
}

.mobile-menu .mobile-panel a.mobile-whatsapp:last-child {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 4px 0 0;
  border: 0 !important;
  border-top: 1px solid #4b3d25 !important;
  background: transparent !important;
  color: var(--gold-light);
  padding: 13px 4px 5px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}

.mobile-menu .mobile-panel a.mobile-whatsapp:last-child:hover,
.mobile-menu .mobile-panel a.mobile-whatsapp:last-child:focus-visible {
  background: transparent !important;
  color: #fff;
}

.mobile-menu .mobile-panel .mobile-whatsapp svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.hero {
  border-bottom-color: var(--line);
  background:
    radial-gradient(circle at 84% 28%, rgb(201 164 93 / 16%), transparent 28%),
    linear-gradient(115deg, #060606 0%, #0c0b0a 64%, #17130d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, black);
  pointer-events: none;
}

.hero::after {
  color: rgb(201 164 93 / 6%);
}

.hero-lead,
.hero-aside p,
.section-heading p,
.split-copy > p,
.step p,
.page-hero p,
.prose p,
.prose li {
  color: var(--muted);
}

.hero-aside {
  background: rgb(255 255 255 / 2%);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 28px;
}

.hero-aside-label,
.eyebrow,
.trust-number,
.step-number,
.text-link {
  color: var(--gold);
}

.trust-row {
  border-bottom-color: var(--line);
  background: #0d0d0c;
}

.trust-item {
  border-right-color: var(--line);
}

.section-warm {
  background: #11100f;
}

.section-dark {
  background:
    radial-gradient(circle at 82% 30%, rgb(201 164 93 / 9%), transparent 30rem),
    #070707;
}

.area-grid {
  background: var(--line);
  border-color: var(--line);
}

.area-card {
  background: #121211;
}

.area-card:hover {
  background: #1a1815;
  box-shadow: 0 22px 65px rgb(0 0 0 / 42%);
}

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

.area-icon {
  border-color: rgb(201 164 93 / 45%);
  color: var(--gold);
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.office-portrait {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #4a4030;
  background: #15130f;
  aspect-ratio: 3 / 5;
}

.office-portrait::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgb(201 164 93 / 32%);
  pointer-events: none;
}

.office-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 48%;
  filter: saturate(0.88) contrast(1.04);
}

.office-portrait figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  background: rgb(7 7 7 / 82%);
  border-left: 2px solid var(--gold);
  color: #eee9df;
  padding: 12px 15px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.prose > .office-portrait {
  width: min(100%, 520px);
  margin-bottom: 54px;
  aspect-ratio: 3 / 5;
}

.profile-feature .split-copy h3 {
  margin: 38px 0 6px;
  font-size: 1.7rem;
}

.credential-list {
  border-top-color: var(--line);
  color: var(--muted);
}

.campaign-grid-single {
  grid-template-columns: minmax(0, 760px);
}

.campaign-card {
  background: #141311;
}

.campaign-card:hover {
  background: #1d1a16;
}

.cta-section {
  background:
    linear-gradient(120deg, rgb(201 164 93 / 9%), transparent 48%), #15130f;
}

.cta-panel {
  border: 1px solid #403728;
  padding: clamp(30px, 5vw, 60px);
}

.site-footer {
  background: #050505;
}

.compliance-note {
  margin: 0 0 24px;
  border-top: 1px solid #292722;
  padding-top: 24px;
  color: #918b81 !important;
  font-size: 0.76rem;
  line-height: 1.65;
}

.page-hero {
  border-bottom-color: var(--line);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgb(201 164 93 / 10%),
      transparent 28rem
    ),
    #0e0d0c;
}

.page-hero::after {
  color: rgb(201 164 93 / 5%);
}

.info-box {
  border-color: #3b352c;
  background: #131210;
}

.topic {
  border-color: var(--line);
  background: #11110f;
  color: #ddd7cc;
}

.contact-item,
.contact-form {
  border-color: var(--line);
  background: #11110f;
}

.contact-item small,
.form-note,
.privacy-check {
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: #484238;
  background: #080808;
  color: var(--ink);
}

.contact-form select option {
  background: #111;
}

.form-alert {
  background: #171613;
}

.form-success {
  color: #8ed3b7;
}

.form-error {
  color: #efa39d;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 36px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #11110f;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: #eee9df;
  font-weight: 700;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-symbol {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-symbol {
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 20px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.area-whatsapp {
  margin: 12px 0 28px;
}

/* Landing page para Google Ads */
.campaign-landing {
  background: #080808;
  color: var(--ink);
}

.campaign-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(72px, 9vw, 120px) 20px;
}

.campaign-section-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.campaign-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgb(201 164 93 / 15%),
      transparent 27rem
    ),
    linear-gradient(120deg, #050505, #14110c);
}

.campaign-hero::after {
  content: "EG";
  position: absolute;
  right: -0.05em;
  bottom: -0.3em;
  color: rgb(201 164 93 / 5%);
  font-family: var(--serif);
  font-size: min(40vw, 530px);
  line-height: 1;
  pointer-events: none;
}

.campaign-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.campaign-hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 6vw, 5.6rem);
  letter-spacing: -0.045em;
}

.campaign-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: #bdb6aa;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.campaign-professional {
  position: relative;
  overflow: hidden;
  border: 1px solid #4b4030;
  background: #15130f;
  aspect-ratio: 3 / 5;
}

.campaign-professional img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 48%;
}

.campaign-professional > div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  background: rgb(6 6 6 / 86%);
  border-left: 2px solid var(--gold);
  padding: 14px 16px;
}

.campaign-professional span {
  color: #b7afa2;
  font-size: 0.76rem;
}

.campaign-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
  margin-bottom: 38px;
}

.campaign-section h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
}

.campaign-section p,
.campaign-section li {
  color: #b8b1a6;
}

.campaign-checklist {
  border: 1px solid #40382d;
  background: #11100e;
  padding: clamp(26px, 4vw, 42px);
}

.campaign-checklist h3 {
  font-size: 1.55rem;
}

.campaign-checklist ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.campaign-section-contrast {
  background:
    linear-gradient(115deg, rgb(201 164 93 / 7%), transparent 48%), #11100f;
}

.campaign-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 44px 0 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.campaign-steps article {
  min-height: 250px;
  background: #11100f;
  padding: 32px;
}

.campaign-steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.campaign-steps h3 {
  margin: 32px 0 12px;
  font-size: 1.55rem;
}

.campaign-final {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgb(201 164 93 / 13%), transparent 28rem),
    #070707;
}

.campaign-final h2,
.campaign-final p {
  margin-right: auto;
  margin-left: auto;
}

.campaign-final p {
  max-width: 700px;
}

.campaign-final .eyebrow {
  justify-content: center;
}

.whatsapp-float {
  border-color: rgb(255 255 255 / 22%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 36%);
}

.privacy-notice {
  position: fixed;
  right: 18px;
  bottom: 82px;
  left: 18px;
  z-index: 89;
  width: min(calc(100% - 36px), 820px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid #4a4031;
  background: rgb(15 14 12 / 97%);
  box-shadow: 0 18px 60px rgb(0 0 0 / 55%);
  padding: 16px 18px;
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice p {
  margin: 0;
  color: #bcb5a9;
  font-size: 0.78rem;
}

.privacy-notice a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.privacy-actions .button {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.72rem;
}

.privacy-reject {
  border: 0;
  background: transparent;
  color: #ccc5b9;
  cursor: pointer;
  padding: 8px;
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .profile-feature,
  .campaign-hero-grid,
  .campaign-copy-grid {
    grid-template-columns: 1fr;
  }

  .profile-feature .office-portrait,
  .campaign-professional {
    width: min(100%, 570px);
  }

  .campaign-professional {
    max-height: 660px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-image {
    width: min(68vw, 235px);
    height: 52px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 78px;
  }

  .hero h1,
  .campaign-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .profile-feature {
    gap: 40px;
  }

  .profile-feature .office-portrait,
  .campaign-professional {
    width: 100%;
    max-height: 550px;
  }

  .campaign-section {
    padding-inline: 20px;
  }

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

  .campaign-whatsapp,
  .area-whatsapp {
    width: 100%;
  }

  .faq-item summary {
    padding: 18px;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    aspect-ratio: 1;
    justify-content: center;
    border-color: rgb(255 255 255 / 24%);
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .privacy-notice {
    bottom: 76px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .privacy-actions {
    flex-wrap: wrap;
  }
}

/* Ajustes de identidade e conversão — versão 2.3 */
.header-inner {
  min-height: 104px;
}

.brand-header {
  width: clamp(340px, 34vw, 450px);
  height: 76px;
}

.site-footer .brand-footer {
  width: min(100%, 360px);
  height: 64px;
  border: 0;
  background: transparent;
}

.desktop-nav,
.desktop-nav .menu {
  gap: 20px;
}

.section-gray {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgb(201 164 93 / 14%),
      transparent 28rem
    ),
    #d8d6d0;
  color: #171615;
}

.section-gray .eyebrow,
.section-gray .step-number,
.section-gray .text-link {
  color: #815f25;
}

.section-gray .section-heading p,
.section-gray .step p,
.section-gray .split-copy > p {
  color: #55514b;
}

.section-gray .area-grid {
  background: #bdb9b0;
  border-color: #bdb9b0;
}

.section-gray .area-card {
  background: #f0efeb;
  color: #171615;
}

.section-gray .area-card:hover {
  background: #fbfaf6;
  box-shadow: 0 22px 58px rgb(28 25 19 / 18%);
}

.section-gray .area-card p {
  color: #5b5750;
}

.section-gray .area-icon {
  border-color: #aa8648;
  color: #815f25;
}

.section-gray .step {
  border-top-color: #aaa69e;
}

.campaign-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.campaign-highlights span {
  border: 1px solid rgb(201 164 93 / 42%);
  background: rgb(255 255 255 / 3%);
  color: #d4cec3;
  padding: 9px 12px;
  font-size: 0.74rem;
}

.campaign-section-light {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgb(201 164 93 / 16%),
      transparent 25rem
    ),
    #d8d6d0;
  color: #171615;
}

.campaign-section-light .eyebrow {
  color: #815f25;
}

.campaign-section-light p,
.campaign-section-light li {
  color: #504c46;
}

.campaign-section-light .campaign-checklist {
  border-color: #b8a984;
  background: #efede7;
  color: #171615;
}

.campaign-section-light .button-gold {
  border-color: #9b7536;
  background: #9b7536;
  color: white;
}

.campaign-section-light .button-gold:hover {
  border-color: #171615;
  background: #171615;
  color: white;
}

.campaign-section-dark {
  background:
    linear-gradient(115deg, rgb(201 164 93 / 7%), transparent 48%), #0b0b0a;
  color: var(--ink);
}

.campaign-section-dark .campaign-checklist {
  background: #171511;
}

.campaign-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 44px 0 38px;
  background: #b8b3a9;
  border: 1px solid #b8b3a9;
}

.campaign-service-grid article {
  min-height: 220px;
  background: #efede7;
  padding: 30px;
}

.campaign-service-grid h3 {
  margin-bottom: 14px;
  color: #171615;
  font-size: 1.45rem;
}

.campaign-service-grid p {
  margin: 0;
  color: #56514a;
  font-size: 0.9rem;
}

.article-card {
  background: #11110f;
}

.section-gray .article-card {
  background: #efede7;
}

/* Remove seletores automáticos de idioma exibidos por plugins no rodapé. */
.gtranslate_wrapper,
.gt_switcher_wrapper,
.gt_float_switcher,
.goog-te-gadget,
.trp-language-switcher-container,
.trp-language-switcher,
.trp-translatepress-language,
.trp-ls-shortcode-current-language,
.trp-ls-shortcode-language,
#trp-floater-ls,
[id^="trp-floater-ls"],
#trp_ald_modal_popup,
.trp_ald_ls_container,
#google_language_translator,
.goog-te-banner-frame,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 1120px) {
  .brand-header {
    width: 340px;
    height: 64px;
  }

  .header-inner {
    min-height: 90px;
  }
}

@media (max-width: 820px) {
  .brand-header {
    width: min(68vw, 280px);
    height: 54px;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-footer .brand-footer {
    width: min(100%, 280px);
    height: 54px;
  }
}

@media (max-width: 760px) {
  .campaign-service-grid {
    grid-template-columns: 1fr;
  }

  .campaign-highlights {
    display: grid;
  }
}

/* Campanha e páginas internas — versão 2.4 */
.page-content-section {
  border-bottom: 1px solid #b9b5ac;
  background:
    radial-gradient(circle at 92% 4%, rgb(201 164 93 / 12%), transparent 22rem),
    #d8d6d0;
  color: #171615;
}

.page-content-section .prose h2,
.page-content-section .prose h3 {
  color: #171615;
}

.page-content-section .prose h2:not(:first-child) {
  margin-top: 56px;
  border-top: 1px solid #b7b2a8;
  padding-top: 38px;
}

.page-content-section .prose p,
.page-content-section .prose li {
  color: #504c46;
}

.page-content-section .prose a:not(.button),
.page-content-section .text-link {
  color: #79591f;
}

.page-content-section .topic-list {
  background: #bbb7ae;
  border-color: #bbb7ae;
}

.page-content-section .topic {
  border-color: #c2bba9;
  background: #f1f0ec;
  color: #171615;
}

.page-content-section .info-box {
  border-color: #4a4030;
  background:
    linear-gradient(135deg, rgb(201 164 93 / 8%), transparent 60%), #0c0c0b;
  color: #f4f0e8;
  box-shadow: 0 18px 50px rgb(32 28 20 / 14%);
}

.page-content-section .info-box p {
  color: #bcb5aa;
}

.page-content-section .area-grid {
  background: #a9a49a;
  border-color: #a9a49a;
}

.page-content-section .area-card,
.page-content-section .article-card,
.page-content-section .campaign-card {
  background: #11110f;
  color: #f4f0e8;
}

.page-content-section .area-card:hover,
.page-content-section .article-card:hover,
.page-content-section .campaign-card:hover {
  background: #1b1814;
}

.page-content-section .area-card p,
.page-content-section .article-card p,
.page-content-section .campaign-card p {
  color: #aaa398;
}

.page-content-section .area-card .text-link,
.page-content-section .article-card .text-link,
.page-content-section .campaign-card .text-link {
  color: #d6b46f;
}

.page-content-section .contact-item,
.page-content-section .contact-form {
  border-color: #b8b2a7;
  background: #efede7;
  color: #171615;
}

.page-content-section .contact-item small,
.page-content-section .form-note,
.page-content-section .privacy-check {
  color: #5d5952;
}

.page-content-section .contact-form input,
.page-content-section .contact-form textarea,
.page-content-section .contact-form select {
  border-color: #aaa398;
  background: #fbfaf6;
  color: #171615;
}

.page-content-section .contact-form select option {
  background: #fbfaf6;
}

.page-content-section .pagination .page-numbers {
  border-color: #aaa398;
  color: #171615;
}

.page-content-section .pagination .current {
  border-color: #171615;
  background: #171615;
  color: #fff;
}

#reajuste-plano-saude,
#negativa-plano-saude {
  scroll-margin-top: 125px;
}

.campaign-section {
  padding: clamp(64px, 7vw, 96px) 20px;
}

.campaign-hero {
  background:
    radial-gradient(circle at 82% 24%, rgb(201 164 93 / 9%), transparent 20rem),
    linear-gradient(120deg, #050505, #100e0b);
}

.campaign-hero::after {
  right: 2%;
  bottom: -0.12em;
  color: rgb(201 164 93 / 3.5%);
  font-size: min(28vw, 360px);
}

.campaign-hero h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.2vw, 4.8rem);
}

.campaign-lead {
  max-width: 660px;
  margin-bottom: 26px;
}

.campaign-primary-cta {
  width: min(100%, 650px);
  margin-bottom: 28px;
  border: 1px solid #3f382e;
  border-left: 2px solid var(--gold);
  background: #050505;
  padding: 16px;
}

.campaign-primary-cta .campaign-whatsapp {
  border-color: var(--gold);
  background: #0b0b0a;
  color: #fff;
}

.campaign-primary-cta .campaign-whatsapp:hover {
  background: var(--gold);
  color: #111;
}

.health-campaign .campaign-whatsapp {
  border-color: #219966;
  background: #167c55;
  box-shadow: 0 10px 28px rgb(22 124 85 / 22%);
  color: #fff;
}

.health-campaign .campaign-whatsapp:hover {
  border-color: #32ad7a;
  background: #1c9163;
  color: #fff;
  transform: translateY(-1px);
}

.inventory-campaign .campaign-whatsapp {
  border-color: #219966;
  background: #167c55;
  box-shadow: 0 10px 28px rgb(22 124 85 / 22%);
  color: #fff;
}

.inventory-campaign .campaign-whatsapp:hover {
  border-color: #32ad7a;
  background: #1c9163;
  color: #fff;
  transform: translateY(-1px);
}

.button-whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.campaign-primary-cta p {
  margin: 10px 2px 0;
  color: #aaa398;
  font-size: 0.76rem;
  line-height: 1.5;
}

.campaign-highlights {
  margin-top: 0;
}

.campaign-professional > div {
  gap: 3px;
}

.campaign-professional span:last-child {
  margin-top: 3px;
  line-height: 1.4;
}

.campaign-choice-section {
  border-top: 1px solid #b9b5ac;
  border-bottom: 1px solid #b9b5ac;
  background: #d8d6d0;
  padding: 34px 20px;
}

.campaign-choice-section .eyebrow {
  margin-bottom: 18px;
  color: #79591f;
}

.campaign-choice-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 310px));
  gap: 12px;
}

.campaign-choice-buttons a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9b7536;
  background: #11110f;
  color: #fff;
  padding: 12px 18px;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.campaign-choice-buttons a:hover {
  background: #9b7536;
  color: #fff;
}

.campaign-section h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.65rem);
}

.campaign-search-title {
  max-width: 720px;
  margin: -4px 0 20px;
  color: #79591f;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.3;
}

.campaign-section-light {
  background:
    radial-gradient(circle at 92% 10%, rgb(201 164 93 / 8%), transparent 18rem),
    #d8d6d0;
}

.campaign-section-dark {
  background:
    linear-gradient(115deg, rgb(201 164 93 / 4%), transparent 42%), #0b0b0a;
}

.campaign-copy-grid {
  gap: clamp(38px, 6vw, 82px);
  margin-bottom: 30px;
}

.campaign-service-grid {
  margin: 36px 0 0;
}

.campaign-service-grid article {
  min-height: 190px;
  padding: 26px;
}

.campaign-service-grid h3 {
  font-size: 1.3rem;
}

.campaign-steps {
  margin-bottom: 0;
}

.campaign-steps article {
  min-height: 215px;
}

@media (max-width: 760px) {
  .page-content-section {
    background:
      radial-gradient(
        circle at 100% 0%,
        rgb(201 164 93 / 10%),
        transparent 14rem
      ),
      #d8d6d0;
  }

  .page-content-section .prose h2:not(:first-child) {
    margin-top: 42px;
    padding-top: 30px;
  }

  #reajuste-plano-saude,
  #negativa-plano-saude {
    scroll-margin-top: 88px;
  }

  .campaign-section {
    padding: 52px 18px;
  }

  .campaign-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    letter-spacing: -0.035em;
  }

  .campaign-lead {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .campaign-primary-cta {
    padding: 13px;
  }

  .campaign-primary-cta .campaign-whatsapp {
    width: 100%;
  }

  .campaign-highlights {
    gap: 7px;
  }

  .campaign-highlights span {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .campaign-professional {
    max-height: 470px;
    aspect-ratio: 4 / 5;
  }

  .campaign-choice-section {
    padding: 28px 18px;
  }

  .campaign-choice-buttons {
    grid-template-columns: 1fr;
  }

  .campaign-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .campaign-search-title {
    margin-top: -2px;
    font-size: 1.18rem;
  }

  .campaign-copy-grid {
    gap: 28px;
    margin-bottom: 24px;
  }

  .campaign-checklist {
    padding: 24px 22px;
  }

  .campaign-service-grid {
    margin-top: 28px;
  }

  .campaign-service-grid article,
  .campaign-steps article {
    min-height: auto;
    padding: 24px 22px;
  }

  .campaign-steps h3 {
    margin-top: 18px;
  }
}

/* Campanha de inventário — versão 2.5 */
#inventario-extrajudicial,
#inventario-judicial,
#documentos-inventario {
  scroll-margin-top: 125px;
}

.inventory-hero {
  background:
    radial-gradient(
      circle at 82% 24%,
      rgb(201 164 93 / 11%),
      transparent 21rem
    ),
    linear-gradient(120deg, #050505, #100e0b);
}

.inventory-hero::after {
  content: "§";
  right: 3%;
  bottom: -0.22em;
  color: rgb(201 164 93 / 4.5%);
  font-size: min(32vw, 420px);
}

.inventory-hero h1 {
  max-width: 760px;
}

.inventory-choice-buttons {
  grid-template-columns: repeat(3, minmax(0, 260px));
}

.inventory-campaign .campaign-section-dark .campaign-search-title {
  color: var(--gold);
}

.inventory-deadline-note {
  max-width: 690px;
  margin-top: 28px;
  border-left: 2px solid #9b7536;
  background: rgb(255 255 255 / 38%);
  padding: 18px 20px;
}

.inventory-deadline-note strong {
  display: block;
  margin-bottom: 6px;
  color: #171615;
  font-size: 0.96rem;
}

.inventory-deadline-note p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .inventory-choice-buttons {
    grid-template-columns: repeat(2, minmax(0, 310px));
  }
}

@media (max-width: 760px) {
  #inventario-extrajudicial,
  #inventario-judicial,
  #documentos-inventario {
    scroll-margin-top: 88px;
  }

  .inventory-choice-buttons {
    grid-template-columns: 1fr;
  }

  .inventory-hero::after {
    right: -2%;
    font-size: 74vw;
  }

  .inventory-deadline-note {
    margin-top: 22px;
    padding: 16px 18px;
  }
}

/* Contraste e chamada de plano de saúde — versão 2.6 */
.page-content-section .area-card h3,
.page-content-section .article-card h2,
.page-content-section .article-card h3,
.page-content-section .campaign-card h3 {
  color: #f7f3ea;
}

.page-content-section .area-card p,
.page-content-section .article-card p,
.page-content-section .campaign-card p {
  color: #c9c2b7;
}

.page-content-section .area-card .text-link,
.page-content-section .article-card .text-link,
.page-content-section .campaign-card .text-link {
  color: #e1bb6a;
}

.page-content-section .faq-item {
  border-color: #49453e;
  background: #11110f;
}

.page-content-section .faq-item summary {
  color: #f7f3ea;
}

.page-content-section .faq-answer {
  border-top-color: #393630;
}

.page-content-section .faq-answer p {
  color: #c9c2b7;
}

.health-campaign-teaser {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  margin: 56px 0;
  border: 1px solid #58482f;
  background:
    radial-gradient(
      circle at 86% 20%,
      rgb(201 164 93 / 17%),
      transparent 18rem
    ),
    linear-gradient(125deg, #0a0a09 0%, #12110e 68%, #19140c 100%);
  box-shadow: 0 22px 55px rgb(27 23 17 / 18%);
}

.health-campaign-teaser::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(225 187 106 / 18%);
  border-radius: 50%;
  content: "";
}

.health-teaser-copy {
  padding: clamp(34px, 5vw, 58px);
}

.page-content-section .prose .health-teaser-eyebrow {
  margin: 0 0 12px;
  color: #e1bb6a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-content-section .prose .health-campaign-teaser h2 {
  max-width: 650px;
  margin: 0 0 18px;
  border: 0;
  padding: 0;
  color: #f7f3ea;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.page-content-section
  .prose
  .health-campaign-teaser
  p:not(.health-teaser-eyebrow) {
  max-width: 670px;
  margin-bottom: 24px;
  color: #c9c2b7;
}

.health-teaser-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.health-teaser-topics span {
  border: 1px solid #524735;
  background: rgb(255 255 255 / 3%);
  color: #e5dfd5;
  padding: 7px 10px;
  font-size: 0.72rem;
}

.health-campaign-teaser .button {
  min-height: 50px;
}

.health-teaser-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #493d2c;
  background: rgb(0 0 0 / 18%);
  color: #f7f3ea;
  padding: 34px;
  text-align: center;
}

.health-teaser-symbol {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #9d7c43;
  color: #e1bb6a;
  font-family: var(--serif);
  font-size: 2rem;
}

.health-teaser-aside strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.health-teaser-aside > span:last-child {
  margin-top: 5px;
  color: #bdb5a9;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

@media (max-width: 760px) {
  .page-content-section .area-card,
  .page-content-section .campaign-card,
  .page-content-section .faq-item {
    background: #10100f;
  }

  .page-content-section .area-card h3,
  .page-content-section .campaign-card h3 {
    color: #fbf7ef;
  }

  .page-content-section .area-card p,
  .page-content-section .campaign-card p,
  .page-content-section .faq-answer p {
    color: #d0c9be;
  }

  .health-campaign-teaser {
    grid-template-columns: 1fr;
    margin: 42px 0;
  }

  .health-teaser-copy {
    padding: 30px 26px 32px;
  }

  .page-content-section .prose .health-campaign-teaser h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .health-teaser-topics {
    margin-bottom: 26px;
  }

  .health-campaign-teaser .button {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .health-teaser-aside {
    min-height: 128px;
    flex-direction: row;
    gap: 16px;
    border-top: 1px solid #493d2c;
    border-left: 0;
    padding: 22px 26px;
    text-align: left;
  }

  .health-teaser-symbol {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    margin: 0;
    font-size: 1.5rem;
  }

  .health-teaser-aside strong {
    font-size: 1.2rem;
  }

  .health-teaser-aside > span:last-child {
    display: none;
  }
}

/* Carrossel de áreas da página inicial — versão 2.7 */
.home-areas-section {
  overflow: hidden;
}

.home-areas-section .section-heading {
  margin-bottom: 34px;
}

.areas-carousel {
  position: relative;
}

.areas-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.areas-carousel-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #55514b;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.areas-carousel-hint span {
  color: #815f25;
}

.areas-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.areas-carousel-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #675333;
  border-radius: 0;
  background: #11110f;
  color: #e1bb6a;
  cursor: pointer;
  font-size: 1.05rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.areas-carousel-button:hover:not(:disabled) {
  border-color: #b98f49;
  background: #201b13;
  color: #f2d38d;
}

.areas-carousel-button:disabled {
  cursor: default;
  opacity: 0.34;
}

.areas-carousel-viewport {
  overflow-x: auto;
  padding-block: 9px 20px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.areas-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.areas-carousel-track {
  display: flex;
  gap: 18px;
}

.home-areas-section .areas-carousel-slide {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  min-height: 350px;
  border: 1px solid #443b2d;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgb(201 164 93 / 12%),
      transparent 13rem
    ),
    linear-gradient(145deg, #11110f 0%, #0b0b0a 100%);
  color: #f7f3ea;
  box-shadow: 0 16px 36px rgb(31 27 20 / 13%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-areas-section .areas-carousel-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background: #d4ac5d;
  content: "";
}

.home-areas-section .areas-carousel-slide:hover {
  border-color: #806536;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgb(201 164 93 / 17%),
      transparent 13rem
    ),
    linear-gradient(145deg, #191711 0%, #10100e 100%);
  box-shadow: 0 22px 48px rgb(31 27 20 / 21%);
}

.area-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.home-areas-section .areas-carousel-slide .area-icon {
  border-color: #765e36;
  color: #e1bb6a;
}

.area-card-index {
  color: #8b795b;
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.home-areas-section .areas-carousel-slide h3 {
  color: #fbf7ef;
}

.home-areas-section .areas-carousel-slide p {
  color: #c9c2b7;
}

.home-areas-section .areas-carousel-slide .text-link {
  color: #e1bb6a;
}

.areas-carousel-pagination {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-top: 6px;
}

.areas-carousel-dot {
  position: relative;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.areas-carousel-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8d877d;
  content: "";
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.areas-carousel-dot[aria-current="true"]::before {
  width: 20px;
  background: #815f25;
}

.areas-carousel.is-static .areas-carousel-controls,
.areas-carousel.is-static .areas-carousel-pagination,
.areas-carousel.is-static .areas-carousel-hint {
  display: none;
}

/* Carrossel das páginas em destaque — plano de saúde e inventário */
.campaign-feature-carousel {
  margin-top: 34px;
}

.campaign-feature-carousel .areas-carousel-hint {
  color: #c9c2b7;
}

.campaign-feature-carousel .areas-carousel-viewport {
  padding-block: 8px 20px;
}

.campaign-feature-carousel .areas-carousel-track {
  align-items: stretch;
}

.campaign-feature-slide {
  min-width: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.campaign-feature-slide .health-campaign-teaser {
  height: 100%;
  margin: 0;
}

.campaign-feature-slide .health-teaser-symbol .area-icon-svg {
  width: 31px;
  height: 31px;
}

.campaign-feature-carousel .areas-carousel-dot::before {
  background: #756f65;
}

.campaign-feature-carousel .areas-carousel-dot[aria-current="true"]::before {
  background: #d4ac5d;
}

@media (max-width: 1040px) {
  .home-areas-section .areas-carousel-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .home-areas-section .section-heading {
    margin-bottom: 26px;
  }

  .areas-carousel-toolbar {
    margin-bottom: 8px;
  }

  .areas-carousel-hint {
    max-width: 190px;
    font-size: 0.73rem;
    line-height: 1.35;
  }

  .areas-carousel-hint span:first-child {
    display: none;
  }

  .areas-carousel-button {
    width: 43px;
    height: 43px;
  }

  .areas-carousel-track {
    gap: 14px;
  }

  .home-areas-section .areas-carousel-slide {
    flex-basis: 88%;
    min-height: 335px;
    padding: 28px;
  }

  .home-areas-section .areas-carousel-slide h3 {
    font-size: 1.55rem;
  }

  .home-areas-section .areas-carousel-slide p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .areas-carousel-pagination {
    margin-top: 0;
  }

  .campaign-feature-carousel {
    margin-top: 26px;
  }

  .campaign-feature-carousel .areas-carousel-hint {
    max-width: 220px;
  }

  .campaign-feature-slide .health-campaign-teaser {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .areas-carousel-viewport {
    scroll-behavior: auto;
  }
}

/* Conteúdos selecionados — versão 2.7.2 */
.article-grid.article-grid-curated {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-content-section .article-card-inventory {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgb(201 164 93 / 15%),
      transparent 15rem
    ),
    #11110f;
}

@media (max-width: 820px) {
  .article-grid.article-grid-curated {
    grid-template-columns: 1fr;
  }
}

/* Ícones das áreas de atuação — versão 2.7.3 */
.area-icon,
.section-gray .area-icon,
.home-areas-section .areas-carousel-slide .area-icon {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgb(201 164 93 / 8%);
  color: #d7ad5c;
}

.section-gray .area-icon {
  background: rgb(129 95 37 / 9%);
  color: #815f25;
}

.home-areas-section .areas-carousel-slide .area-icon {
  background: rgb(201 164 93 / 9%);
  color: #e1bb6a;
}

.area-icon .area-icon-svg {
  width: 21px;
  height: 21px;
}

/* Landing page de inventário — legibilidade e conversão, versão 2.8 */
.inventory-campaign .campaign-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.inventory-campaign .campaign-section-inner {
  position: relative;
  z-index: 2;
}

.inventory-hero {
  background:
    radial-gradient(circle at 94% 18%, rgb(201 164 93 / 7%), transparent 16rem),
    linear-gradient(120deg, #050505, #100e0b);
}

.inventory-hero::after {
  right: -1%;
  bottom: -0.16em;
  color: rgb(201 164 93 / 3.2%);
  font-size: min(24vw, 315px);
}

.inventory-campaign .campaign-section-light {
  background:
    radial-gradient(
      circle at 102% -4%,
      rgb(201 164 93 / 6%),
      transparent 13rem
    ),
    #d8d6d0;
}

.inventory-campaign .campaign-section-dark {
  background:
    radial-gradient(
      circle at 102% 1%,
      rgb(201 164 93 / 4.5%),
      transparent 12rem
    ),
    #0b0b0a;
}

.inventory-campaign .inventory-faq-section {
  background:
    radial-gradient(
      circle at 100% 100%,
      rgb(201 164 93 / 4%),
      transparent 11rem
    ),
    #0b0b0a;
}

.inventory-campaign .inventory-final-section {
  background:
    radial-gradient(circle at 50% 0%, rgb(201 164 93 / 8%), transparent 18rem),
    #070707;
}

.inventory-campaign .inventory-hero {
  padding-top: calc(clamp(64px, 7vw, 96px) - 15px);
}

.inventory-campaign .campaign-section p,
.inventory-campaign .campaign-section li {
  font-size: 1rem;
  line-height: 1.62;
}

.inventory-campaign .campaign-lead {
  color: #d2ccc1;
  margin-bottom: 30px;
}

.inventory-campaign .campaign-primary-cta > p {
  color: #d0c9be;
  font-size: 0.88rem;
}

.inventory-campaign .campaign-primary-cta {
  margin-bottom: 0;
  border-left-width: 1px;
}

.inventory-campaign .campaign-whatsapp {
  width: min(100%, 480px);
  min-height: 54px;
  margin-inline: auto;
  padding: 13px 22px;
  text-align: center;
}

.inventory-campaign .campaign-primary-cta .campaign-whatsapp {
  width: 100%;
  min-height: 58px;
}

.inventory-section-cta {
  display: flex;
  justify-content: center;
}

.inventory-professional-wrap {
  width: 100%;
}

.inventory-professional-wrap .campaign-professional {
  width: 100%;
}

.inventory-campaign .campaign-professional > div {
  gap: 5px;
  background: rgb(5 5 5 / 92%);
  padding: 16px 18px;
}

.inventory-campaign .campaign-professional strong {
  color: #fff;
  font-size: 1.05rem;
}

.inventory-campaign .campaign-professional span {
  color: #e3ddd3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.inventory-trust-block {
  margin: 12px 0 0;
  border: 1px solid #4b4030;
  border-left: 1px solid var(--gold);
  background: #11100e;
  padding: 18px;
}

.inventory-campaign .inventory-trust-title {
  margin: 0 0 14px;
  color: #f4f0e8 !important;
  font-family: var(--sans);
  font-size: 1rem !important;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.4 !important;
}

.inventory-trust-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inventory-campaign .inventory-trust-block li {
  position: relative;
  margin: 0;
  color: #d8d2c7;
  padding-left: 14px;
  font-size: 0.86rem !important;
  line-height: 1.45 !important;
}

.inventory-trust-block li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.inventory-campaign .campaign-copy-grid {
  gap: clamp(42px, 6vw, 76px);
}

.inventory-campaign .campaign-checklist {
  position: relative;
  z-index: 2;
}

.inventory-campaign .campaign-checklist h3 {
  margin-bottom: 18px;
  line-height: 1.3;
}

.inventory-campaign .campaign-checklist li {
  margin-bottom: 0;
}

.inventory-campaign .campaign-checklist ul {
  gap: 17px;
}

.inventory-extrajudicial-section .campaign-checklist li,
.inventory-judicial-section .campaign-checklist li {
  max-width: 38ch;
}

.inventory-checklist-note {
  margin: 22px 0 0;
  border-top: 1px solid #c7baa0;
  padding-top: 18px;
  font-size: 0.94rem !important;
}

.inventory-campaign .campaign-section-dark .inventory-checklist-note {
  border-top-color: #493f31;
  color: #d0c9be;
}

.inventory-assets-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inventory-assets-grid article {
  min-height: 136px;
  padding: 22px 24px;
}

.inventory-assets-grid h3 {
  margin-bottom: 10px;
  font-size: 1.52rem;
}

.inventory-assets-grid p {
  line-height: 1.5 !important;
}

.inventory-process-section .campaign-steps article {
  min-height: 190px;
  padding: 28px;
}

.inventory-process-section .campaign-steps h3 {
  margin: 24px 0 15px;
}

.inventory-documents-highlight {
  max-width: 880px;
  margin: 26px 0 0;
  border-left: 2px solid var(--gold);
  background: #11100e;
  color: #f7f3ea !important;
  padding: 18px 20px;
  font-weight: 700;
}

.inventory-documents-panel {
  margin-top: 24px;
  border: 1px solid #b5aa94;
  background: #efede7;
  padding: clamp(24px, 4vw, 40px);
}

.inventory-documents-panel > h3 {
  margin: 26px 0 14px;
  color: #171615;
  font-size: 1.38rem;
}

.inventory-documents-intro {
  max-width: 880px;
  margin: 0;
  color: #4e4a43 !important;
}

.inventory-document-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  background: transparent;
}

.inventory-document-groups > div {
  border: 1px solid #d0c9bd;
  background: #f8f6f1;
  padding: 18px 20px;
}

.inventory-document-groups > div:last-child {
  grid-column: 1 / -1;
}

.inventory-document-groups h4 {
  margin: 0 0 7px;
  color: #0f0e0d;
  font-size: 1.04rem;
  line-height: 1.35;
}

.inventory-document-groups p {
  margin: 0;
  color: #504c46;
  line-height: 1.5 !important;
}

.inventory-campaign .inventory-deadline-note {
  max-width: none;
  border-left-color: #8e6b30;
  background: #e3dfd5;
}

.inventory-campaign .inventory-deadline-note p {
  color: #4f4b45;
  font-size: 0.94rem;
}

.inventory-campaign .faq-list {
  gap: 12px;
  margin-bottom: 0;
}

.inventory-campaign .faq-item {
  border-color: #4a443b;
  background: #11110f;
}

.inventory-campaign .faq-item summary {
  color: #f8f4ec;
  min-height: 72px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.inventory-campaign .faq-symbol {
  min-width: 26px;
  font-size: 1.85rem;
  text-align: center;
}

.inventory-campaign .faq-answer p {
  color: #d4cec3;
  font-size: 1rem;
  line-height: 1.62;
}

.inventory-final-section .campaign-whatsapp {
  display: flex;
  margin-top: 34px;
}

.inventory-campaign .inventory-final-section {
  padding-bottom: clamp(82px, 9vw, 118px);
}

body:has(.inventory-campaign) .site-footer {
  position: relative;
}

@media (max-width: 980px) {
  .inventory-professional-wrap {
    width: min(100%, 570px);
  }
}

@media (max-width: 760px) {
  .inventory-campaign .campaign-section {
    padding: 56px 18px;
  }

  .inventory-campaign .inventory-hero {
    padding-top: 41px;
  }

  .inventory-campaign .campaign-hero-grid {
    gap: 44px;
  }

  .inventory-hero::after {
    display: none;
  }

  .inventory-campaign .campaign-section-light {
    background:
      radial-gradient(
        circle at 108% -4%,
        rgb(201 164 93 / 4%),
        transparent 9rem
      ),
      #d8d6d0;
  }

  .inventory-campaign .campaign-section-dark,
  .inventory-campaign .inventory-faq-section {
    background:
      radial-gradient(
        circle at 108% 0%,
        rgb(201 164 93 / 3%),
        transparent 8rem
      ),
      #0b0b0a;
  }

  .inventory-campaign .campaign-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.65rem);
    line-height: 1.08;
  }

  .inventory-campaign .campaign-lead {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .inventory-campaign .campaign-primary-cta {
    margin-bottom: 0;
    padding: 17px;
  }

  .inventory-campaign .campaign-primary-cta > p {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .inventory-professional-wrap {
    width: 100%;
  }

  .inventory-professional-wrap .campaign-professional {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .inventory-campaign .campaign-professional > div {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px 15px;
  }

  .inventory-campaign .campaign-professional strong,
  .inventory-campaign .campaign-professional span {
    font-size: 1rem;
  }

  .inventory-trust-block {
    margin-top: 10px;
    padding: 17px 16px;
  }

  .inventory-campaign .inventory-trust-title {
    margin-bottom: 15px;
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
  }

  .inventory-trust-block ul {
    gap: 11px;
  }

  .inventory-campaign .inventory-trust-block li {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .inventory-campaign .campaign-copy-grid {
    gap: 32px;
  }

  .inventory-campaign .campaign-section h2 {
    margin-bottom: 22px;
    font-size: clamp(1.95rem, 8.4vw, 2.55rem);
    line-height: 1.12;
  }

  .inventory-campaign .campaign-search-title {
    margin-bottom: 18px;
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .inventory-campaign .campaign-section p,
  .inventory-campaign .campaign-section li,
  .inventory-checklist-note,
  .inventory-campaign .inventory-deadline-note p {
    font-size: 1rem !important;
    line-height: 1.58;
  }

  .inventory-campaign .campaign-checklist {
    padding: 23px 20px;
  }

  .inventory-campaign .campaign-checklist h3 {
    font-size: 1.3rem;
  }

  .inventory-campaign .campaign-checklist ul {
    gap: 17px;
  }

  .inventory-section-cta {
    margin-top: 32px;
  }

  .inventory-campaign .campaign-whatsapp {
    width: 100%;
    min-height: 56px;
    padding: 13px 16px;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .inventory-campaign .campaign-primary-cta .campaign-whatsapp {
    min-height: 60px;
  }

  .inventory-assets-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .inventory-assets-grid article {
    min-height: 0;
    padding: 18px 20px;
  }

  .inventory-assets-grid h3 {
    font-size: 1.3rem;
  }

  .inventory-process-section .campaign-steps {
    gap: 10px;
    margin-top: 30px;
    border: 0;
    background: transparent;
  }

  .inventory-process-section .campaign-steps article {
    min-height: 0;
    border: 1px solid #40382d;
    padding: 24px 21px;
  }

  .inventory-process-section .campaign-steps h3 {
    margin: 16px 0 13px;
    font-size: 1.28rem;
  }

  .inventory-documents-highlight {
    margin-top: 24px;
    padding: 17px;
  }

  .inventory-documents-panel {
    margin-top: 18px;
    padding: 20px 17px;
  }

  .inventory-documents-panel > h3 {
    margin: 24px 0 13px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .inventory-document-groups {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inventory-document-groups > div:last-child {
    grid-column: auto;
  }

  .inventory-document-groups > div {
    padding: 17px;
  }

  .inventory-document-groups h4 {
    font-size: 1.08rem;
  }

  .inventory-campaign .inventory-deadline-note {
    margin-top: 20px;
    padding: 17px;
  }

  .inventory-campaign .faq-list {
    margin-top: 28px;
  }

  .inventory-campaign .faq-item summary,
  .inventory-campaign .faq-answer {
    padding: 20px 18px;
  }

  .inventory-campaign .faq-item summary {
    gap: 14px;
    min-height: 78px;
    font-size: 1.08rem;
    line-height: 1.48;
  }

  .inventory-campaign .faq-answer p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .inventory-campaign .faq-symbol {
    min-width: 28px;
    font-size: 2rem;
  }

  .inventory-final-section {
    padding-bottom: 84px !important;
  }

  .inventory-final-section .campaign-whatsapp {
    margin-top: 36px;
  }

  body:has(.inventory-campaign) .site-footer {
    padding-bottom: 88px;
  }

  body:has(.inventory-campaign) .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}

/* Qualificação e acessibilidade da campanha de inventário — versão 2.9.8 */
.inventory-campaign .inventory-hero {
  background: #070706;
}

.inventory-campaign .inventory-hero::after {
  right: -7%;
  bottom: -0.2em;
  z-index: 0;
  color: rgb(201 164 93 / 2.8%);
  font-size: min(20vw, 280px);
}

.inventory-campaign .campaign-hero-grid {
  align-items: start;
}

.inventory-campaign .inventory-hero-copy {
  position: relative;
  z-index: 2;
  background: #070706;
}

.inventory-campaign .inventory-hero-copy h1 {
  color: #faf7f0;
}

.inventory-campaign .inventory-hero-copy .campaign-lead {
  color: #ddd7cd;
  font-size: max(1rem, 16px);
  line-height: 1.62;
}

.inventory-campaign .inventory-hero-qualifier {
  width: min(100%, 780px);
  border-color: #463c2e;
  border-left-color: #b98e44;
  background: #0a0a09;
  padding: clamp(18px, 2.2vw, 24px);
}

.inventory-campaign .inventory-hero-question {
  margin: 0 0 17px;
  color: #f7f3eb !important;
  font-family: var(--sans);
  font-size: 1.18rem !important;
  font-weight: 750;
  line-height: 1.5 !important;
}

.inventory-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inventory-hero-actions > .campaign-whatsapp:last-child {
  grid-column: 1 / -1;
}

.inventory-campaign .inventory-hero-actions .campaign-whatsapp {
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 12px 16px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.inventory-campaign .inventory-hero-secondary {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.inventory-campaign .inventory-hero-secondary .campaign-whatsapp {
  width: auto;
  min-height: 44px;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #8fd2b5;
  padding: 8px 10px;
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgb(143 210 181 / 55%);
  text-underline-offset: 4px;
}

.inventory-campaign .inventory-hero-secondary .campaign-whatsapp:hover,
.inventory-campaign .inventory-hero-secondary .campaign-whatsapp:focus-visible {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #b0e6cd;
  transform: none;
}

.inventory-campaign .inventory-hero-direct {
  margin: 15px 0 0;
  color: #ddd7cd !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  text-align: center;
}

.inventory-campaign .inventory-hero-privacy {
  display: block;
  margin: 8px auto 0;
  color: #aaa398;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.inventory-campaign .inventory-documents-panel
  [data-inventory-documents-content]
  > h3 {
  margin: 26px 0 14px;
  color: #171615;
  font-size: 1.38rem;
}

.inventory-documents-toggle[hidden],
.inventory-campaign [data-inventory-documents-content][hidden] {
  display: none;
}

.inventory-documents-toggle {
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #8e6b30;
  background: #11100e;
  color: #f7f3ea;
  cursor: pointer;
  padding: 14px 16px;
  font: 750 1rem/1.4 var(--sans);
  text-align: left;
}

.inventory-documents-toggle:focus-visible {
  outline: 3px solid #167c55;
  outline-offset: 3px;
}

.inventory-documents-toggle-symbol {
  color: #e1b761;
  font-size: 1.5rem;
  line-height: 1;
}

.inventory-campaign .inventory-final-section {
  background: #070707;
}

.inventory-campaign .inventory-final-section h2 {
  color: #faf7f0;
}

.inventory-campaign .inventory-final-section p:not(.eyebrow) {
  color: #d8d2c7;
}

body:has(.inventory-campaign) .footer-grid > * {
  min-width: 0;
}

body:has(.inventory-campaign) .footer-links a {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .inventory-campaign .inventory-hero {
    padding-top: 41px;
    background: #070706;
  }

  .inventory-campaign .campaign-hero-grid {
    gap: 35px;
  }

  .inventory-campaign .inventory-hero-copy {
    width: 100%;
  }

  .inventory-campaign .inventory-hero-copy .campaign-lead {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .inventory-campaign .inventory-hero-qualifier {
    padding: 17px 15px;
  }

  .inventory-campaign .inventory-hero-question {
    margin-bottom: 15px;
    font-size: 1.14rem !important;
  }

  .inventory-hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inventory-hero-actions > .campaign-whatsapp:last-child {
    grid-column: auto;
  }

  .inventory-campaign .inventory-hero-actions .campaign-whatsapp {
    min-height: 52px;
    font-size: 0.96rem;
  }

  .inventory-campaign .inventory-hero-secondary .campaign-whatsapp {
    width: 100%;
    min-height: 48px;
    font-size: 0.94rem;
  }

  .inventory-campaign .inventory-hero-direct {
    margin-top: 14px;
    font-size: 1rem !important;
  }

  .inventory-campaign .inventory-hero-privacy {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .inventory-professional-wrap .campaign-professional {
    aspect-ratio: 1 / 1;
  }

  .inventory-professional-wrap .campaign-professional img {
    object-fit: cover;
    object-position: 76% 40%;
  }

  .inventory-campaign .campaign-professional > div {
    padding-right: 58px;
  }

  .inventory-campaign .inventory-trust-block {
    padding-right: 58px;
  }

  .inventory-documents-panel {
    padding: 16px;
  }

  .inventory-documents-toggle:not([hidden]) {
    display: flex;
  }

  .inventory-campaign
    .inventory-documents-panel
    [data-inventory-documents-content] {
    margin-top: 20px;
  }

  .inventory-campaign
    .inventory-documents-panel
    [data-inventory-documents-content]
    > h3 {
    margin: 24px 0 13px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .inventory-campaign .inventory-final-section {
    background: #070707;
  }
}

/* Contraste das superfícies escuras da página de inventário — versão 2.9.9 */
.inventory-campaign .inventory-hero h1,
.inventory-campaign .inventory-hero .inventory-hero-question,
.inventory-campaign .inventory-trust-block .inventory-trust-title,
.inventory-campaign .campaign-section-dark h2,
.inventory-campaign
  .campaign-section-dark
  h3:not(.campaign-search-title),
.inventory-campaign .inventory-faq-section .faq-item summary,
.inventory-campaign .inventory-final-section h2 {
  color: #f3efe6 !important;
}

.inventory-campaign .inventory-hero .campaign-lead,
.inventory-campaign .inventory-hero .inventory-hero-direct,
.inventory-campaign .inventory-hero .inventory-hero-privacy,
.inventory-campaign .inventory-trust-block li,
.inventory-campaign .campaign-section-dark p:not(.eyebrow),
.inventory-campaign .campaign-section-dark li,
.inventory-campaign .inventory-faq-section .faq-answer p,
.inventory-campaign .inventory-final-section p:not(.eyebrow),
.inventory-campaign .inventory-documents-highlight {
  color: #c8c3ba !important;
}

/* Reajuste e negativa de plano de saúde — versão 2.8.1 */
.health-campaign .campaign-hero {
  padding-top: calc(clamp(64px, 7vw, 96px) - 15px);
}

.health-campaign .campaign-hero h1 {
  margin-bottom: 28px;
}

.health-campaign .campaign-hero .campaign-lead {
  max-width: 620px;
  margin-bottom: 30px;
}

.health-campaign .campaign-primary-cta {
  margin-bottom: 0;
  border-left-width: 1px;
}

.health-campaign .campaign-primary-cta > p {
  margin-top: 14px;
}

.health-campaign .campaign-primary-cta .campaign-whatsapp {
  min-height: 58px;
}

.health-professional-wrap {
  width: 100%;
}

.health-professional-wrap .campaign-professional {
  width: 100%;
}

.health-campaign .campaign-professional > div {
  gap: 5px;
  background: rgb(5 5 5 / 92%);
  padding: 15px 17px;
}

.health-campaign .campaign-professional strong {
  color: #fff;
  font-size: 1.05rem;
}

.health-campaign .campaign-professional span {
  color: #e3ddd3;
  font-size: 0.92rem;
}

.health-professional-message {
  margin: 12px 0 0;
  border: 1px solid #4b4030;
  border-left: 2px solid var(--gold);
  background: #11100e;
  color: #f1ece3;
  padding: 17px 18px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.health-campaign .health-focus-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid #3f3628;
  background:
    radial-gradient(circle at 96% 5%, rgb(201 164 93 / 7%), transparent 16rem),
    #0b0b0a;
}

.health-campaign .health-denial-section {
  background:
    radial-gradient(circle at 4% 96%, rgb(201 164 93 / 6%), transparent 15rem),
    #090909;
}

.health-campaign .health-focus-section::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: max(20px, calc((100% - var(--max)) / 2));
  width: 86px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.health-campaign .health-focus-section .campaign-section-inner {
  position: relative;
  z-index: 1;
}

.health-campaign .health-focus-section h2 {
  max-width: 780px;
  color: #f8f4ec;
  line-height: 1.08;
}

.health-campaign .health-focus-section p,
.health-campaign .health-focus-section li {
  color: #d2ccc1;
  font-size: 1rem;
  line-height: 1.62;
}

.health-campaign .health-focus-section li::marker {
  color: var(--gold);
}

.health-campaign .health-focus-section .campaign-copy-grid {
  margin-bottom: 38px;
}

.health-campaign .health-focus-section .campaign-checklist {
  border-color: #665638;
  background:
    linear-gradient(135deg, rgb(201 164 93 / 6%), transparent 58%), #080807;
  box-shadow: 0 20px 48px rgb(0 0 0 / 28%);
}

.health-campaign .health-focus-section .campaign-checklist h3 {
  margin-bottom: 18px;
  color: #f4e3bf;
  line-height: 1.3;
}

.health-campaign .health-focus-section .campaign-checklist ul {
  gap: 17px;
}

.health-campaign .health-focus-section .campaign-checklist li {
  max-width: 42ch;
  margin: 0;
}

.health-credibility-note {
  margin: 24px 0 0;
  border-top: 1px solid #51452f;
  padding-top: 19px;
  color: #e0d8cb !important;
  font-size: 0.94rem !important;
}

.health-adjustment-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #4b4030;
  background: #4b4030;
}

.health-adjustment-types article {
  min-height: 164px;
  background:
    linear-gradient(135deg, rgb(201 164 93 / 3%), transparent 65%), #11100e;
  padding: 30px;
}

.health-adjustment-types h3 {
  min-height: 2.6em;
  margin: 0 0 10px;
  color: #e8c981;
  font-size: 1.28rem;
  line-height: 1.3;
}

.health-adjustment-types p {
  margin: 0;
  max-width: 40ch;
  line-height: 1.55;
}

.health-urgency-note {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  margin-inline: auto;
  border: 1px solid #554832;
  border-left: 3px solid var(--gold);
  background:
    linear-gradient(120deg, rgb(201 164 93 / 7%), transparent 58%), #12110f;
  padding: 24px 28px;
}

.health-urgency-note strong {
  color: #efd89f;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.3;
}

.health-urgency-note p {
  margin: 0;
}

.health-urgency-note p + p {
  margin-top: 10px;
  color: #e3dbcf;
  font-weight: 700;
}

.health-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.health-campaign .health-section-cta .campaign-whatsapp {
  width: min(100%, 480px);
  min-height: 54px;
  margin-inline: auto;
  padding: 13px 22px;
  text-align: center;
}

.health-attendance-steps {
  gap: 10px;
  border: 0;
  background: transparent;
}

.health-attendance-steps article {
  min-height: 220px;
  border: 1px solid #40382d;
  padding: 34px;
}

.health-office-section .campaign-checklist {
  padding-block: 34px;
}

.health-documents-intro {
  margin: 16px 0 22px;
  border-left: 2px solid #9b7536;
  padding-left: 16px;
  color: #3f3b35 !important;
  font-weight: 650;
}

.health-office-section .campaign-checklist ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
}

.health-campaign .faq-list {
  gap: 12px;
  margin-top: 30px;
}

.health-campaign .faq-item summary {
  min-height: 72px;
  padding: 22px 23px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.health-campaign .faq-answer {
  padding: 21px 22px;
}

.health-campaign .faq-answer p {
  font-size: 1rem;
  line-height: 1.62;
}

.health-campaign .faq-symbol {
  min-width: 26px;
  font-size: 1.85rem;
  text-align: center;
}

.health-campaign .campaign-final .campaign-whatsapp {
  margin-top: 34px;
}

.health-campaign .campaign-final {
  padding-bottom: clamp(82px, 9vw, 118px);
}

/* Escolha inicial e contraste da campanha de saúde — versão 2.9.7 */
.health-campaign .health-hero-copy {
  min-width: 0;
}

.health-campaign .campaign-hero .campaign-lead {
  border-left: 2px solid #9d7e47;
  background: #0a0a09;
  color: #f2ede4;
  padding: 15px 17px;
}

.health-campaign .campaign-primary-cta {
  width: min(100%, 760px);
}

.health-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.health-campaign .health-hero-actions .campaign-whatsapp {
  width: 100%;
  min-height: 66px;
  justify-content: center;
  padding: 13px 16px;
  font-size: 0.88rem;
  line-height: 1.3;
  text-align: center;
}

.health-campaign .health-situations-section,
.health-campaign .health-office-wrapper {
  background: #d8d6d0;
}

.health-campaign .health-situations-section h2,
.health-campaign .health-situations-section h3,
.health-campaign .health-office-wrapper h2,
.health-campaign .health-office-wrapper h3 {
  color: #171615;
}

.health-campaign .health-situations-section p,
.health-campaign .health-office-wrapper p,
.health-campaign .health-office-wrapper li {
  color: #48443e;
}

.health-campaign .health-office-section > div:first-child {
  border-left: 2px solid #9b7536;
  background: #efede7;
  padding: clamp(25px, 4vw, 36px);
}

.health-campaign .campaign-section-dark,
.health-campaign .health-focus-section,
.health-campaign .health-denial-section,
.health-campaign .campaign-final {
  background: #0b0b0a;
}

.health-campaign .campaign-section-dark h2,
.health-campaign .campaign-section-dark h3,
.health-campaign .campaign-final h2 {
  color: #f8f4ec;
}

.health-campaign .campaign-section-dark p,
.health-campaign .campaign-section-dark li,
.health-campaign .campaign-final p {
  color: #d7d0c5;
}

.health-campaign .health-focus-section .campaign-checklist,
.health-campaign .health-adjustment-types article,
.health-campaign .health-urgency-note,
.health-campaign .health-attendance-steps article {
  background: #11100e;
}

.health-campaign .health-adjustment-types h3 {
  color: #e8c981;
}

.health-campaign .health-adjustment-types p {
  color: #eee8de;
}

/* Plano coletivo com poucas vidas e contraste do topo — versão 2.10.0 */
.health-campaign .campaign-hero {
  isolation: isolate;
  background: #070706;
}

.health-campaign .campaign-hero::before {
  position: absolute;
  z-index: 0;
  top: clamp(54px, 7vw, 104px);
  right: clamp(-240px, -13vw, -135px);
  width: clamp(300px, 34vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgb(201 164 93 / 17%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(201 164 93 / 10%) 0,
    rgb(201 164 93 / 4%) 46%,
    transparent 70%
  );
  content: "";
  pointer-events: none;
}

.health-campaign .campaign-hero::after {
  right: -18%;
  color: rgb(201 164 93 / 2.5%);
}

.health-campaign .campaign-hero-grid,
.health-campaign .health-hero-copy {
  position: relative;
  z-index: 2;
}

.health-campaign .health-hero-copy {
  background: #070706;
}

.health-campaign .health-small-group {
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid #665638;
  border-top: 2px solid var(--gold);
  background:
    linear-gradient(135deg, rgb(201 164 93 / 6%), transparent 54%), #0d0c0a;
  padding: clamp(28px, 4.5vw, 48px);
}

.health-campaign .health-small-group-label {
  margin: 0 0 15px;
  color: #d9b86e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.health-campaign .health-small-group h3 {
  max-width: 780px;
  margin: 0 0 22px;
  color: #f3efe6;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
}

.health-campaign .health-small-group-copy {
  max-width: 970px;
}

.health-campaign .health-small-group-copy p {
  margin-bottom: 16px;
  color: #d2ccc1;
}

.health-campaign .health-small-group h4 {
  margin: 30px 0 18px;
  color: #efd89f;
  font-family: var(--sans);
  font-size: 1.12rem;
  line-height: 1.35;
}

.health-campaign .health-small-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 34px;
  margin: 0;
  padding-left: 21px;
}

.health-campaign .health-small-group li {
  margin: 0;
  color: #d2ccc1;
  line-height: 1.55;
}

.health-campaign .health-small-group-note {
  max-width: 980px;
  margin: 30px 0 0;
  border-left: 2px solid #9b7536;
  background: #11100e;
  color: #ded7cc !important;
  padding: 17px 19px;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.health-campaign .health-small-group-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.health-campaign .health-small-group-cta .campaign-whatsapp {
  width: min(100%, 520px);
  min-height: 56px;
  margin: 0;
  padding: 13px 20px;
  text-align: center;
}

@media (max-width: 760px) {
  .health-campaign .campaign-hero {
    padding: 43px 18px 58px;
  }

  .health-campaign .campaign-hero-grid {
    gap: 42px;
  }

  .health-campaign .campaign-hero h1 {
    margin-bottom: 25px;
    font-size: clamp(2.05rem, 9vw, 2.7rem);
    line-height: 1.08;
  }

  .health-campaign .campaign-hero .campaign-lead {
    margin-bottom: 27px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .health-campaign .campaign-primary-cta {
    padding: 17px;
  }

  .health-hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .health-campaign .campaign-primary-cta > p {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .health-campaign .campaign-primary-cta .campaign-whatsapp {
    min-height: 58px;
  }

  .health-campaign .health-hero-actions .campaign-whatsapp {
    width: 100%;
    min-height: 60px;
    padding: 13px 14px;
    font-size: 0.94rem;
  }

  .health-campaign .campaign-hero::after {
    display: none;
  }

  .health-campaign .campaign-hero::before {
    top: 26px;
    right: -178px;
    width: 230px;
    opacity: 0.65;
  }

  .health-campaign .health-hero-copy {
    width: 100%;
    background: #070706;
  }

  .health-professional-wrap {
    width: 100%;
  }

  .health-professional-wrap .campaign-professional {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .health-campaign .campaign-professional > div {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px 15px;
  }

  .health-campaign .campaign-professional strong,
  .health-campaign .campaign-professional span {
    font-size: 1rem;
  }

  .health-professional-message {
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .health-campaign .health-focus-section {
    padding: 56px 18px;
    background: #0b0b0a;
  }

  .health-campaign .health-denial-section {
    background: #090909;
  }

  .health-campaign .health-focus-section::after {
    left: 18px;
    width: 58px;
  }

  .health-campaign .health-focus-section .eyebrow {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .health-campaign .health-focus-section h2 {
    margin-bottom: 22px;
    font-size: clamp(1.95rem, 8.4vw, 2.5rem);
    line-height: 1.1;
  }

  .health-campaign .health-focus-section p,
  .health-campaign .health-focus-section li {
    font-size: 1rem;
    line-height: 1.62;
  }

  .health-campaign .health-focus-section .campaign-copy-grid {
    gap: 30px;
    margin-bottom: 30px;
  }

  .health-campaign .health-focus-section .campaign-checklist {
    padding: 23px 20px;
  }

  .health-campaign .health-focus-section .campaign-checklist h3 {
    font-size: 1.3rem;
  }

  .health-campaign .health-focus-section .campaign-checklist ul {
    gap: 17px;
  }

  .health-credibility-note {
    margin-top: 22px;
    padding-top: 18px;
    font-size: 1rem !important;
    line-height: 1.58;
  }

  .health-adjustment-types {
    grid-template-columns: 1fr;
  }

  .health-adjustment-types article {
    min-height: 154px;
    padding: 26px 22px;
  }

  .health-adjustment-types h3 {
    min-height: 0;
    font-size: 1.2rem;
  }

  .health-campaign .health-small-group {
    margin-top: 32px;
    padding: 24px 19px;
  }

  .health-campaign .health-small-group-label {
    margin-bottom: 13px;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .health-campaign .health-small-group h3 {
    margin-bottom: 19px;
    font-size: clamp(1.85rem, 8.2vw, 2.25rem);
  }

  .health-campaign .health-small-group-copy p,
  .health-campaign .health-small-group li {
    font-size: 1rem;
    line-height: 1.62;
  }

  .health-campaign .health-small-group h4 {
    margin: 27px 0 17px;
    font-size: 1.08rem;
  }

  .health-campaign .health-small-group ul {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .health-campaign .health-small-group-note {
    margin-top: 26px;
    padding: 16px;
    font-size: 1rem !important;
  }

  .health-campaign .health-small-group-cta {
    margin-top: 26px;
  }

  .health-campaign .health-small-group-cta .campaign-whatsapp {
    width: 100%;
    min-height: 58px;
    padding: 13px 15px;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .health-urgency-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
  }

  .health-urgency-note strong {
    font-size: 1.25rem;
  }

  .health-urgency-note p,
  .health-urgency-note p + p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .health-section-cta {
    margin-top: 30px;
  }

  .health-campaign .health-section-cta .campaign-whatsapp {
    width: 100%;
    min-height: 56px;
    padding: 13px 16px;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .health-attendance-steps {
    gap: 10px;
    margin-top: 30px;
  }

  .health-attendance-steps article {
    min-height: 0;
    padding: 25px 21px;
  }

  .health-attendance-steps h3 {
    margin: 18px 0 10px;
    font-size: 1.28rem;
  }

  .health-attendance-steps p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .health-office-section .campaign-checklist {
    padding: 23px 20px;
  }

  .health-campaign .health-office-section > div:first-child {
    padding: 23px 20px;
  }

  .health-documents-intro {
    margin: 17px 0 22px;
    font-size: 1rem !important;
    line-height: 1.58;
  }

  .health-office-section .campaign-checklist ul {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .health-campaign .faq-item summary,
  .health-campaign .faq-answer {
    padding: 21px 18px;
  }

  .health-campaign .faq-item summary {
    min-height: 78px;
    gap: 14px;
    font-size: 1.08rem;
    line-height: 1.48;
  }

  .health-campaign .faq-answer p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .health-campaign .faq-symbol {
    min-width: 28px;
    font-size: 2rem;
  }

  .health-campaign .campaign-final {
    padding-bottom: 84px;
  }

  .health-campaign .campaign-final .campaign-whatsapp {
    width: 100%;
    min-height: 56px;
    margin-top: 36px;
  }
}

@media print {
  .health-campaign {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .health-campaign .campaign-hero,
  .health-campaign .campaign-section-dark,
  .health-campaign .health-focus-section,
  .health-campaign .health-denial-section,
  .health-campaign .campaign-final {
    background: #0b0b0a !important;
  }

  .health-campaign .health-situations-section,
  .health-campaign .health-office-wrapper {
    background: #d8d6d0 !important;
  }
}

/* Nitidez do botão flutuante do WhatsApp no computador — versão 2.8.8 */
@media (min-width: 761px) {
  .whatsapp-float {
    min-height: 48px;
    gap: 10px;
    border-color: rgb(255 255 255 / 38%);
    background: #167c55;
    box-shadow:
      0 7px 18px rgb(0 0 0 / 28%),
      inset 0 0 0 1px rgb(0 0 0 / 8%);
    padding: 0 18px;
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    shape-rendering: geometricPrecision;
  }
}

/* Avaliações públicas no Google — versão 2.8.9 */
.google-reviews-section {
  border-bottom: 1px solid #2e2921;
  background:
    radial-gradient(
      circle at 86% 50%,
      rgb(201 164 93 / 10%),
      transparent 20rem
    ),
    #090908;
  padding-block: 38px;
}

.google-reviews-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 0.8fr) auto;
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  border: 1px solid #51432e;
  background: rgb(255 255 255 / 2.5%);
  padding: clamp(26px, 3.2vw, 38px);
}

.google-reviews-copy h2 {
  margin: 0 0 9px;
  color: #f7f3ea;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
}

.google-reviews-copy > p:last-child {
  max-width: 540px;
  margin: 0;
  color: #c7c1b7;
  font-size: 0.9rem;
  line-height: 1.65;
}

.google-reviews-eyebrow {
  margin: 0 0 8px;
  color: #d7ad5b;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.google-reviews-rating {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.google-reviews-stars {
  color: #e7b84f;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.google-reviews-numbers {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.google-reviews-numbers strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.google-reviews-numbers span {
  color: #e7e1d7;
  font-size: 0.88rem;
  font-weight: 700;
}

.google-reviews-rating small {
  color: #938d82;
  font-size: 0.68rem;
  line-height: 1.4;
}

.google-reviews-button {
  min-width: 220px;
  min-height: 50px;
  border-color: #b8914e;
  color: #f7f3ea;
  text-align: center;
}

.google-reviews-button:hover {
  border-color: #d8b66e;
  background: #c9a45d;
  color: #11100e;
}

@media (max-width: 900px) {
  .google-reviews-panel {
    grid-template-columns: 1fr auto;
  }

  .google-reviews-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .google-reviews-section {
    padding-block: 24px;
  }

  .google-reviews-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .google-reviews-copy h2 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .google-reviews-copy > p:last-child {
    font-size: 0.92rem;
  }

  .google-reviews-rating {
    gap: 9px;
  }

  .google-reviews-stars {
    font-size: 1.25rem;
  }

  .google-reviews-numbers strong {
    font-size: 2.15rem;
  }

  .google-reviews-numbers span {
    font-size: 0.94rem;
  }

  .google-reviews-button {
    width: 100%;
    min-height: 52px;
    justify-self: stretch;
  }
}
