/*
 * GHC theme styles. Aplica o mockup V1 (editorial sóbrio) sobre o GeneratePress.
 * Variáveis e estrutura derivadas de _assets/mockups/v1/index.html.
 */

:root{
  --ghc-purple:#42419A;
  --ghc-purple-deep:#2E2D7A;
  --ghc-red:#EA4D49;
  --ghc-yellow:#F6C744;
  --ghc-yellow-deep:#E0B12C;
  --ghc-gray:#6D6E71;
  --ghc-bg:#fbfaf6;
  --ghc-bg-card:#fff;
  --ghc-ink:#1d1d2e;
  --ghc-ink-soft:#5b5b6b;
  --ghc-rule:#e8e6df;
  --ghc-serif:'Fraunces',Georgia,serif;
  --ghc-sans:'Outfit',system-ui,sans-serif;
}

/* ===== Reset light sobre o GeneratePress ===== */
body,
body.generatepress {
  font-family: var(--ghc-sans);
  background: var(--ghc-bg);
  color: var(--ghc-ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.ghc-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
/* Substitui completamente o header do GeneratePress */
/* v0.9.2 — header roxo (espelhando o footer), CTA amarelo. */
.site-header.ghc-header {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--ghc-purple);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  padding: 0;
}
.ghc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.ghc-nav .ghc-logo { display: flex; align-items: center; }
/* logo é preta sobre transparente — inverte pra branca via filtro, evita 2º arquivo. */
.ghc-nav .ghc-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); display: block; }
.ghc-nav ul.ghc-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  margin: 0;
  padding: 0;
}
.ghc-nav ul.ghc-menu a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s;
}
.ghc-nav ul.ghc-menu a:hover,
.ghc-nav ul.ghc-menu .current-menu-item > a {
  color: #fff;
}
.ghc-nav .ghc-cta {
  font-family: var(--ghc-sans);
  font-weight: 600;
  font-size: 14px;
  background: var(--ghc-yellow);
  color: var(--ghc-ink);
  border-radius: 999px;
  padding: 10px 22px;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}
.ghc-nav .ghc-cta:hover {
  background: var(--ghc-yellow-deep);
  color: var(--ghc-ink);
  transform: translateY(-1px);
}
.ghc-burger { display: none; font-size: 24px; cursor: pointer; color: #fff; background: none; border: 0; }

/* ===== HERO ===== */
.ghc-hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--ghc-rule);
}
.ghc-hero .ghc-kicker {
  font-family: var(--ghc-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--ghc-purple);
  margin-bottom: 28px;
}
.ghc-hero h1 {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 32px;
  max-width: 18ch;
}
.ghc-hero h1 em {
  font-style: italic;
  color: var(--ghc-purple);
  font-weight: 300;
}
.ghc-hero p.ghc-lead {
  font-family: var(--ghc-sans);
  color: var(--ghc-ink-soft);
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 55ch;
  margin: 0 0 48px;
}
.ghc-hero .ghc-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* ===== Botões ===== */
.ghc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ghc-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.ghc-btn--primary { background: var(--ghc-yellow); color: var(--ghc-ink); }
.ghc-btn--primary:hover { background: var(--ghc-yellow-deep); color: var(--ghc-ink); transform: translateY(-2px); }
.ghc-btn--ghost {
  background: transparent;
  color: var(--ghc-ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--ghc-ink);
  border-radius: 0;
}
.ghc-btn--ghost:hover { color: var(--ghc-purple); border-color: var(--ghc-purple); }

/* ===== Hero variant: small (página de orçamento etc) ===== */
.ghc-hero.ghc-hero--small { padding: 80px 0 48px; }
.ghc-hero.ghc-hero--small h1 { font-size: clamp(36px, 5.5vw, 64px); margin-bottom: 24px; }
.ghc-hero.ghc-hero--small p.ghc-lead { margin-bottom: 0; }

