/**
 * global.css — Reset, utilitários, botões e componentes base
 * Caue Possatto — Métodos Bioenergéticos
 * Importar DEPOIS de tokens.css e bootstrap-grid
 */

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-corpo);
  font-weight: 300;
  background: var(--verde-profundo);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}

img, svg, video { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ═══════════════════════════════════════════════════════════
   EYEBROW  — rótulo acima dos títulos de seção
═══════════════════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
}
.eyebrow--dourado { color: var(--dourado);      }
.eyebrow--marrom  { color: var(--marrom);        }
.eyebrow--verde   { color: var(--verde-claro);   }
.eyebrow--off     { color: var(--off-white);     }
.eyebrow--escuro  { color: var(--texto-escuro);  }

/* ═══════════════════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════════════════ */
.divider-dourado {
  width: 40px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.4;
  margin: 18px auto;
}
.divider-dourado--left  { margin-left: 0; }
.divider-dourado--right { margin-right: 0; }

/* ═══════════════════════════════════════════════════════════
   BOTÕES
   Prefixo: .btn-cp (Caue Possatto) para não colidir com Bootstrap
═══════════════════════════════════════════════════════════ */
.btn-cp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-corpo);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: var(--tr-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Sólido dourado */
.btn-cp--dourado-solid {
  padding: 16px 44px;
  background: var(--dourado);
  color: var(--verde-profundo);
}
.btn-cp--dourado-solid:hover {
  background: var(--dourado-suave);
  color: var(--verde-profundo);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* Outline dourado */
.btn-cp--dourado-outline {
  padding: 14px 36px;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  background: transparent;
}
.btn-cp--dourado-outline:hover {
  background: var(--dourado);
  color: var(--verde-profundo);
}

/* Outline branco/neutro */
.btn-cp--white-outline {
  padding: 14px 36px;
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--off-white);
  background: transparent;
}
.btn-cp--white-outline:hover {
  border-color: var(--dourado);
  color: var(--dourado);
}

/* Link de texto verde */
.btn-cp--verde-text {
  padding: 0 0 2px;
  color: var(--verde-medio);
  border-bottom: 1px solid rgba(26, 92, 66, 0.35);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  background: transparent;
}
.btn-cp--verde-text:hover {
  color: var(--verde-claro);
  border-bottom-color: var(--verde-claro);
}

.btn-cp--verde-outline {
  color: var(--verde-medio);
  border: 1px solid rgba(26,92,66,.4);
  background: transparent;
}
.btn-cp--verde-outline:hover {
  background: rgba(26,92,66,.06);
  border-color: rgba(26,92,66,.7);
  color: var(--verde-profundo);
}

/* Link com seta → */
.btn-cp--arrow {
  color: var(--dourado);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  gap: 8px;
  background: transparent;
  transition: gap 0.3s ease, color 0.3s ease;
}
.btn-cp--arrow:hover {
  gap: 14px;
  color: var(--dourado-suave);
}

/* ═══════════════════════════════════════════════════════════
   CONTAINER E SEÇÃO
═══════════════════════════════════════════════════════════ */
.container-cp {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sec-pad-h);
}
.container-cp--wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--sec-pad-h);
}
.sec-pad {
  padding: var(--sec-pad-v) var(--sec-pad-h);
}

/* ═══════════════════════════════════════════════════════════
   UTILITÁRIOS DE TEXTO
═══════════════════════════════════════════════════════════ */
.text-dourado    { color: var(--dourado); }
.text-dourado-s  { color: var(--dourado-suave); }
.text-off        { color: var(--off-white); }
.text-claro      { color: var(--texto-claro); }
.text-escuro     { color: var(--texto-escuro); }
.text-marrom     { color: var(--marrom); }
.text-verde      { color: var(--verde-medio); }
.font-display    { font-family: var(--font-display); }
.italic          { font-style: italic; }
.fw-300          { font-weight: 300; }
.fw-400          { font-weight: 400; }
.fw-500          { font-weight: 500; }
.fw-600          { font-weight: 600; }
.text-center     { text-align: center; }
.text-left       { text-align: left; }

