/* =========================================================================
   Studio Sanfonas do Mestre — modelo "Palco" (1a)
   Tokens, base e seções. Fiel ao design + responsivo.
   ========================================================================= */

:root {
  --ink:      #0F1B2D;  /* azul-noite (fundo principal)  */
  --ink-2:    #162439;  /* azul-noite claro (faixas)     */
  --ink-3:    #0A121F;  /* rodapé                        */
  --paper:    #FAF8F2;  /* papel                         */
  --bone:     #E8E4DB;  /* osso                          */
  --gold:     #C9A961;  /* dourado                       */
  --gold-2:   #A88847;  /* dourado escuro (sobre claro)  */
  --text:     #3C4049;  /* texto corrido sobre claro     */

  --sans:  'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1180px;                 /* largura máxima do conteúdo   */
  --pad-x: clamp(20px, 5vw, 56px);/* respiro lateral responsivo   */
  --pad-y: clamp(52px, 8vw, 80px);/* respiro vertical das seções  */
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);         /* fundo do topo/base ao dar overscroll */
  overscroll-behavior-y: none;    /* remove o "elástico" que estica o header */
}

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

img { max-width: 100%; height: auto; }
a   { color: inherit; }

/* Neutraliza espaçamento injetado no <body> por extensões de navegador
   (cupom/cashback, ex.: "Give Freely"), que empurram o cabeçalho para baixo.
   O tema controla o próprio espaçamento — a barra do admin do WP usa margin no
   <html>, então isto não a afeta. */
body { padding-top: 0 !important; }

h1, h2, h3, p, blockquote, figure { margin: 0; }

/* container central das seções */
.nono-wrap { max-width: var(--wrap); margin-inline: auto; }

/* rótulos monoespaçados (eyebrow / kicker) */
.eyebrow {
  font: 500 11px var(--mono);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--dark { color: var(--gold-2); }

/* títulos de seção */
.sec-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--paper);
}
.sec-title--ink { color: var(--ink); }
.serif-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

/* botões */
.btn {
  display: inline-block;
  font: 500 12px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold   { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #d8bd7e; }
.btn--ghost  { background: transparent; color: var(--bone); border: 1px solid rgba(232,228,219,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--paper); }
.btn--block  { display: block; text-align: center; padding: 16px; }

/* =========================================================================
   Header / navegação
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(201,169,97,.28);
}
.site-header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__mark { height: 42px; width: auto; object-fit: contain; }
.brand__name {
  font: 600 13px var(--sans);
  letter-spacing: .02em;
  color: var(--bone);
}
.brand__tag {
  display: block;
  font: 500 9.5px var(--mono);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font: 500 11px var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(232,228,219,.8);
  text-decoration: none;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav .btn { padding: 12px 20px; }

/* botão hambúrguer (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(232,228,219,.35);
  color: var(--bone);
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--bone);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(56px, 8vw, 76px) var(--pad-x) clamp(52px, 7vw, 64px);
}
.hero__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}
.hero__glow {
  position: absolute;
  top: -120px; right: -40px;
  width: 620px; height: 620px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(201,169,97,.30), rgba(201,169,97,0) 62%);
  animation: glowp 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--paper);
  margin-top: 26px;
}
.hero__lead {
  margin-top: 26px;
  max-width: 44ch;
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  color: rgba(232,228,219,.78);
}
.hero__cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero__cta .btn { font-size: 12px; }
.hero__art { display: flex; justify-content: center; }
.hero__art img {
  width: 100%;
  max-width: 470px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
  animation: floaty 7s ease-in-out infinite;
}

/* Landing pages: H1 direto (sem itálico serifado) para reforçar a keyword */
.hero--landing .hero__title--plain {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: 20px;
}

/* =========================================================================
   Landing — bloco de texto (prose) e benefícios
   ========================================================================= */
.prose-section {
  background: var(--paper);
  color: var(--text);
  padding: var(--pad-y) var(--pad-x);
}
.prose-section .nono-wrap { max-width: 820px; }
.prose-section__p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--text);
}

