/* ==========================================================================
   GENESE — Design System
   Tokens > Base > Layout > Componentes > Secoes > Utilitarios > Responsivo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTES — Sequel Sans
   Coloque os arquivos em /assets/fonts/. Aceita .woff2 (ideal) ou .ttf.
   Enquanto os arquivos nao estiverem la, o fallback mantem o layout intacto.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Sequel Sans Disp';
  src: url('../fonts/SequelSans-MediumDisp.woff2') format('woff2'),
       url('../fonts/SequelSans-MediumDisp.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sequel Sans Head';
  src: url('../fonts/SequelSans-MediumHead.woff2') format('woff2'),
       url('../fonts/SequelSans-MediumHead.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sequel Sans Body';
  src: url('../fonts/SequelSans-MediumBody.woff2') format('woff2'),
       url('../fonts/SequelSans-MediumBody.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sequel Sans Body';
  src: url('../fonts/SequelSans-MediumObliqueBody.woff2') format('woff2'),
       url('../fonts/SequelSans-MediumObliqueBody.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* --------------------------------------------------------------------------
   2. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Cores da marca */
  --ink:        #0E0E0E;
  --ink-deep:   #08090A;
  --ink-soft:   #1A1A1A;
  --ink-line:   rgba(245, 242, 234, 0.12);
  --cream:      #F5F2EA;
  --cream-warm: #F6F1E7;
  --cream-line: rgba(14, 14, 14, 0.10);
  --gold:       #E8A94C;
  --gold-deep:  #C9963C;
  --gold-ink:   #8C6520;   /* dourado escurecido: contraste AA sobre creme */

  /* Texto */
  --text-on-dark:      #F5F2EA;
  --text-on-dark-mute: rgba(245, 242, 234, 0.66);
  --text-on-light:     #0E0E0E;
  --text-on-light-mute: rgba(14, 14, 14, 0.66);

  /* Tipografia */
  --font-disp: 'Sequel Sans Disp', 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-head: 'Sequel Sans Head', 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Sequel Sans Body', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-hero:  clamp(2.5rem, 6.2vw, 5rem);
  --fs-h1:    clamp(2.1rem, 4.6vw, 3.5rem);
  --fs-h2:    clamp(1.8rem, 3.6vw, 2.75rem);
  --fs-h3:    clamp(1.15rem, 1.8vw, 1.4rem);
  --fs-lead:  clamp(1.02rem, 1.5vw, 1.2rem);
  --fs-body:  1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Espaco */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.75rem;
  --gap-lg: 3rem;
  --gap-xl: 5rem;
  --section-y: clamp(4rem, 9vw, 8rem);
  --wrap: 1200px;
  --wrap-narrow: 780px;

  /* Forma */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   3. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-disp);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--gap-sm);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-family: var(--font-head); letter-spacing: -0.01em; line-height: 1.25; }

p { margin: 0 0 var(--gap-sm); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-color: rgba(232, 169, 76, 0.5); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }

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

strong, b { font-weight: 700; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: 0.75rem 1.25rem;
  font-family: var(--font-head); font-size: var(--fs-small);
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--deep { background: var(--ink-deep); color: var(--text-on-dark); }
.section--light { background: var(--cream); color: var(--text-on-light); }
.section--warm { background: var(--cream-warm); color: var(--text-on-light); }
.section--dark p { color: var(--text-on-dark-mute); }
.section--deep p { color: var(--text-on-dark-mute); }

.section__head { max-width: 720px; margin-bottom: var(--gap-lg); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__lead { font-size: var(--fs-lead); color: var(--text-on-light-mute); }
.section--dark .section__lead, .section--deep .section__lead { color: var(--text-on-dark-mute); }

/* Eyebrow — o "no" da marca como marcador estrutural */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-size: var(--fs-micro);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: var(--gap-sm);
}
.section--dark .eyebrow, .section--deep .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: none;
  box-shadow: 0 0 0 4px rgba(232, 169, 76, 0.16);
}
.eyebrow--center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. BOTOES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-head); font-size: 0.9375rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.75rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-deep); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-soft); }

.btn--ghost-light { border-color: var(--ink-line); color: var(--cream); }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost-dark { border-color: var(--cream-line); color: var(--ink); }
.btn--ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.btn--lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row--center { justify-content: center; }