/* ===== Página de orçamento ===== */
.ghc-section--orcamento { padding-top: 64px; }
.ghc-orcamento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.ghc-orcamento-info {
  position: sticky;
  top: 88px;
  background: var(--ghc-bg-card);
  border: 1px solid var(--ghc-rule);
  padding: 40px 32px;
}
.ghc-orcamento-info h2 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 24px;
  letter-spacing: -.005em;
}
.ghc-passos { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.ghc-passos li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.ghc-passo-num {
  font-family: var(--ghc-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--ghc-purple);
  line-height: 1;
  padding-top: 4px;
}
.ghc-passos li strong {
  font-family: var(--ghc-sans);
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
  color: var(--ghc-ink);
}
.ghc-passos li p {
  margin: 0;
  font-size: 14px;
  color: var(--ghc-ink-soft);
  line-height: 1.5;
}

/* ===== CF7 + Drag-and-Drop overrides ===== */
.ghc-orcamento-form .wpcf7 form { margin: 0; }
.ghc-orcamento-form .wpcf7 p {
  margin: 0 0 24px;
}
.ghc-orcamento-form .wpcf7 label {
  font-family: var(--ghc-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ghc-ink);
  display: block;
  margin-bottom: 0;
}
.ghc-orcamento-form .wpcf7 .ghc-required {
  color: var(--ghc-red);
  margin-left: 2px;
  font-weight: 700;
}
.ghc-orcamento-form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.ghc-orcamento-form .wpcf7 input[type="text"],
.ghc-orcamento-form .wpcf7 input[type="email"],
.ghc-orcamento-form .wpcf7 input[type="tel"],
.ghc-orcamento-form .wpcf7 input[type="url"],
.ghc-orcamento-form .wpcf7 select,
.ghc-orcamento-form .wpcf7 textarea {
  font-family: var(--ghc-sans);
  font-size: 15px;
  color: var(--ghc-ink);
  background: var(--ghc-bg-card);
  border: 1px solid var(--ghc-rule);
  border-radius: 6px;
  padding: 14px 16px;
  width: 100%;
  box-shadow: none;
  transition: border-color .15s, box-shadow .15s;
}
.ghc-orcamento-form .wpcf7 input[type="text"]:focus,
.ghc-orcamento-form .wpcf7 input[type="email"]:focus,
.ghc-orcamento-form .wpcf7 input[type="tel"]:focus,
.ghc-orcamento-form .wpcf7 input[type="url"]:focus,
.ghc-orcamento-form .wpcf7 select:focus,
.ghc-orcamento-form .wpcf7 textarea:focus {
  border-color: var(--ghc-purple);
  box-shadow: 0 0 0 3px rgba(66, 65, 154, .12);
  outline: 0;
}
.ghc-orcamento-form .wpcf7 textarea { min-height: 120px; resize: vertical; }
.ghc-orcamento-form .wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2342419A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px;
}
.ghc-orcamento-form .wpcf7 input[type="submit"],
.ghc-orcamento-form .wpcf7-submit {
  font-family: var(--ghc-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--ghc-yellow);
  border: 0;
  color: var(--ghc-ink);
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
  cursor: pointer;
  width: auto;
  -webkit-appearance: none;
  appearance: none;
}
.ghc-orcamento-form .wpcf7 input[type="submit"]:hover,
.ghc-orcamento-form .wpcf7-submit:hover {
  background: var(--ghc-yellow-deep);
  transform: translateY(-2px);
}

/* DnD upload widget */
.ghc-orcamento-form .codedropz-upload-wrapper {
  font-family: var(--ghc-sans);
}
.ghc-orcamento-form .codedropz-upload-handler {
  background: var(--ghc-bg);
  border: 1px dashed var(--ghc-rule);
  border-radius: 6px;
  padding: 32px 24px;
  transition: border-color .15s, background .15s;
}
.ghc-orcamento-form .codedropz-upload-handler:hover,
.ghc-orcamento-form .codedropz-upload-handler.codedropz-active {
  border-color: var(--ghc-purple);
  background: rgba(66, 65, 154, .04);
}
.ghc-orcamento-form .codedropz-upload-inner h3 {
  font-family: var(--ghc-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ghc-ink);
  margin: 0 0 4px;
}
.ghc-orcamento-form .codedropz-upload-inner span,
.ghc-orcamento-form .codedropz-btn-wrap a.cd-upload-btn {
  font-size: 14px;
  color: var(--ghc-ink-soft);
}
.ghc-orcamento-form .codedropz-btn-wrap a.cd-upload-btn {
  color: var(--ghc-purple);
  text-decoration: underline;
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 0;
}
.ghc-orcamento-form .dnd-upload-counter {
  font-size: 13px;
  color: var(--ghc-ink-soft);
  margin-top: 8px;
}
.ghc-orcamento-form .dnd-upload-status {
  margin-top: 12px;
  font-size: 14px;
}
.ghc-orcamento-form .dnd-upload-status .dnd-upload-image .dnd-icon-remove {
  color: var(--ghc-red);
  cursor: pointer;
}
.ghc-orcamento-form .dnd-progress-bar {
  background: var(--ghc-purple);
}