/* ═══════════════════════════════════════════════════════════
   BADGE / TAG
═══════════════════════════════════════════════════════════ */
.tag-cp {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-medio);
  opacity: 0.75;
  border: 1px solid rgba(26, 92, 66, 0.2);
  padding: 7px 14px;
  border-radius: var(--radius-btn);
  line-height: 1;
}
.tag-cp--dourado {
  color: var(--dourado);
  border-color: rgba(201, 168, 76, 0.28);
  opacity: 1;
}
.tag-cp--roxo {
  color: var(--roxo-medio);
  border-color: rgba(61, 36, 112, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   ANIMAÇÃO FADE-IN  (JS adiciona .visible via IntersectionObserver)
═══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay-1 { transition-delay: 0.10s; }
.fade-in--delay-2 { transition-delay: 0.20s; }
.fade-in--delay-3 { transition-delay: 0.30s; }
.fade-in--delay-4 { transition-delay: 0.40s; }
.fade-in--delay-5 { transition-delay: 0.50s; }

/* ═══════════════════════════════════════════════════════════
   BOTÃO WHATSAPP FLUTUANTE
═══════════════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-whatsapp);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-family: var(--font-corpo);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--tr-hover);
  text-transform: uppercase;
}
.whatsapp-btn:hover {
  background: #1DA851;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}
.whatsapp-btn__label { line-height: 1; }

@media (max-width: 640px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 50%;
  }
  .whatsapp-btn__label { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL, SELEÇÃO E ACESSIBILIDADE
═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--verde-hero); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--dourado); }

::selection {
  background: rgba(201, 168, 76, 0.22);
  color: var(--off-white);
}

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

/* Reduz motion para quem preferir */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .btn-cp,
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   LAZY LOADING
═══════════════════════════════════════════════════════════ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO — Container e Section padding
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --sec-pad-h: 32px;
  }
}

@media (max-width: 640px) {
  :root {
    --sec-pad-v: 72px;
    --sec-pad-h: var(--sec-pad-h-sm);
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — componente global (incluso em todas as páginas)
═══════════════════════════════════════════════════════════ */
#footer {
  background: #080F0B;
  padding: 56px 48px 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,.08);
}

.footer-logo-img {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-img img {
  display: block;
  width: 280px;
  height: auto;
  mix-blend-mode: lighten;
}
.footer-brand p {
  font-size: .78rem;
  line-height: 1.8;
  color: var(--off-white);
  opacity: .3;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  transition: all .25s;
  opacity: .5;
}
.footer-social a:hover {
  border-color: var(--dourado);
  opacity: 1;
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--off-white);
}

.footer-col h4 {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: .5;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li { list-style: none; }
.footer-col a {
  font-size: .78rem;
  color: var(--off-white);
  opacity: .35;
  text-decoration: none;
  transition: opacity .2s, color .2s;
}
.footer-col a:hover { opacity: .75; color: var(--dourado); }
.footer-col li:not(:has(a)) {
  font-size: .78rem;
  color: var(--off-white);
  opacity: .3;
  line-height: 1.5;
}

.footer-aviso {
  font-size: .72rem;
  line-height: 1.8;
  color: var(--off-white);
  opacity: .22;
  max-width: 680px;
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: .62rem;
  color: var(--off-white);
  opacity: .2;
  letter-spacing: .1em;
}
.footer-copy a {
  color: var(--dourado);
  opacity: .5;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-copy a:hover { opacity: .9; }

.footer-softguia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,.06);
}
.footer-softguia span {
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: .2;
}
.footer-softguia a {
  display: flex;
  align-items: center;
  transition: opacity .25s;
}
.footer-softguia img {
  display: block;
  mix-blend-mode: screen;
  opacity: .55;
  transition: opacity .25s;
}
.footer-softguia a:hover img { opacity: .9; }

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-legal a {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: .2;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-legal a:hover { opacity: .5; }

/* ── Breadcrumb nav — páginas internas ───────────────────── */
.breadcrumb-nav { margin-bottom: 28px; }
.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.breadcrumb-nav li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-nav li:not(:last-child)::after {
  content: '·';
  opacity: .3;
}
.breadcrumb-nav a {
  color: var(--dourado);
  text-decoration: none;
  opacity: .6;
  transition: opacity .2s;
}
.breadcrumb-nav a:hover { opacity: 1; }
.breadcrumb-nav [aria-current="page"] {
  color: var(--off-white);
  opacity: .35;
}

/* ════════════════════════════════════════════════════════════
   BLOCO MÉTODOS AUTORAIS — global (home + internas)
════════════════════════════════════════════════════════════ */
#metodos {
  background: linear-gradient(180deg, var(--verde-profundo) 0%, #071A12 100%);
  padding: var(--sec-pad-v) var(--sec-pad-h);
  position: relative;
  overflow: hidden;
}
#metodos::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(106,63,160,.1) 0%, transparent 65%);
  pointer-events: none;
}