/* Link com seta */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: var(--fs-small);
  color: var(--gold-ink); text-decoration: none;
}
.section--dark .arrow-link, .section--deep .arrow-link { color: var(--gold); }
.arrow-link svg { transition: transform 0.25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--ink-line); background: rgba(8, 9, 10, 0.94); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap-md); min-height: 76px;
}
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand__text {
  font-family: var(--font-disp); font-size: 1.3rem; color: var(--cream); letter-spacing: -0.02em;
}

.nav-primary { margin-left: auto; }
.nav-primary ul { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav-primary a {
  font-family: var(--font-head); font-size: 0.9rem; color: var(--text-on-dark-mute);
  text-decoration: none; position: relative; padding-block: 0.4rem;
  transition: color 0.2s var(--ease);
}
.nav-primary a:hover, .nav-primary .current-menu-item > a { color: var(--cream); }
.nav-primary .current-menu-item > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.header-cta { flex: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--cream); position: relative;
  transition: background 0.2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--cream);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. HERO — assinatura visual: a constelacao da marca
   -------------------------------------------------------------------------- */
.hero {
  position: relative; background: var(--ink-deep); color: var(--text-on-dark);
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden; isolation: isolate;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 55% at 78% 22%, rgba(232, 169, 76, 0.13), transparent 62%);
}
.hero__constellation {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(720px, 62vw); z-index: -1; opacity: 0.55; pointer-events: none;
}
.hero__constellation line { stroke: var(--gold); stroke-width: 1.6; opacity: 0.5; }
.hero__constellation circle { fill: var(--gold); }

.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--gap-xl); align-items: center;
}
.hero__title {
  font-size: var(--fs-hero); line-height: 1.02; letter-spacing: -0.035em; margin-bottom: var(--gap-md);
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__lead {
  font-size: var(--fs-lead); color: var(--text-on-dark-mute);
  max-width: 54ch; margin-bottom: var(--gap-md);
}
.hero__note {
  margin-top: var(--gap-md); font-size: var(--fs-small); color: var(--text-on-dark-mute);
  display: flex; align-items: center; gap: 0.5rem;
}
.hero__media img { border-radius: var(--r-lg); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

/* Barra de prova social */
.proof {
  background: var(--ink); border-block: 1px solid var(--ink-line); color: var(--text-on-dark);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.proof__item { text-align: center; position: relative; }
.proof__item + .proof__item::before {
  content: ''; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--ink-line);
}
.proof__num {
  font-family: var(--font-disp); font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--gold); line-height: 1; letter-spacing: -0.03em; display: block;
}
.proof__label {
  font-family: var(--font-head); font-size: var(--fs-small);
  color: var(--text-on-dark-mute); margin-top: 0.5rem; display: block;
}

/* --------------------------------------------------------------------------
   8. CARDS DE SERVICO
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 1px; background: var(--cream-line); border: 1px solid var(--cream-line); }
.section--dark .cards, .section--deep .cards { background: var(--ink-line); border-color: var(--ink-line); }

.card {
  background: var(--cream); padding: clamp(1.6rem, 2.6vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: background-color 0.3s var(--ease);
  text-decoration: none; color: inherit;
}
.section--warm .card { background: var(--cream-warm); }
.section--dark .card, .section--deep .card { background: var(--ink); }
.card:hover { background: #EFEADC; }
.section--dark .card:hover, .section--deep .card:hover { background: var(--ink-soft); }

.card__icon { width: 30px; height: 30px; color: var(--gold-ink); margin-bottom: 0.35rem; }
.section--dark .card__icon, .section--deep .card__icon { color: var(--gold); }
.card__title { font-family: var(--font-head); font-size: 1.0625rem; margin: 0; letter-spacing: -0.005em; }
.card__text { font-size: 0.9375rem; color: var(--text-on-light-mute); margin: 0; }
.section--dark .card__text, .section--deep .card__text { color: var(--text-on-dark-mute); }

/* --------------------------------------------------------------------------
   9. METODO — nos conectados (a sequencia importa, por isso ha numeracao)
   -------------------------------------------------------------------------- */
.method { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--gap-md); }
.method__step { position: relative; padding-top: 2.5rem; }
.method__step::before {
  content: ''; position: absolute; top: 8px; left: 0; width: 13px; height: 13px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(232,169,76,0.14);
}
.method__step::after {
  content: ''; position: absolute; top: 14px; left: 20px; right: -1.75rem; height: 1px;
  background: linear-gradient(90deg, rgba(232,169,76,0.45), rgba(232,169,76,0.06));
}
.method__step:last-child::after { display: none; }
.method__num {
  font-family: var(--font-head); font-size: var(--fs-micro); letter-spacing: 0.18em;
  color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.method__title { font-family: var(--font-head); font-size: 1.125rem; margin-bottom: 0.4rem; }
.method__text { font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   10. SPLIT (imagem + texto)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--r-lg); }
.split__body h2 { margin-bottom: var(--gap-sm); }