/* Mensagens de resposta CF7 */
.ghc-orcamento-form .wpcf7 form .wpcf7-response-output {
  font-family: var(--ghc-sans);
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 6px;
  margin: 24px 0 0;
  border-width: 1px;
}
.ghc-orcamento-form .wpcf7 form.sent .wpcf7-response-output {
  background: rgba(66, 65, 154, .08);
  border-color: var(--ghc-purple);
  color: var(--ghc-purple-deep);
  font-family: var(--ghc-serif);
  font-size: 18px;
  padding: 24px;
  border-radius: 8px;
}
.ghc-orcamento-form .wpcf7 form.invalid .wpcf7-response-output,
.ghc-orcamento-form .wpcf7 form.unaccepted .wpcf7-response-output,
.ghc-orcamento-form .wpcf7 form.payment-required .wpcf7-response-output {
  background: rgba(234, 77, 73, .08);
  border-color: var(--ghc-red);
  color: var(--ghc-red);
}
.ghc-orcamento-form .wpcf7 form.failed .wpcf7-response-output,
.ghc-orcamento-form .wpcf7 form.aborted .wpcf7-response-output,
.ghc-orcamento-form .wpcf7 form.spam .wpcf7-response-output {
  background: rgba(234, 77, 73, .08);
  border-color: var(--ghc-red);
  color: var(--ghc-red);
}
.ghc-orcamento-form .wpcf7-not-valid-tip {
  color: var(--ghc-red);
  font-size: 13px;
  font-family: var(--ghc-sans);
  margin-top: 6px;
  display: block;
}
.ghc-orcamento-form .wpcf7-not-valid {
  border-color: var(--ghc-red);
}
.ghc-orcamento-form .wpcf7 .wpcf7-spinner {
  margin-left: 12px;
}

@media (max-width: 880px) {
  .ghc-orcamento-grid { grid-template-columns: 1fr; gap: 40px; }
  .ghc-orcamento-info { position: static; padding: 32px 24px; }
}

/* ===== Página Quem sou ===== */
.ghc-section--quem-sou { padding-top: 64px; }
.ghc-quem-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.ghc-quem-foto {
  position: sticky;
  top: 88px;
  text-align: center;
}
.ghc-foto-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid var(--ghc-rule);
  background: var(--ghc-bg-card);
}
.ghc-foto-circle svg,
.ghc-foto-circle img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ghc-quem-meta { margin-bottom: 12px; }
.ghc-quem-meta strong {
  display: block;
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.005em;
  color: var(--ghc-ink);
  margin-bottom: 4px;
}
.ghc-quem-meta span {
  font-family: var(--ghc-sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ghc-ink-soft);
}
.ghc-foto-aviso {
  font-family: var(--ghc-sans);
  font-size: 12px;
  color: var(--ghc-red);
  margin: 16px 0 0;
  padding: 8px 12px;
  background: rgba(234, 77, 73, .06);
  border-radius: 4px;
}
.ghc-foto-aviso em { font-style: italic; }
.ghc-quem-bio { max-width: 640px; }
.ghc-quem-bio p {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ghc-ink);
  margin: 0 0 24px;
  letter-spacing: -.005em;
}
.ghc-quem-bio p:first-child::first-letter {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-style: italic;
  float: left;
  font-size: 72px;
  line-height: .85;
  margin: 8px 12px 0 0;
  color: var(--ghc-purple);
}
.ghc-quem-cta {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 880px) {
  .ghc-quem-grid { grid-template-columns: 1fr; gap: 32px; }
  .ghc-quem-foto { position: static; }
  .ghc-foto-circle { width: 180px; height: 180px; }
  .ghc-quem-bio p { font-size: 18px; }
  .ghc-quem-bio p:first-child::first-letter { font-size: 56px; }
}

/* ===== Archive de serviços ===== */
.ghc-section--servicos { padding-top: 64px; }
.ghc-servicos--archive { display: grid; gap: 0; border-top: 1px solid var(--ghc-rule); }
.ghc-servico--archive {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--ghc-rule);
  align-items: start;
}
.ghc-servico--archive:hover { padding-left: 0; }
.ghc-servico--archive .ghc-body h2 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 16px;
}
.ghc-servico--archive .ghc-body h2 a { color: inherit; transition: color .2s; }
.ghc-servico--archive .ghc-body h2 a:hover { color: var(--ghc-purple); }
.ghc-servico-resumo {
  font-family: var(--ghc-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ghc-purple);
  margin: 0 0 16px;
  max-width: 60ch;
}
.ghc-servico-conteudo {
  color: var(--ghc-ink-soft);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 60ch;
}
.ghc-servico-conteudo p { margin: 0 0 12px; }

/* ===== Single de serviço ===== */
.ghc-section--single-servico { padding-top: 64px; }
.ghc-single-servico-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}
.ghc-servico-conteudo-full {
  font-family: var(--ghc-serif);
  font-size: 20px;
  line-height: 1.6;
  color: var(--ghc-ink);
  max-width: 640px;
}
.ghc-servico-conteudo-full p { margin: 0 0 24px; }
.ghc-outros-servicos {
  position: sticky;
  top: 88px;
  padding: 32px 28px;
  background: var(--ghc-bg-card);
  border: 1px solid var(--ghc-rule);
}
.ghc-outros-servicos h3 {
  font-family: var(--ghc-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ghc-ink-soft);
  margin: 0 0 16px;
}
.ghc-outros-servicos ul { list-style: none; padding: 0; margin: 0; }
.ghc-outros-servicos li { margin-bottom: 14px; }
.ghc-outros-servicos a {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ghc-ink);
  display: block;
  transition: color .2s, transform .2s;
}
.ghc-outros-servicos a:hover { color: var(--ghc-purple); transform: translateX(4px); }
.ghc-outros-servicos a span { font-style: italic; color: var(--ghc-purple); margin-left: 6px; }