.benefits {
  background: var(--ink-2);
  padding: var(--pad-y) var(--pad-x);
}
.benefits--ink { background: var(--ink); }
.benefits__intro {
  margin: 0 0 40px;
  max-width: 60ch;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(232,228,219,.72);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  background: var(--ink);
  border-top: 1px solid var(--gold);
  padding: 28px 26px 30px;
}
.benefits--ink .benefit { background: var(--ink-2); }
.benefit__n {
  font: 500 12px var(--mono);
  letter-spacing: .1em;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.benefit__t {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  color: var(--paper);
  margin: 0 0 10px;
}
.benefit__d {
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(232,228,219,.72);
  margin: 0;
}

/* =========================================================================
   Stats
   ========================================================================= */
.stats {
  background: var(--ink-2);
  padding: clamp(36px, 5vw, 44px) var(--pad-x);
}
.stats__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.stat { border-top: 1px solid var(--gold); padding-top: 16px; }
.stat__n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1;
  color: var(--paper);
}
.stat__l { font-size: 13px; line-height: 1.5; color: rgba(232,228,219,.68); margin-top: 10px; }

/* =========================================================================
   O Mestre
   ========================================================================= */
.mestre {
  background: var(--bone);
  color: var(--text);
  padding: var(--pad-y) var(--pad-x);
}
.mestre__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.mestre__photo { position: relative; }
.mestre__photo::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.mestre__photo img { width: 100%; display: block; background: var(--ink); }
.mestre__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.mestre p { margin: 0 0 16px; font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--text); }
.pull-quote {
  margin-top: 32px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.6vw, 22px);
  line-height: 1.4;
  color: var(--ink);
}

/* =========================================================================
   Competências (lista numerada em 2 colunas)
   ========================================================================= */
.skills { background: var(--ink); padding: var(--pad-y) var(--pad-x); }
.skills__head { max-width: 60ch; margin: 0 auto var(--wrap-gap, 44px); }
.skills .nono-wrap { max-width: var(--wrap); }
.skills__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(232,228,219,.14);
}
.skill {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid rgba(232,228,219,.14);
}
.skill__i { font: 500 12px var(--mono); color: var(--gold-2); flex: none; }
.skill__t { font-size: 17px; font-weight: 400; color: var(--bone); line-height: 1.4; }

/* =========================================================================
   Ritmos (tags)
   ========================================================================= */
.ritmos { background: var(--ink-2); padding: var(--pad-y) var(--pad-x); }
.ritmos__lead {
  margin: 0 0 34px;
  max-width: 58ch;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(232,228,219,.72);
}
.ritmos__list { display: flex; flex-wrap: wrap; gap: 14px; }
.ritmo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bone);
  border: 1px solid rgba(201,169,97,.5);
  padding: 13px 26px;
  transition: background .15s ease, color .15s ease;
}
.ritmo:hover { background: var(--gold); color: var(--ink); }

/* =========================================================================
   Método + aside "Como começar"
   ========================================================================= */
.metodo {
  background: var(--paper);
  color: var(--text);
  padding: var(--pad-y) var(--pad-x);
}
.metodo__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: start;
}
.metodo__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 34px;
}
.metodo__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15,27,45,.12);
}
.metodo__item span:first-child { color: var(--gold-2); font-size: 16px; line-height: 1.6; flex: none; }
.metodo__item span:last-child  { font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--text); }

.start-card {
  background: var(--ink);
  color: var(--bone);
  padding: 38px 34px;
  position: sticky;
  top: 96px;
}
.start-card__hl {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 32px);
  line-height: 1.15;
  color: var(--paper);
}
.start-card hr { border: none; border-top: 1px solid rgba(232,228,219,.16); margin: 26px 0; }
.start-card p { font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(232,228,219,.78); margin: 0 0 24px; }

/* =========================================================================
   Depoimentos
   ========================================================================= */