.metodo-header { text-align: center; margin-bottom: 72px; position: relative; }
.metodo-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: .12em;
  margin-top: 14px;
}
.metodo-header h2 strong { color: var(--dourado); font-weight: 500; }
.metodo-header p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dourado-suave);
  opacity: .6;
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* Símbolo do infinito — linha conectora */
.metodo-infinito {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 56px;
  max-width: 520px;
  opacity: .5;
}
.metodo-infinito-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}
.metodo-infinito-simbolo {
  font-size: 1.6rem;
  color: var(--dourado);
  font-weight: 300;
}

.metodos-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.metodo-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--linha);
  border-radius: 3px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.metodo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  opacity: .5;
  transition: opacity .4s;
}
.metodo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,168,76,.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.metodo-card:hover {
  background: rgba(255,255,255,.045);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.metodo-card:hover::before { opacity: 1; }
.metodo-card:hover::after  { opacity: 1; }

.metodo-card--centro {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.035);
}
.metodo-card--centro::before { opacity: .9; }

.metodo-card-icone {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.metodo-card-icone img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: .82;
  transition: opacity .4s, transform .4s;
}
.metodo-card:hover .metodo-card-icone img {
  opacity: 1;
  transform: scale(1.06);
}

/* ∞ Divisor global */
.sec-divider-inf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto 48px;
  opacity: .45;
}
.sdi-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}
.sdi-sim {
  font-size: 1.4rem;
  color: var(--dourado);
  font-weight: 300;
  line-height: 1;
}

.metodo-card-num {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: .55;
  margin-bottom: 18px;
}
.metodo-card-simbolo {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dourado);
  transition: all .4s;
}
.metodo-card:hover .metodo-card-simbolo {
  border-color: var(--dourado);
  background: rgba(201,168,76,.08);
  transform: scale(1.05);
}
.metodo-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.metodo-card-verbo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dourado-suave);
  opacity: .75;
  margin-bottom: 22px;
}
.metodo-card-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--texto-claro);
  opacity: .62;
  margin-bottom: 24px;
}
.metodo-card-para {
  font-size: .72rem;
  line-height: 1.7;
  color: var(--dourado-suave);
  opacity: .55;
  padding-top: 20px;
  margin-bottom: 28px;
  border-top: 1px solid var(--linha);
}
.metodo-card-para strong {
  color: var(--dourado);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.metodo-card-link {
  margin-top: auto;
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s, color .3s;
}
.metodo-card-link:hover { gap: 14px; color: var(--dourado-suave); }
.metodo-cta { text-align: center; margin-top: 56px; }

/* ════════════════════════════════════════════════════════════
   FAIXA SIGLA — cards de acrônimo das páginas de método
════════════════════════════════════════════════════════════ */
.sigla-strip {
  background: var(--verde-profundo);
  border-top: 1px solid rgba(26,92,66,.35);
  border-left: 1px solid rgba(26,92,66,.35);
}
.sigla-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sigla-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(26,92,66,.35);
  border-bottom: 1px solid rgba(26,92,66,.35);
  transition: background .3s, border-color .3s;
  cursor: default;
}
.sigla-card:hover {
  background: rgba(26,92,66,.28);
  border-color: rgba(26,92,66,.65);
}
.sigla-card:hover .sigla-letra {
  opacity: .38;
  transition: opacity .3s;
}
.sigla-card:hover .sigla-desc {
  opacity: .75;
  transition: opacity .3s;
}
.sigla-letra {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: .2;
  line-height: 1;
  margin-bottom: 20px;
}
.sigla-titulo {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 500;
  margin-bottom: 12px;
}
.sigla-desc {
  font-size: .82rem;
  line-height: 1.75;
  color: var(--off-white);
  opacity: .52;
}

/* ════════════════════════════════════════════════════════════
   COMO FUNCIONA — SESSÃO (home + como-funciona.php)
════════════════════════════════════════════════════════════ */
#sessao {
  background: var(--verde-profundo);
  padding: var(--sec-pad-v) var(--sec-pad-h);
}
.sec-sessao-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sessao-texto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--off-white);
  margin: 14px 0 20px;
}
.sessao-texto > p {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--texto-claro);
  opacity: .65;
  margin-bottom: 32px;
}
.sessao-passos { display: flex; flex-direction: column; }
.passo {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--linha);
}
.passo:last-child { border-bottom: none; }
.passo-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: .3;
  line-height: 1.1;
  min-width: 28px;
  transition: opacity .2s;
}
.passo:hover .passo-num { opacity: .7; }
.passo-titulo {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dourado-suave);
  margin-bottom: 6px;
}
.passo-desc {
  font-size: .82rem;
  line-height: 1.72;
  color: var(--texto-claro);
  opacity: .55;
}