@media (max-width: 880px) {
  .ghc-servico--archive { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .ghc-single-servico-grid { grid-template-columns: 1fr; gap: 32px; }
  .ghc-outros-servicos { position: static; }
  .ghc-servico-conteudo-full { font-size: 18px; }
}

/* ===== Blog: archive ===== */
.ghc-section--blog { padding-top: 64px; }
.ghc-posts { display: grid; gap: 0; border-top: 1px solid var(--ghc-rule); }
.ghc-post {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--ghc-rule);
  align-items: start;
}
.ghc-post-meta {
  font-family: var(--ghc-sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ghc-ink-soft);
  padding-top: 14px;
}
.ghc-post-body h2 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 16px;
  max-width: 26ch;
}
.ghc-post-body h2 a { color: inherit; transition: color .2s; }
.ghc-post-body h2 a:hover { color: var(--ghc-purple); }
.ghc-post-excerpt {
  font-family: var(--ghc-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ghc-ink-soft);
  margin-bottom: 24px;
  max-width: 60ch;
}
.ghc-post-excerpt p { margin: 0; }
.ghc-pagination { padding: 48px 0 0; text-align: center; }
.ghc-pagination .nav-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ghc-pagination a, .ghc-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--ghc-rule);
  background: var(--ghc-bg-card);
  font-family: var(--ghc-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ghc-ink);
  border-radius: 999px;
  transition: all .2s;
}
.ghc-pagination a:hover { background: var(--ghc-purple); color: #fff; border-color: var(--ghc-purple); }
.ghc-pagination .current { background: var(--ghc-ink); color: #fff; border-color: var(--ghc-ink); }
.ghc-empty {
  font-family: var(--ghc-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ghc-ink-soft);
  padding: 48px 0;
  text-align: center;
}

/* ===== Blog: single ===== */
.ghc-hero--post .ghc-post-meta-single {
  font-family: var(--ghc-sans);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ghc-ink-soft);
  margin-top: 24px;
}
.ghc-section--post-content { padding-top: 64px; padding-bottom: 96px; }
.ghc-post-content-wrap {
  max-width: 720px;
  font-family: var(--ghc-serif);
  font-size: 20px;
  line-height: 1.65;
  color: var(--ghc-ink);
}
.ghc-post-content-wrap p { margin: 0 0 24px; }
.ghc-post-content-wrap h2 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 32px;
  margin: 48px 0 16px;
  letter-spacing: -.005em;
}
.ghc-post-content-wrap h3 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 32px 0 12px;
}
.ghc-post-content-wrap a { color: var(--ghc-purple); text-decoration: underline; }
.ghc-post-content-wrap blockquote {
  border-left: 3px solid var(--ghc-purple);
  margin: 32px 0;
  padding-left: 32px;
  font-style: italic;
  color: var(--ghc-ink-soft);
}
.ghc-post-content-wrap img { margin: 32px 0; border-radius: 4px; }

@media (max-width: 880px) {
  .ghc-post { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
  .ghc-post-meta { padding-top: 0; }
  .ghc-post-content-wrap { font-size: 18px; }
  .ghc-post-content-wrap h2 { font-size: 26px; }
}

/* ===== Section base ===== */
.ghc-section { padding: 120px 0; }
.ghc-section + .ghc-section { border-top: 1px solid var(--ghc-rule); }

/* ===== 404 + busca ===== */
.ghc-section--404 { padding-top: 32px; padding-bottom: 96px; }
.ghc-search-form-wrap h2 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 20px;
  letter-spacing: -.005em;
}
.ghc-searchform {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 600px;
}
.ghc-searchform__input {
  flex: 1 1 280px;
  font-family: var(--ghc-sans);
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid var(--ghc-rule);
  background: var(--ghc-bg-card);
  color: var(--ghc-ink);
  border-radius: 6px;
}
.ghc-searchform__input:focus {
  outline: 2px solid var(--ghc-purple);
  outline-offset: 2px;
  border-color: var(--ghc-purple);
}
.ghc-empty { font-family: var(--ghc-serif); font-size: 20px; color: var(--ghc-ink-soft); }
.ghc-empty a { color: var(--ghc-purple); border-bottom: 1px solid currentColor; }

