:root {
  --ink: #211a1f;
  --muted: #6d6269;
  --paper: #fbf8f4;
  --surface: #ffffff;
  --wine: #580042;
  --moss: #556b5a;
  --clay: #b86f52;
  --line: #e7ded7;
  --shadow: 0 18px 50px rgba(33, 26, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(251, 248, 244, 0.92);
  border-bottom: 1px solid rgba(231, 222, 215, 0.85);
  backdrop-filter: blur(16px);
  font-family: "DM Sans", Arial, sans-serif !important;
}

body.is-home > .site-header {
  display: none !important;
}

.brand {
  display: grid;
  text-decoration: none;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--wine);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) 48px;
  background:
    linear-gradient(90deg, rgba(251, 248, 244, 0.96), rgba(251, 248, 244, 0.7)),
    url("../assets/images/hero-placeholder.svg");
  background-position: center;
  background-size: cover;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  color: var(--wine);
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  color: var(--wine);
  font-size: clamp(36px, 5vw, 58px);
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hero-copy > p:not(.eyebrow),
.section p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--wine);
  color: white;
}

.button.secondary {
  border-color: var(--wine);
  color: var(--wine);
}

.hero-panel,
.diagnostic,
.note-grid article,
.feature-list article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: 8px;
}

.hero-panel p,
.hero-panel span {
  margin: 0;
  color: var(--muted);
}

.hero-panel strong {
  color: var(--moss);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.intro,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.feature-list,
.note-grid {
  display: grid;
  gap: 14px;
}

.feature-list article,
.note-grid article {
  padding: 24px;
  border-radius: 8px;
}

.feature-list p,
.note-grid p {
  margin: 0;
  font-size: 16px;
}

.diagnostic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--moss);
}

.diagnostic h2,
.diagnostic p,
.diagnostic .eyebrow {
  color: white;
}

.diagnostic .button.primary {
  flex: 0 0 auto;
  background: white;
  color: var(--moss);
}

.notes h2 {
  margin-bottom: 28px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif !important;
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
}

.page-hero {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(24px, 4vw, 48px);
  background: var(--paper);
}

.page-hero h1 {
  max-width: 980px;
}

.wp-content {
  width: 100%;
  overflow-x: hidden;
}

.site-index {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: #f1e7de;
  font-family: "DM Sans", Arial, sans-serif !important;
}

.site-index h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 44px);
}

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

.site-index a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-index a:hover {
  color: var(--wine);
}

.site-header,
.site-header *,
.site-footer,
.site-footer *,
.site-index,
.site-index * {
  box-sizing: border-box !important;
}

.site-header a,
.site-footer a,
.site-index a {
  text-decoration: none !important;
}

.nr-static-signature {
  padding: 18px 20px;
  background: #100c0a;
  color: rgba(253, 250, 246, 0.55);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 420px;
  }

  .diagnostic,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-index div {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 24px;
  }

  h1 {
    font-size: 44px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }
}