.depo { background: var(--ink-2); padding: var(--pad-y) var(--pad-x); }
.depo__head {
  max-width: var(--wrap);
  margin: 0 auto 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.depo__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card { background: var(--ink); padding: 30px 26px; border-top: 1px solid var(--gold); }
.depo-card p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  color: var(--bone);
}
.depo-card__who {
  margin-top: 22px;
  font: 500 10px var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,169,97,.85);
}
.tag-note {
  font: 500 10px var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201,169,97,.75);
}

/* =========================================================================
   Galeria
   ========================================================================= */
.galeria { background: var(--bone); color: var(--ink); padding: var(--pad-y) var(--pad-x); }
.galeria__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.galeria__slot {
  overflow: hidden;
  background: #d3cdc0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeria__slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.galeria__slot--ph {
  border: 1px dashed rgba(15,27,45,.3);
  color: rgba(15,27,45,.45);
  font: 500 11px var(--mono);
  letter-spacing: .1em;
  text-align: center;
  padding: 12px;
}
.galeria__slot--a { grid-row: span 2; }
.galeria__slot--d { grid-column: span 2; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  background: var(--paper);
  color: var(--text);
  padding: var(--pad-y) var(--pad-x);
}
.faq__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.faq__list { border-top: 1px solid rgba(15,27,45,.16); }
.faq__item { padding: 24px 0; border-bottom: 1px solid rgba(15,27,45,.12); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--gold-2);
  font-size: 20px;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  max-width: 64ch;
  margin-top: 10px;
}

/* =========================================================================
   CTA final
   ========================================================================= */
.cta {
  background: var(--ink);
  padding: clamp(60px, 9vw, 88px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  left: 50%; top: -160px;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  max-width: 100vw;
  background: radial-gradient(circle, rgba(201,169,97,.22), rgba(201,169,97,0) 60%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; }
.cta__title {
  margin: 0 auto;
  max-width: 20ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  color: var(--paper);
}
.cta__lead {
  margin: 22px auto 34px;
  max-width: 52ch;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(232,228,219,.78);
}
.cta .btn { font-size: 13px; padding: 19px 40px; }

/* =========================================================================
   Blog (seção na home + cards)
   ========================================================================= */
.blog { background: var(--ink); padding: var(--pad-y) var(--pad-x); }
.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog__all {
  font: 500 11px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.blog__all:hover { opacity: .7; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog__grid--archive { grid-template-columns: repeat(3, 1fr); }

.post-card {
  background: var(--ink-2);
  border-top: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease;
}
.post-card:hover { transform: translateY(-4px); }
.post-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #101d31;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,169,97,.18), rgba(201,169,97,0) 60%),
    var(--ink-2);
}
.post-card__ph img { width: 64px; height: auto; opacity: .85; }
.post-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  font: 500 10px var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201,169,97,.85);
  margin-bottom: 14px;
}
.post-card__cat { color: rgba(232,228,219,.55); }
.post-card__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--paper);
  margin-bottom: 12px;
}
.post-card__title a { text-decoration: none; }
.post-card__title a:hover { color: var(--gold); }
.post-card__excerpt {
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(232,228,219,.72);
  margin-bottom: 20px;
}
.post-card__more {
  margin-top: auto;
  font: 500 11px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.post-card__more:hover { opacity: .7; }

/* =========================================================================
   Arquivo do blog (página de posts)
   ========================================================================= */
.blog-archive { background: var(--ink); min-height: 70vh; padding-bottom: var(--pad-y); }
.blog-archive__header {
  background: var(--ink-2);
  padding: clamp(56px, 8vw, 88px) var(--pad-x) clamp(44px, 6vw, 64px);
  border-bottom: 1px solid rgba(201,169,97,.22);
  margin-bottom: var(--pad-y);
}
.blog-archive__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  color: var(--paper);
  margin-top: 18px;
}
.blog-archive__lead {
  margin-top: 18px;
  max-width: 52ch;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(232,228,219,.72);
}
.blog-archive .nono-wrap { padding-inline: 0; }
.blog-archive__empty { color: rgba(232,228,219,.7); font-weight: 300; }
.blog-archive__nav { margin-top: 48px; }
.blog-archive__nav .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 4px;
  font: 500 12px var(--mono);
  color: var(--bone);
  border: 1px solid rgba(232,228,219,.2);
  text-decoration: none;
}
.blog-archive__nav .page-numbers.current,
.blog-archive__nav .page-numbers:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.blog-archive__nav .screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* =========================================================================
   Post individual (single)
   ========================================================================= */