.ghc-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.ghc-section-head h2 {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.01em;
  max-width: 18ch;
  margin: 0;
}
.ghc-section-head .ghc-meta {
  font-family: var(--ghc-sans);
  font-size: 14px;
  color: var(--ghc-ink-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
}

/* ===== Serviços ===== */
.ghc-servicos { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--ghc-rule); }
.ghc-servico {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--ghc-rule);
  transition: padding .25s;
}
.ghc-servico:hover { padding-left: 12px; }
.ghc-servico .ghc-num {
  font-family: var(--ghc-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: var(--ghc-purple);
}
.ghc-servico .ghc-body h3 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -.005em;
}
.ghc-servico .ghc-body p { color: var(--ghc-ink-soft); max-width: 55ch; font-size: 16px; margin: 0; }
.ghc-servico .ghc-arrow {
  font-family: var(--ghc-serif);
  font-size: 24px;
  color: var(--ghc-ink-soft);
  align-self: center;
  transition: transform .25s, color .25s;
}
.ghc-servico:hover .ghc-arrow { transform: translateX(8px); color: var(--ghc-purple); }

/* ===== Carrossel base ===== */
.ghc-carousel { position: relative; }
.ghc-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
  margin: 0 -4px;
}
.ghc-carousel-track::-webkit-scrollbar { display: none; }
.ghc-carousel-controls { display: flex; justify-content: flex-end; gap: 8px; margin-top: 8px; }
.ghc-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ghc-rule);
  background: var(--ghc-bg-card);
  cursor: pointer;
  font-size: 18px;
  color: var(--ghc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.ghc-carousel-btn:hover:not(:disabled) {
  background: var(--ghc-purple);
  color: #fff;
  border-color: var(--ghc-purple);
}
.ghc-carousel-btn:disabled { opacity: .3; cursor: not-allowed; }

/* ===== Depoimentos ===== */
.ghc-depoimentos .ghc-carousel-track > .ghc-depoimento {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  min-width: 0;
}
.ghc-depoimento {
  padding: 48px;
  background: var(--ghc-bg-card);
  border: 1px solid var(--ghc-rule);
  position: relative;
}
.ghc-depoimento .ghc-mark {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--ghc-serif);
  font-weight: 600;
  font-size: 120px;
  line-height: 1;
  color: var(--ghc-purple);
  opacity: .18;
  font-style: italic;
}
.ghc-depoimento blockquote {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -.005em;
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
.ghc-depoimento .ghc-who {
  font-family: var(--ghc-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ghc-ink);
}
.ghc-depoimento .ghc-who span {
  display: block;
  color: var(--ghc-ink-soft);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  margin-top: 4px;
}

/* ===== Clientes ===== */
.ghc-clientes .ghc-carousel-track > .ghc-cliente-card {
  flex: 0 0 calc(20% - 20px);
  scroll-snap-align: start;
  min-width: 160px;
}
.ghc-cliente-card {
  background: var(--ghc-bg-card);
  border: 1px solid var(--ghc-rule);
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.ghc-cliente-card:hover { border-color: var(--ghc-purple); background: #fff; }
.ghc-cliente-card img { max-height: 48px; width: auto; }
.ghc-cliente-card .ghc-cliente-nome {
  font-family: var(--ghc-sans);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  color: var(--ghc-ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ghc-cliente-card .ghc-logo-placeholder {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ghc-ink-soft);
  letter-spacing: .01em;
}

/* ===== CTA strip ===== */
.ghc-cta-strip {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--ghc-rule);
}
.ghc-cta-strip h2 {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 auto 32px;
  max-width: 22ch;
}

/* ===== Footer ===== */
.site-footer.ghc-footer {
  background: var(--ghc-purple);
  color: #fff;
  padding: 80px 0 32px;
}
.site-footer.ghc-footer * { color: inherit; }
.ghc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.ghc-footer-grid .ghc-brand {
  font-family: var(--ghc-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  max-width: 30ch;
  opacity: .95;
}
.ghc-footer-grid .ghc-brand em { font-style: italic; }
.ghc-footer-grid h2 {
  font-family: var(--ghc-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 20px;
  /* WCAG AA: precisamos >=4.5:1; .7 dava ~3.7:1 sobre o roxo. */
  color: rgba(255, 255, 255, .92);
}
.ghc-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.ghc-footer-grid ul li { margin-bottom: 10px; }
.ghc-footer-grid ul a { font-size: 15px; color: rgba(255, 255, 255, .94); transition: color .2s; }
.ghc-footer-grid ul a:hover { color: #fff; }
.ghc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
}

/* ===== Tablet (881-1100): suaviza carrosséis sem virar mobile ===== */
@media (min-width: 881px) and (max-width: 1100px) {
  .ghc-clientes .ghc-carousel-track > .ghc-cliente-card { flex: 0 0 calc(33.333% - 16px); }
  .ghc-depoimento { padding: 36px 32px; }
  .ghc-depoimento blockquote { font-size: 18px; }
}

/* ===== Mobile ===== */
@media (max-width: 880px) {
  .ghc-nav {
    flex-wrap: wrap;
    position: relative;
    padding: 8px 56px 6px 0; /* reserva espaço pro burger absolute, reduz altura */
    align-content: flex-start; /* impede flex de stretchar entre linhas */
    row-gap: 0;
  }
  .ghc-nav .ghc-logo { height: 48px; line-height: 1; }
  .ghc-nav ul.ghc-menu, .ghc-nav .ghc-cta { display: none; }
  .ghc-nav.is-open ul.ghc-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    flex-basis: 100%;
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 0;
    padding: 0;
  }
  .ghc-nav.is-open ul.ghc-menu li { width: 100%; }
  .ghc-nav.is-open ul.ghc-menu a {
    display: block;
    padding: 6px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, .9);
  }
  .ghc-nav.is-open ul.ghc-menu li:first-child a { padding-top: 4px; }
  .ghc-nav.is-open ul.ghc-menu li:last-child a { padding-bottom: 0; }
  .ghc-nav.is-open .ghc-cta {
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex-basis: auto;
  }
  .ghc-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Ancorado no canto superior direito do header — não participa do flex-wrap.
       Garante que o "X" pra fechar fica sempre no mesmo lugar que o "≡" pra abrir. */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px; /* WCAG 2.5.5 target size mínimo */
    font-size: 22px;
    line-height: 1;
    border-radius: 6px;
  }
  .ghc-burger:hover { background: rgba(255, 255, 255, .08); }
  .ghc-nav.is-open .ghc-burger { top: 10px; transform: none; }
  .ghc-hero { padding: 80px 0 60px; }
  .ghc-section { padding: 80px 0; }
  .ghc-servico { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .ghc-servico .ghc-arrow { display: none; }
  .ghc-depoimentos .ghc-carousel-track > .ghc-depoimento { flex: 0 0 88%; }
  .ghc-depoimento { padding: 36px 24px; }
  .ghc-clientes .ghc-carousel-track > .ghc-cliente-card { flex: 0 0 calc(50% - 12px); min-width: 140px; }
  .ghc-cliente-card { height: 96px; padding: 12px 16px; gap: 6px; }
  .ghc-cliente-card img { max-height: 36px; }
  .ghc-cliente-card .ghc-cliente-nome { font-size: 10px; }
  .ghc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ghc-footer-bottom { flex-direction: column; gap: 8px; }
}

/* ===== A11y: focus visível em interativos ===== */
.ghc-btn:focus-visible,
.ghc-carousel-btn:focus-visible {
  outline: 2px solid var(--ghc-purple);
  outline-offset: 3px;
}
/* Elementos sobre fundo roxo (header + footer): outline amarelo pra contraste. */
.ghc-cta:focus-visible,
.ghc-btn--primary:focus-visible,
.ghc-burger:focus-visible,
.ghc-nav a:focus-visible,
.ghc-footer a:focus-visible {
  outline: 2px solid var(--ghc-yellow);
  outline-offset: 3px;
}

/* ===== A11y: respeita prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .ghc-carousel-track { scroll-snap-type: none; }
}

/* ============================================================
 * v0.7.0 — Comfortable density (applied 10/mai/2026)
 * Tightens vertical rhythm site-wide; mobile scaled ×0.65.
 * Origin: GHC Compactness prototype, "Comfortable" preset.
 * ============================================================ */

/* ===== HEADER ===== */
.ghc-nav { padding: 14px 0; }          /* was 18px */

/* ===== HERO ===== */
.ghc-hero { padding: 88px 0 72px; }    /* was 120px 0 100px */
.ghc-hero h1 {
  font-size: clamp(40px, 6.6vw, 78px); /* was clamp(42px, 7vw, 84px)  — ×0.94 */
  margin: 0 0 28px;                    /* was 0 0 32px */
}
.ghc-hero .ghc-kicker { margin-bottom: 24px; }   /* was 28px */
.ghc-hero p.ghc-lead {
  font-size: clamp(17px, 1.35vw, 19px); /* was clamp(18px,1.4vw,20px) */
  margin: 0 0 40px;                     /* was 0 0 48px */
}

/* ===== Section base ===== */
.ghc-section { padding: 96px 0; }              /* was 120px 0 */
.ghc-section-head { margin-bottom: 56px; }     /* was 72px */
.ghc-section-head h2 {
  font-size: clamp(30px, 4.2vw, 49px);         /* was clamp(32px, 4.5vw, 52px) */
}

/* ===== Serviços ===== */
.ghc-servico {
  padding: 36px 0;                              /* was 48px 0 */
  gap: 40px;                                    /* was 48px */
}
.ghc-servico .ghc-num { font-size: 30px; }      /* was 32px */
.ghc-servico .ghc-body h3 { font-size: 26px; }  /* was 28px */

/* ===== Depoimentos ===== */
.ghc-depoimento { padding: 40px; }              /* was 48px */
.ghc-depoimento blockquote {
  font-size: 19px;                              /* was 20px */
  margin: 0 0 28px;                             /* was 0 0 32px */
}
.ghc-depoimento .ghc-mark { font-size: 112px; } /* was 120px */

/* ===== CTA strip ===== */
.ghc-cta-strip { padding: 80px 0; }              /* was 96px 0 */
.ghc-cta-strip h2 {
  font-size: clamp(34px, 4.8vw, 53px);           /* was clamp(36px, 5vw, 56px) */
}

/* ===== Footer ===== */
.site-footer.ghc-footer { padding: 72px 0 32px; } /* was 80px 0 32px */
.ghc-footer-grid { margin-bottom: 56px; }         /* was 64px */

/* ===== Utilities ===== */
.ghc-kicker a { color: inherit; text-decoration: none; }
.ghc-search-form-wrap { margin-top: 32px; }
.ghc-quem-cta--offset-top { margin-top: 48px; }
.ghc-quem-cta--offset-bottom { margin-bottom: 48px; }

/* ===== Outras páginas (Quem sou / Orçamento / Single serviço / Blog) ===== */
.ghc-section--orcamento,
.ghc-section--quem-sou,
.ghc-section--servicos,
.ghc-section--single-servico,
.ghc-section--blog,
.ghc-section--post-content { padding-top: 56px; }   /* was 64px */

.ghc-hero.ghc-hero--small { padding: 64px 0 40px; } /* was 80px 0 48px */
.ghc-hero.ghc-hero--small h1 {
  font-size: clamp(34px, 5.2vw, 60px);              /* was clamp(36px, 5.5vw, 64px) */
  margin-bottom: 22px;                              /* was 24px */
}

.ghc-quem-grid { gap: 64px; }                       /* was 80px */
.ghc-quem-bio p { font-size: 19px; }                /* was 20px */

.ghc-post { padding: 44px 0; gap: 56px; }           /* was 56px 0; gap: 64px */
.ghc-servico--archive { padding: 44px 0; gap: 40px; } /* was 56px 0; gap: 48px */
.ghc-single-servico-grid { gap: 64px; }             /* was 80px */
.ghc-servico-conteudo-full { font-size: 19px; }     /* was 20px */
.ghc-post-content-wrap { font-size: 19px; }         /* was 20px */

/* ===== Mobile (≤880px) — proportional tightening (×0.65) ===== */
@media (max-width: 880px) {
  .ghc-hero { padding: 56px 0 48px; }
  .ghc-section { padding: 64px 0; }
  .ghc-section-head { margin-bottom: 36px; }
  .ghc-servico { padding: 24px 0; gap: 24px; }
  .ghc-depoimento { padding: 28px 24px; }
  .ghc-cta-strip { padding: 52px 0; }
  .site-footer.ghc-footer { padding: 48px 0 24px; }
  .ghc-footer-grid { margin-bottom: 36px; }

  .ghc-section--orcamento,
  .ghc-section--quem-sou,
  .ghc-section--servicos,
  .ghc-section--single-servico,
  .ghc-section--blog,
  .ghc-section--post-content { padding-top: 36px; }
  .ghc-hero.ghc-hero--small { padding: 40px 0 28px; }

  .ghc-post { padding: 28px 0; gap: 12px; }
  .ghc-servico--archive { padding: 28px 0; gap: 24px; }
}

/* ════════════════════════════════════════════════════════
   v0.8.0 — Services V2 (2×2 cards) + Footer big logo (B)
   ════════════════════════════════════════════════════════ */

/* -------- Services V2: 2×2 card grid (front-page only) --------
 * Scope: `.ghc-svc-v1` modifier no `<div class="ghc-servicos">` da front-page.
 * Archive (`archive-ghc_servico.php`) usa o V1 (linhas ~483-547).
 * NB: o nome "v1" do modifier é vestigial — esse bloco é o V2. Manter por agora.
 * NB2: nth-child(2..4) assume 4 serviços. Se Guilherme adicionar 5º, dot colors
 * e nth-last-child border cleanup ficam errados visualmente. Aceitável hoje.
 */
.ghc-servicos.ghc-svc-v1 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  border: 1px solid var(--ghc-rule) !important;
  border-top: 1px solid var(--ghc-rule) !important;
  background: var(--ghc-bg-card, #fff);
}
.ghc-svc-v1 .ghc-servico {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 14px !important;
  padding: 44px 40px !important;
  border-right: 1px solid var(--ghc-rule);
  border-bottom: 1px solid var(--ghc-rule);
  min-height: 260px;
  position: relative;
  transition: background .25s, padding .25s !important;
  text-decoration: none;
  color: inherit;
}
.ghc-svc-v1 .ghc-servico:nth-child(2n) { border-right: 0; }
.ghc-svc-v1 .ghc-servico:nth-last-child(-n+2) { border-bottom: 0; }
.ghc-svc-v1 .ghc-servico:hover { padding-left: 40px !important; background: #faf9f3; }

/* Number → small uppercase tag, top-left */
.ghc-svc-v1 .ghc-servico .ghc-num {
  font-family: var(--ghc-sans) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: 12px !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ghc-purple) !important;
  align-self: flex-start;
}
.ghc-svc-v1 .ghc-servico .ghc-num::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ghc-yellow, #F6C744); margin-right: 10px; vertical-align: middle; transform: translateY(-1px); }
.ghc-svc-v1 .ghc-servico:nth-child(2) .ghc-num::before { background: var(--ghc-purple); }
.ghc-svc-v1 .ghc-servico:nth-child(3) .ghc-num::before { background: var(--ghc-red, #EA4D49); }
.ghc-svc-v1 .ghc-servico:nth-child(4) .ghc-num::before { background: #1d1d2e; }
.ghc-svc-v1 .ghc-servico .ghc-num::after { content: " / Serviço"; opacity: .65; font-weight: 500; }

/* Title gets the room */
.ghc-svc-v1 .ghc-servico .ghc-body h3 {
  font-size: 34px !important;
  line-height: 1.05 !important;
  letter-spacing: -.01em !important;
  margin: 0 0 10px !important;
}
.ghc-svc-v1 .ghc-servico .ghc-body p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  max-width: 42ch !important;
}

/* Arrow → top-right corner */
.ghc-svc-v1 .ghc-servico .ghc-arrow {
  position: absolute;
  top: 44px;
  right: 40px;
  align-self: auto !important;
  font-size: 22px !important;
  color: var(--ghc-purple) !important;
}
.ghc-svc-v1 .ghc-servico:hover .ghc-arrow { transform: translateX(6px); }

/* Mobile collapse: alinhado com o mobile geral do tema (≤880px), não 780. */
@media (max-width: 880px) {
  .ghc-servicos.ghc-svc-v1 { grid-template-columns: 1fr !important; }
  .ghc-svc-v1 .ghc-servico { border-right: 0 !important; min-height: 0; padding: 32px 24px !important; }
  .ghc-svc-v1 .ghc-servico:nth-last-child(-n+2) { border-bottom: 1px solid var(--ghc-rule); }
  .ghc-svc-v1 .ghc-servico:last-child { border-bottom: 0; }
  .ghc-svc-v1 .ghc-servico .ghc-body h3 { font-size: 28px !important; }
  .ghc-svc-v1 .ghc-servico .ghc-arrow { top: 32px; right: 24px; }
}

/* -------- Footer: replace brand text with big inverted logo -------- */
.ghc-footer-grid .ghc-brand {
  font-size: 0 !important;       /* hide text fallback */
  line-height: 0 !important;
  margin-bottom: 18px;
  max-width: none !important;    /* parent rule usa 30ch que vira 0 com font-size:0 */
}
.ghc-footer-grid .ghc-brand::before {
  content: "";
  display: block;
  width: 280px;
  max-width: 100%;
  height: 96px;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  filter: invert(1) brightness(1.1);
}
.ghc-footer-grid .ghc-brand + p,
.ghc-footer-grid .ghc-brand-tagline {
  font-family: var(--ghc-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  max-width: 34ch;
  opacity: .9;
}

@media (max-width: 760px) {
  .ghc-footer-grid .ghc-brand::before { width: 220px; height: 76px; }
}

/* ============================================================
 * Email links protegidos (mailto via JS, anti-harvester)
 * Ver functions.php → ghc_render_protected_mailto() + js/carousel.js → initMailLinks()
 * ============================================================ */
.ghc-mail-decoy { display: none; }
.ghc-mail-link { cursor: pointer; word-break: break-word; }

/* Bloco "Prefere por email?" no aside da /orcamento/ */
.ghc-orcamento-email-alt {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ghc-rule);
}
.ghc-orcamento-email-alt h4 {
  font-family: var(--ghc-serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--ghc-ink);
  letter-spacing: -.005em;
}
.ghc-orcamento-email-alt p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ghc-ink-soft);
  line-height: 1.5;
}
.ghc-orcamento-email-alt p:last-child { margin-bottom: 0; }
.ghc-orcamento-email-alt .ghc-mail-link {
  color: var(--ghc-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.ghc-orcamento-email-alt .ghc-mail-link:hover {
  color: var(--ghc-purple-deep);
}
.ghc-orcamento-email-alt small {
  font-size: 13px;
  opacity: .8;
}