/* Final typography and readability polish for the static version. */
.wp-content {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wp-content h1,
.wp-content h2,
.wp-content h3 {
  letter-spacing: 0 !important;
}

.wp-content p,
.wp-content li {
  letter-spacing: 0 !important;
}

/* Legal/editorial pages */
.wp-content header.topo {
  padding: clamp(72px, 9vw, 112px) 24px clamp(64px, 7vw, 88px) !important;
}

.wp-content header.topo h1 {
  font-size: clamp(46px, 6vw, 72px) !important;
  line-height: 0.98 !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wp-content .topo-label,
.wp-content .bloco-num {
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
}

.wp-content .topo-sub {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: rgba(253, 250, 246, 0.62) !important;
}

.wp-content .conteudo {
  padding-top: clamp(64px, 7vw, 92px) !important;
}

.wp-content .wrap {
  width: min(900px, calc(100% - 48px)) !important;
}

.wp-content .bloco {
  margin-bottom: 60px !important;
  padding-bottom: 60px !important;
}

.wp-content .bloco h2 {
  font-size: clamp(28px, 3.2vw, 38px) !important;
  line-height: 1.12 !important;
  margin-bottom: 22px !important;
}

.wp-content .bloco p,
.wp-content .bloco li {
  font-size: 16.5px !important;
  line-height: 1.88 !important;
  color: #6e5b50 !important;
}

.wp-content .bloco ul {
  gap: 12px !important;
  margin: 14px 0 0 !important;
}

.wp-content .bloco ul li {
  position: relative !important;
  display: block !important;
  padding-left: 18px !important;
}

.wp-content .bloco ul li::before {
  position: absolute !important;
  left: 0 !important;
  top: .82em !important;
  width: 5px !important;
  height: 5px !important;
  margin: 0 !important;
}

.wp-content .rodape p {
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.nr-site-nav,
.wp-content .nr-site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(19, 15, 12, 0.96);
  border-bottom: 1px solid rgba(255, 249, 241, 0.08);
  backdrop-filter: blur(14px);
}

.nr-site-nav-inner,
.wp-content .nr-site-nav-inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nr-site-nav-brand,
.wp-content .nr-site-nav-brand {
  text-decoration: none;
}

.nr-site-nav-brand strong,
.wp-content .nr-site-nav-brand strong {
  display: block;
  color: #fff9f1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.nr-site-nav-brand span,
.wp-content .nr-site-nav-brand span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 249, 241, 0.58);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nr-site-nav-links,
.wp-content .nr-site-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nr-site-nav-links a,
.wp-content .nr-site-nav-links a {
  color: rgba(255, 249, 241, 0.72);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nr-site-nav-links a:hover,
.wp-content .nr-site-nav-links a:hover {
  color: #fff9f1;
}

.nr-site-nav-links .nr-site-nav-cta,
.wp-content .nr-site-nav-links .nr-site-nav-cta,
.wp-content .nr-artigo .na-nav .na-nav-cta {
  color: #d7ae68 !important;
  border: 1px solid rgba(196, 144, 64, 0.65);
  padding: 9px 14px;
  border-radius: 2px;
}

.nr-internal-footer,
.wp-content .nr-internal-footer {
  background: #130f0c;
  border-top: 1px solid rgba(255, 249, 241, 0.08);
  color: rgba(255, 249, 241, 0.64);
  font-family: "DM Sans", Arial, sans-serif;
  padding: 48px clamp(20px, 5vw, 72px) 34px;
  text-align: left;
}

.nr-internal-footer-grid,
.wp-content .nr-internal-footer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 32px;
}

.nr-internal-footer-brand strong,
.wp-content .nr-internal-footer-brand strong {
  display: block;
  color: #fff9f1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 10px;
}

.nr-internal-footer p,
.nr-internal-footer span,
.wp-content .nr-internal-footer p,
.wp-content .nr-internal-footer span {
  color: rgba(255, 249, 241, 0.58) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  margin: 0;
}

.nr-internal-footer h3,
.wp-content .nr-internal-footer h3 {
  color: #d7ae68 !important;
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  line-height: 1.3 !important;
  margin: 0 0 14px !important;
  text-transform: uppercase;
}

.nr-internal-footer-links,
.wp-content .nr-internal-footer-links {
  display: grid;
  gap: 9px;
}

.nr-internal-footer a,
.wp-content .nr-internal-footer a {
  color: rgba(255, 249, 241, 0.68) !important;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.nr-internal-footer a:hover,
.wp-content .nr-internal-footer a:hover {
  color: #fff9f1 !important;
}

.nr-internal-footer-bottom,
.wp-content .nr-internal-footer-bottom {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 249, 241, 0.08);
  color: rgba(255, 249, 241, 0.46);
  font-size: 12px;
  line-height: 1.65;
}

/* Article index and article pages */
.wp-content #nr-home h1,
.wp-content #nr-leituras-index h1 {
  font-size: clamp(52px, 6.4vw, 82px) !important;
  line-height: 0.98 !important;
}

.wp-content #nr-home p,
.wp-content #nr-leituras-index p {
  font-size: clamp(17px, 1.5vw, 19px) !important;
  line-height: 1.78 !important;
}

.wp-content .nr-artigo h1 {
  font-size: clamp(42px, 5.2vw, 64px) !important;
  line-height: 1.04 !important;
  max-width: 900px !important;
}

.wp-content .nr-artigo h2 {
  font-size: clamp(30px, 3.2vw, 40px) !important;
  line-height: 1.16 !important;
}

.wp-content .nr-artigo p,
.wp-content .nr-artigo li {
  font-size: 18px !important;
  line-height: 1.84 !important;
}

/* Diagnostic page */
.wp-content #nr-page h1 {
  font-size: clamp(52px, 5.6vw, 72px) !important;
  line-height: 1.02 !important;
  max-width: 560px !important;
}

.wp-content #nr-page h2 {
  font-size: clamp(36px, 4vw, 54px) !important;
  line-height: 1.08 !important;
}

.wp-content #nr-page p,
.wp-content #nr-page li {
  font-size: clamp(17px, 1.45vw, 19px) !important;
  line-height: 1.78 !important;
}