.checklist { list-style: none; margin: var(--gap-md) 0 0; padding: 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9375rem; }
.checklist li::before {
  content: ''; flex: none; width: 8px; height: 8px; margin-top: 0.55rem;
  border-radius: 50%; background: var(--gold);
}

/* --------------------------------------------------------------------------
   11. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--gap-md); }
.testimonial {
  background: var(--ink); border: 1px solid var(--ink-line); border-radius: var(--r-md);
  padding: clamp(1.5rem, 2.6vw, 2rem); display: flex; flex-direction: column; gap: var(--gap-md);
}
.section--light .testimonial, .section--warm .testimonial {
  background: #FFFFFF; border-color: var(--cream-line);
}
.testimonial__quote { font-size: 0.9688rem; margin: 0; flex: 1; }
.testimonial__mark { color: var(--gold); font-family: var(--font-disp); font-size: 2rem; line-height: 0.6; display: block; }
.testimonial__who { display: flex; align-items: center; gap: 0.85rem; }
.testimonial__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.testimonial__name { font-family: var(--font-head); font-size: 0.9375rem; display: block; }
.testimonial__role { font-size: var(--fs-small); opacity: 0.62; display: block; }

/* --------------------------------------------------------------------------
   12. FAQ (acordeao)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--cream-line); }
.section--dark .faq, .section--deep .faq { border-top-color: var(--ink-line); }
.faq__item { border-bottom: 1px solid var(--cream-line); }
.section--dark .faq__item, .section--deep .faq__item { border-bottom-color: var(--ink-line); }

.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-size: 1.0625rem; color: inherit;
  padding: 1.35rem 3rem 1.35rem 0; position: relative; line-height: 1.4;
}
.faq__q::after {
  content: ''; position: absolute; right: 0.5rem; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.3s var(--ease);
}
.faq__q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq__a > div { padding-bottom: 1.4rem; font-size: 0.9375rem; color: var(--text-on-light-mute); max-width: 68ch; }
.section--dark .faq__a > div, .section--deep .faq__a > div { color: var(--text-on-dark-mute); }

/* --------------------------------------------------------------------------
   13. CTA FINAL + FORMULARIO
   -------------------------------------------------------------------------- */
.cta-final { background: var(--ink-deep); color: var(--text-on-dark); position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(232,169,76,0.16), transparent 60%);
}
.cta-final .wrap { position: relative; }
.cta-final__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.form { display: grid; gap: 0.9rem; }
.form__field { display: grid; gap: 0.35rem; }
.form__label { font-family: var(--font-head); font-size: var(--fs-micro); letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.66; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.9375rem;
  background: rgba(245,242,234,0.05); border: 1px solid var(--ink-line);
  color: var(--cream); padding: 0.85rem 1rem; border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(245,242,234,0.35); }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--gold); background: rgba(245,242,234,0.08); outline: none;
}
.form select option { background: var(--ink); color: var(--cream); }
.form textarea { min-height: 108px; resize: vertical; }
.form__hp { position: absolute; left: -9999px; }
.form__consent { font-size: var(--fs-micro); opacity: 0.55; line-height: 1.5; }
.form__msg { font-size: var(--fs-small); padding: 0.8rem 1rem; border-radius: var(--r-sm); }
.form__msg--ok { background: rgba(232,169,76,0.14); color: var(--gold); }
.form__msg--err { background: rgba(220,80,80,0.14); color: #F2A0A0; }

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--text-on-dark); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--gap-lg); padding-bottom: var(--gap-lg); border-bottom: 1px solid var(--ink-line);
}
.footer__brand img { height: 40px; width: auto; margin-bottom: var(--gap-sm); }
.footer__about { font-size: 0.9375rem; color: var(--text-on-dark-mute); max-width: 42ch; }
.footer__col h4 {
  font-family: var(--font-head); font-size: var(--fs-micro); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: var(--gap-sm);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer__col a { font-size: 0.9375rem; color: var(--text-on-dark-mute); text-decoration: none; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--gap-sm); justify-content: space-between; align-items: center;
  padding-top: var(--gap-md); font-size: var(--fs-small); color: var(--text-on-dark-mute);
}
.footer__social { display: flex; gap: 0.9rem; }
.footer__social a { color: var(--text-on-dark-mute); }
.footer__social a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   15. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--ink); border-radius: 999px;
  padding: 0.85rem 1.35rem; font-family: var(--font-head); font-size: 0.9rem;
  text-decoration: none; box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); background: var(--gold-deep); }