/* Variante clara dos passos — fundo off-white */
.sessao-passos--light .passo { border-bottom-color: rgba(13,59,46,.12); }
.sessao-passos--light .passo-titulo { color: var(--verde-medio, #1A5C42); }
.sessao-passos--light .passo-desc { color: var(--texto-escuro); opacity: .7; }

/* ════════════════════════════════════════════════════════════
   BODY IN SYNC — global (home + body-in-sync.php)
════════════════════════════════════════════════════════════ */
#body-sync {
  background: linear-gradient(180deg, #071A12 0%, var(--verde-profundo) 100%);
  padding: var(--sec-pad-v) var(--sec-pad-h);
  position: relative;
  overflow: hidden;
}
#body-sync::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,94,60,.1) 0%, transparent 65%);
  pointer-events: none;
}

.bodysync-header { text-align: center; margin-bottom: 64px; position: relative; }
.bodysync-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: .06em;
  margin-top: 14px;
}
.bodysync-header p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dourado-suave);
  opacity: .6;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.75;
}
.bodysync-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.bodysync-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--linha);
  border-top: 2px solid var(--marrom);
  border-radius: 3px;
  padding: 36px 26px;
  transition: all .3s;
}
.bodysync-card:hover {
  background: rgba(255,255,255,.045);
  transform: translateY(-5px);
}
.bodysync-icone {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: rgba(26,92,66,.55);
  flex-shrink: 0;
}
.bodysync-icone svg { width: 100%; height: 100%; display: block; }
.bodysync-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dourado);
  margin-bottom: 12px;
}
.bodysync-card p {
  font-size: .84rem;
  line-height: 1.75;
  color: var(--texto-claro);
  opacity: .6;
}

/* ════════════════════════════════════════════════════════════
   8 ENERGIAS PRIMORDIAIS CRÍSTICAS — global (home + renascer)
════════════════════════════════════════════════════════════ */
#energias {
  background: linear-gradient(170deg, #1A0C38 0%, #0E0820 45%, #160C32 100%);
  padding: var(--sec-pad-v) var(--sec-pad-h);
  position: relative;
  overflow: hidden;
}

/* Auroras e brilho central dourado */
#energias::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 52%, rgba(201,168,76,.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at -5% 35%,  rgba(130,70,255,.45) 0%, transparent 58%),
    radial-gradient(ellipse 60% 75% at 105% 62%, rgba(90,40,220,.42) 0%, transparent 55%),
    radial-gradient(ellipse 50% 38% at 50% -2%,  rgba(160,100,255,.32) 0%, transparent 52%),
    radial-gradient(ellipse 35% 30% at 50% 102%, rgba(110,55,230,.35) 0%, transparent 50%);
  pointer-events: none;
}


.energias-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.energias-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--off-white);
  margin-top: 14px;
}
.energias-header p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dourado-suave);
  opacity: .65;
  max-width: 500px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.energias-grid,
.energias-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.energias-row2 { margin-top: 16px; }

.energia-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 3px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: all .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.energia-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.energia-card:hover {
  border-color: rgba(201,168,76,.28);
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
}
.energia-card:hover::before { opacity: 1; }

.energia-card--renascimento {
  border-color: rgba(201,168,76,.25);
  background: rgba(201,168,76,.04);
}
.energia-card--renascimento::after {
  content: none;
}
.energia-card--renascimento .energia-icone {
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.1);
}