/* Book sales page */
.wp-content [id*="livro"] h1,
.wp-content [class*="livro"] h1 {
  font-size: clamp(50px, 6vw, 76px) !important;
  line-height: 0.96 !important;
}

.wp-content [id*="livro"] h2,
.wp-content [class*="livro"] h2 {
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.06 !important;
}

.wp-content [id*="livro"] p,
.wp-content [class*="livro"] p {
  line-height: 1.7 !important;
}

/* Quiz and forms */
.wp-content #quiz-nicole-rocha,
.wp-content #nr-diagnostico-form,
.wp-content #nr-questionario-diagnostico,
.wp-content #adp-formulario-projeto {
  font-family: "DM Sans", Arial, sans-serif !important;
}

.wp-content #quiz-nicole-rocha h1,
.wp-content #nr-questionario-diagnostico h1,
.wp-content #adp-formulario-projeto h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(42px, 5vw, 68px) !important;
  line-height: 1.02 !important;
}

.wp-content #nr-diagnostico-form h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(32px, 4vw, 44px) !important;
  line-height: 1.06 !important;
}

.wp-content #quiz-nicole-rocha h2,
.wp-content #nr-diagnostico-form h2,
.wp-content #nr-questionario-diagnostico h2,
.wp-content #adp-formulario-projeto h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  line-height: 1.12 !important;
}

.wp-content #quiz-nicole-rocha p,
.wp-content #quiz-nicole-rocha label,
.wp-content #nr-diagnostico-form p,
.wp-content #nr-diagnostico-form label,
.wp-content #nr-questionario-diagnostico p,
.wp-content #nr-questionario-diagnostico li,
.wp-content #adp-formulario-projeto p,
.wp-content #adp-formulario-projeto label {
  font-size: clamp(16px, 1.35vw, 18px) !important;
  line-height: 1.72 !important;
}

.wp-content #quiz-nicole-rocha .hero-card.dark,
.wp-content #quiz-nicole-rocha .hero-card.dark * {
  color: rgba(255, 250, 244, 0.86) !important;
}

.wp-content #quiz-nicole-rocha .hero-card.dark h3 {
  color: #fffaf4 !important;
}

.wp-content #quiz-nicole-rocha .signal-dot {
  background: #c49040 !important;
}

.wp-content input,
.wp-content textarea,
.wp-content select,
.wp-content button {
  font-family: "DM Sans", Arial, sans-serif !important;
}

.wp-content button,
.wp-content .nr-btn,
.wp-content .quiz-btn,
.wp-content .btn-primary,
.wp-content .nr-btn-primary,
.wp-content .nr-btn-next {
  min-height: 48px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 760px) {
  .wp-content header.topo {
    padding: 56px 20px 48px !important;
  }

  .wp-content .wrap {
    width: min(100% - 36px, 900px) !important;
  }

  .wp-content .bloco {
    margin-bottom: 44px !important;
    padding-bottom: 44px !important;
  }

  .wp-content .bloco p,
  .wp-content .bloco li,
  .wp-content .nr-artigo p,
  .wp-content .nr-artigo li {
    font-size: 16px !important;
    line-height: 1.76 !important;
  }

  .wp-content #nr-page h1 {
    max-width: 100% !important;
  }

  .nr-site-nav-inner,
  .wp-content .nr-site-nav-inner {
    width: min(100% - 28px, 1120px);
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nr-site-nav-links,
  .wp-content .nr-site-nav-links,
  .wp-content #nr-home .nr-menu,
  .wp-content .nr-artigo .na-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nr-site-nav-links a,
  .wp-content .nr-site-nav-links a,
  .wp-content #nr-home .nr-menu a,
  .wp-content .nr-artigo .na-nav a {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }

  .nr-internal-footer-grid,
  .wp-content .nr-internal-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Essential navigation stays available across internal pages. */
.wp-content #nr-home .nr-menu,
.wp-content .nr-artigo .na-nav,
.wp-content #nr-page .nav-links,
.wp-content #adp-nicole-rocha-final .nav-links {
  display: flex !important;
}

.wp-content #nr-home .nr-brand,
.wp-content .nr-artigo .na-brand,
.wp-content #nr-page .nav-logo,
.wp-content #adp-nicole-rocha-final .brand {
  max-width: min(100%, 420px) !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.wp-content .rodape a,
.wp-content footer a:not(.button):not(.btn-primary):not(.nr-btn):not(.quiz-btn):not(.cta-final-btn) {
  color: inherit !important;
  text-decoration: none !important;
}

.wp-content .rodape a:hover,
.wp-content footer a:not(.button):not(.btn-primary):not(.nr-btn):not(.quiz-btn):not(.cta-final-btn):hover {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