.single__header {
  background: var(--ink);
  padding: clamp(48px, 7vw, 76px) var(--pad-x) clamp(36px, 5vw, 52px);
}
.single__header-inner { max-width: 760px; margin-inline: auto; }
.single__back {
  font: 500 11px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(232,228,219,.7);
  text-decoration: none;
}
.single__back:hover { color: var(--gold); }
.single__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--paper);
  margin: 14px 0 20px;
}
.single__meta {
  display: flex;
  gap: 10px;
  font: 500 11px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201,169,97,.85);
}
.single__cover {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  margin-top: -1px;
}
.single__cover img { width: 100%; height: auto; display: block; }
.single__body { background: var(--paper); color: var(--text); padding: clamp(44px, 6vw, 72px) var(--pad-x); }
.single__content { max-width: 700px; margin-inline: auto; }
.single__content p { margin: 0 0 22px; font-size: 17px; line-height: 1.75; font-weight: 300; color: var(--text); }
.single__content h2 { font-family: var(--sans); font-weight: 600; font-size: 26px; color: var(--ink); margin: 40px 0 16px; letter-spacing: -.01em; }
.single__content h3 { font-family: var(--sans); font-weight: 600; font-size: 21px; color: var(--ink); margin: 32px 0 12px; }
.single__content a { color: var(--gold-2); text-decoration: underline; }
.single__content img { max-width: 100%; height: auto; margin: 12px 0; }
.single__content ul, .single__content ol { margin: 0 0 22px; padding-left: 22px; line-height: 1.7; }
.single__content li { margin-bottom: 8px; }
.single__content blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
}
.single__footer {
  max-width: 700px;
  margin: 44px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(15,27,45,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.single__tags a {
  display: inline-block;
  margin-right: 8px;
  font: 500 11px var(--mono);
  letter-spacing: .08em;
  color: var(--gold-2);
  text-decoration: none;
}
.single__comments { background: var(--paper); padding: 0 var(--pad-x) clamp(44px,6vw,72px); }

/* =========================================================================
   Comentários
   ========================================================================= */
.nono-comments {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 44px;
  border-top: 1px solid rgba(15,27,45,.14);
  color: var(--text);
}
.nono-comments__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.comment-list ol.children { list-style: none; margin: 0 0 0 clamp(16px, 5vw, 40px); padding: 0; }
.comment-list li.comment { margin-bottom: 4px; }
.comment-body {
  padding: 22px 0;
  border-bottom: 1px solid rgba(15,27,45,.1);
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.comment-author .avatar {
  border-radius: 50%;
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
}
.comment-author .fn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  font-style: normal;
  color: var(--ink);
}
.comment-author .says { display: none; }
.comment-meta {
  font: 500 10px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,27,45,.5);
  margin-bottom: 10px;
}
.comment-meta a { color: inherit; text-decoration: none; }
.comment-content p { margin: 0 0 12px; font-size: 15px; line-height: 1.7; font-weight: 300; }
.comment-content a { color: var(--gold-2); }
.reply { margin-top: 6px; }
.comment-reply-link {
  font: 500 10px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-decoration: none;
}
.comment-reply-link:hover { color: var(--ink); }
.bypostauthor > .comment-body { border-left: 2px solid var(--gold); padding-left: 18px; }

/* Formulário */
.comment-respond { margin-top: 8px; }
.comment-notes,
.logged-in-as {
  font-size: 13px;
  font-weight: 300;
  color: rgba(15,27,45,.6);
  margin: 0 0 22px;
}
.comment-form { display: flex; flex-direction: column; gap: 18px; }
.comment-form p { margin: 0; }
.comment-form-author,
.comment-form-email { display: inline-block; width: calc(50% - 9px); }
.comment-form-author { margin-right: 14px; }
.comment-form label {
  display: block;
  font: 500 10px var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.comment-form .required { color: #b3402f; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15,27,45,.2);
  border-radius: 0;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.18);
}
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(15,27,45,.65);
}
.comment-form-cookies-consent input { margin-top: 3px; }
.comment-form-cookies-consent label {
  font: 300 13px var(--sans);
  letter-spacing: 0;
  text-transform: none;
  color: rgba(15,27,45,.65);
  margin: 0;
}
.form-submit { margin: 0; }
.form-submit .submit { cursor: pointer; border: none; }
.nono-comments__closed {
  font-size: 14px;
  font-weight: 300;
  color: rgba(15,27,45,.6);
  padding: 16px 0;
}
.comment-navigation { margin: 0 0 32px; display: flex; justify-content: space-between; gap: 16px; font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.comment-navigation a { color: var(--gold-2); text-decoration: none; }

/* =========================================================================
   Rodapé
   ========================================================================= */
.site-footer {
  background: var(--ink-3);
  padding: 48px var(--pad-x);
  border-top: 1px solid rgba(201,169,97,.22);
}
.site-footer__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 48px; width: auto; object-fit: contain; }
.footer-brand__name { font: 600 14px var(--sans); color: var(--bone); }
.footer-brand__sub  { font: 400 12px var(--sans); color: rgba(232,228,219,.55); }
.footer-contact__label {
  font: 500 9.5px var(--mono);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(201,169,97,.8);
  margin-bottom: 6px;
}
.footer-contact a,
.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(232,228,219,.85);
  text-decoration: none;
  line-height: 1.9;
}
.footer-contact a:hover,
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  max-width: var(--wrap);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(232,228,219,.1);
  font: 400 11px var(--sans);
  color: rgba(232,228,219,.4);
}
.footer-legal a { color: rgba(232,228,219,.6); }