.energia-icone {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,.7);
  background: rgba(201,168,76,.06);
  transition: all .3s;
}
.energia-card:hover .energia-icone {
  border-color: var(--dourado);
  box-shadow: 0 0 16px rgba(201,168,76,.18);
}
.energia-nome {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 10px;
}
.energia-desc {
  font-size: .8rem;
  line-height: 1.72;
  color: var(--off-white);
  opacity: .55;
  margin-bottom: 14px;
}
.energia-pergunta {
  font-family: var(--font-display);
  font-size: .9rem;
  font-style: italic;
  color: var(--dourado-suave);
  opacity: .7;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   LOCALIZAÇÃO — bloco mapa + info (home + localizacao.php)
════════════════════════════════════════════════════════════ */
.local-header { text-align: center; margin-bottom: 56px; }
.local-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--verde-profundo);
  letter-spacing: .06em;
  margin-top: 14px;
}
.local-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border: 1px solid rgba(13,59,46,.12);
  border-radius: 4px;
  overflow: hidden;
}
.local-mapa {
  min-height: 420px;
  background: linear-gradient(135deg, var(--verde-profundo), var(--roxo));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  overflow: hidden;
}
.local-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.local-info {
  padding: 48px 44px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.local-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--verde-profundo);
  margin-bottom: 24px;
  line-height: 1.25;
}
.local-clinica {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--marrom);
  opacity: .8;
  margin-bottom: 28px;
}
.local-item { margin-bottom: 18px; }
.local-item-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--marrom);
  margin-bottom: 4px;
}
.local-item-valor {
  font-size: .92rem;
  color: var(--texto-escuro);
  opacity: .8;
  line-height: 1.5;
}
.local-item-valor a {
  color: var(--verde-profundo);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,59,46,.2);
}
.local-item-valor a:hover { color: var(--marrom); }
.local-btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}

/* ════════════════════════════════════════════════════════════
   ARTIGOS — cards e grid (home + página de listagem)
════════════════════════════════════════════════════════════ */
.artigos-header { text-align: center; margin-bottom: 56px; }
.artigos-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--texto-escuro);
  margin-top: 14px;
}
.artigos-header p {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: .88rem;
  line-height: 1.8;
  color: var(--texto-escuro);
  opacity: .5;
}
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 44px;
}
.artigo-card {
  padding: 32px 28px;
  border: 1px solid rgba(13,59,46,.1);
  border-radius: 3px;
  text-decoration: none;
  display: block;
  transition: all .3s;
  background: #fff;
}
.artigo-card:hover {
  border-color: rgba(26,92,66,.3);
  box-shadow: 0 4px 18px rgba(13,59,46,.07);
  transform: translateY(-2px);
}
.artigo-tag {
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--verde-medio);
  opacity: .65;
  margin-bottom: 10px;
  display: block;
}
.artigo-titulo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--texto-escuro);
  line-height: 1.4;
  margin-bottom: 10px;
}
.artigo-resumo {
  font-size: .8rem;
  line-height: 1.7;
  color: var(--texto-escuro);
  opacity: .5;
}
.artigo-ver-mais {
  display: inline-block;
  margin-top: 18px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--verde-medio);
  opacity: .6;
  transition: opacity .25s;
}
.artigo-card:hover .artigo-ver-mais { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--verde-profundo);
  border-top: 1px solid rgba(201,168,76,.18);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}
.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
}
.cookie-banner-txt {
  font-size: .82rem;
  line-height: 1.65;
  color: var(--off-white);
  opacity: .8;
  margin: 0;
}
.cookie-banner-link {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .85;
  transition: opacity .2s;
}
.cookie-banner-link:hover { opacity: 1; }
.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 2px;
  font-family: var(--font-corpo);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, background .2s;
  border: none;
}
.cookie-btn--accept {
  background: var(--dourado);
  color: #0D3B2E;
}
.cookie-btn--accept:hover { opacity: .88; }
.cookie-btn--reject {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(244,239,230,.25);
}
.cookie-btn--reject:hover { border-color: rgba(244,239,230,.55); }
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
    gap: 16px;
  }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ═══════════════════════════════════════════════════════════
   POLÍTICA DE PRIVACIDADE
═══════════════════════════════════════════════════════════ */
.politica-content {
  max-width: 780px;
  margin: 0 auto;
  color: var(--texto-escuro);
}
.politica-intro {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--texto-escuro);
  opacity: .75;
}
.politica-secao {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(13,59,46,.1);
}
.politica-secao--contato {
  background: rgba(13,59,46,.04);
  border: 1px solid rgba(13,59,46,.1);
  border-radius: 3px;
  padding: 32px;
  margin-top: 48px;
}
.politica-h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--verde-profundo);
  margin-bottom: 16px;
  line-height: 1.4;
}
.politica-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--texto-escuro);
  opacity: .75;
}
.politica-lista {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}
.politica-lista li {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--texto-escuro);
  opacity: .7;
  padding-left: 18px;
  position: relative;
}
.politica-lista:not(.politica-lista--simples) li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--verde-medio);
  opacity: .5;
  font-size: .75rem;
  top: 3px;
}
.politica-fechamento {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(13,59,46,.1);
  font-size: .82rem !important;
  font-style: italic;
  color: var(--texto-escuro) !important;
  opacity: .45 !important;
  text-align: center;
}
.artigos-cta { text-align: center; }