.wa-float svg { flex: none; }

/* --------------------------------------------------------------------------
   16. BLOG / CONTEUDO (motor de SEO)
   -------------------------------------------------------------------------- */
.page-hero { background: var(--ink-deep); color: var(--text-on-dark); padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { max-width: 20ch; }
.page-hero__lead { font-size: var(--fs-lead); color: var(--text-on-dark-mute); max-width: 60ch; margin-top: var(--gap-sm); }

.breadcrumbs { font-size: var(--fs-micro); letter-spacing: 0.06em; opacity: 0.6; margin-bottom: var(--gap-sm); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span + span::before { content: '/'; margin: 0 0.5rem; opacity: 0.5; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap-md); }
.post-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--cream-line); border-radius: var(--r-md); overflow: hidden;
  background: #fff; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,14,14,0.08); }
.post-card__thumb { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.post-card__body { padding: 1.35rem; display: grid; gap: 0.5rem; }
.post-card__meta { font-size: var(--fs-micro); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); }
.post-card__title { font-family: var(--font-head); font-size: 1.0625rem; margin: 0; line-height: 1.35; }
.post-card__excerpt { font-size: 0.9063rem; color: var(--text-on-light-mute); margin: 0; }

.entry-content { font-size: 1.0313rem; line-height: 1.78; }
.entry-content > * + * { margin-top: 1.15rem; }
.entry-content h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.75rem; }
.entry-content h3 { font-size: 1.25rem; margin-top: 2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.25rem; }
.entry-content li + li { margin-top: 0.4rem; }
.entry-content li::marker { color: var(--gold-ink); }
.entry-content img, .entry-content figure { border-radius: var(--r-md); }
.entry-content blockquote {
  border-left: 2px solid var(--gold); padding-left: 1.25rem; margin-left: 0;
  font-style: italic; color: var(--text-on-light-mute);
}
.entry-content a { color: var(--gold-ink); }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.entry-content th, .entry-content td { border: 1px solid var(--cream-line); padding: 0.7rem 0.9rem; text-align: left; }
.entry-content th { background: rgba(14,14,14,0.04); font-family: var(--font-head); }

.pagination { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: var(--gap-lg); }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
  border: 1px solid var(--cream-line); border-radius: var(--r-sm); text-decoration: none; font-size: 0.9375rem;
}
.pagination .current { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* --------------------------------------------------------------------------
   17. ANIMACAO DE ENTRADA
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@keyframes draw { from { stroke-dashoffset: 220; } to { stroke-dashoffset: 0; } }
.hero__constellation line { stroke-dasharray: 220; animation: draw 1.6s var(--ease) forwards; }
.hero__constellation circle { animation: pop 0.6s var(--ease) backwards; }
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* --------------------------------------------------------------------------
   18. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .hero__media { order: -1; max-width: 460px; }
  .hero__constellation { opacity: 0.22; right: -28%; width: 90vw; }
  .split--reverse .split__media { order: 0; }
  .method__step::after { display: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav-primary {
    position: fixed; inset: 76px 0 auto; background: var(--ink-deep);
    border-bottom: 1px solid var(--ink-line);
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
  }
  .nav-primary.is-open { max-height: 80vh; overflow-y: auto; }
  .nav-primary ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.25rem 1.5rem; }
  .nav-primary li { border-bottom: 1px solid var(--ink-line); }
  .nav-primary li:last-child { border-bottom: 0; }
  .nav-primary a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav-primary .mobile-cta { margin-top: 1rem; }
  .nav-primary .mobile-cta a {
    background: var(--gold); color: var(--ink); text-align: center;
    border-radius: 999px; padding: 0.95rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .proof__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .proof__item + .proof__item::before { display: none; }
  .proof__item + .proof__item { border-top: 1px solid var(--ink-line); padding-top: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .wa-float span { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
}

/* --------------------------------------------------------------------------
   19. WORDPRESS CORE
   -------------------------------------------------------------------------- */
.alignwide { width: min(100%, 1080px); margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); max-width: none; }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption-text, .wp-element-caption { font-size: var(--fs-small); opacity: 0.65; margin-top: 0.5rem; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

@media print {
  .site-header, .site-footer, .wa-float, .cta-final { display: none !important; }
  body { background: #fff; color: #000; }
}