/* =========================================================================
   Botão flutuante WhatsApp
   ========================================================================= */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.6);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================================
   Utilitário: acessibilidade
   ========================================================================= */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* =========================================================================
   Responsivo
   ========================================================================= */
@media (max-width: 960px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 40px; }
  .hero__art          { order: -1; }
  .hero__art img      { max-width: 340px; }
  .stats__grid        { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .mestre__inner      { grid-template-columns: 1fr; gap: 36px; }
  .mestre__photo      { order: -1; max-width: 420px; }
  .metodo__inner      { grid-template-columns: 1fr; gap: 40px; }
  .start-card         { position: static; }
  .depo__grid         { grid-template-columns: repeat(2, 1fr); }
  .blog__grid,
  .blog__grid--archive { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid     { grid-template-columns: repeat(2, 1fr); }
  .faq__inner         { grid-template-columns: 1fr; gap: 24px; }
  .galeria__grid      { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .galeria__slot--a   { grid-row: span 1; }
  .galeria__slot--d   { grid-column: span 2; }
}

/* Navegação: vira menu compacto (hambúrguer) já no tablet, para o topo não
   ficar espremido entre ~760 e 960px. */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(201,169,97,.28);
    padding: 8px var(--pad-x) 20px;
    display: none;
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(232,228,219,.1); }
  .main-nav .btn { margin-top: 14px; text-align: center; }
}

@media (max-width: 760px) {
  .skills__list  { grid-template-columns: 1fr; }
  .skill         { padding-right: 0; }
  .blog__grid,
  .blog__grid--archive { grid-template-columns: 1fr; }
  .benefits__grid     { grid-template-columns: 1fr; }
  .depo__grid         { grid-template-columns: 1fr; }
  .comment-form-author,
  .comment-form-email { display: block; width: 100%; margin-right: 0; }
  /* Rodapé empilha limpo e alinhado à esquerda no mobile. */
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 26px; }
}

@media (max-width: 460px) {
  .stats__grid   { grid-template-columns: 1fr; }
  .galeria__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; grid-template-rows: none; }
  .galeria__slot--d { grid-column: span 1; }
  .brand__tag    { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes glowp  { 0%,100% { opacity: .55; } 50% { opacity: .9; } }
