/* ── Variáveis ────────────────────────────────────────────────────────────── */
:root {
  --green:       #1A3328;
  --green-mid:   #243d30;
  --green-light: #2e5040;
  --gold:        #A89060;
  --gold-light:  #c4ae84;
  --gold-dim:    rgba(168,144,96,.3);
  --cream:       #F7F4EF;
  --cream-dark:  #EDE8DF;
  --text:        #2a2a2a;
  --text-muted:  #6b6b6b;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

/* ── Reset / Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
#navbar {
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease;
}
#navbar.scrolled {
  background: var(--green);
  box-shadow: 0 1px 24px rgba(0,0,0,.18);
}

/* Link do menu + indicador de página atual */
.nav-link-pub { position: relative; }
.nav-link-pub:hover { color: var(--gold); }
.nav-link-pub::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s cubic-bezier(0.22,1,0.36,1);
}
.nav-link-pub:hover::after { transform: scaleX(.7); }
.nav-link-pub.nav-current { color: var(--gold); }
.nav-link-pub.nav-current::after { transform: scaleX(1); }

/* ── LABEL (pequena tag de seção) ─────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ── TÍTULOS DE SEÇÃO ─────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--green);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 520px;
}

/* Linha decorativa dourada */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  margin: 20px 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* Linha horizontal full-width */
.section-rule {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .2;
  min-width: 40px;
  align-self: flex-end;
  margin-bottom: 6px;
}

/* ── BOTÕES ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .85rem 2.4rem;
  border: 1px solid var(--green);
  transition: background .3s, color .3s, border-color .3s;
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .85rem 2.4rem;
  border: 1px solid rgba(247,244,239,.35);
  transition: background .3s, border-color .3s;
}
.btn-outline:hover {
  background: rgba(247,244,239,.07);
  border-color: rgba(247,244,239,.65);
}

.btn-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .85rem 2.4rem;
  border: 1px solid var(--gold-dim);
  transition: all .3s;
}
.btn-gold:hover {
  background: rgba(168,144,96,.08);
  border-color: var(--gold);
}

/* Variante preenchida — alta legibilidade sobre fundos claros/imersivos */
.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .85rem 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(168,144,96,.28);
  transition: all .3s;
}
.btn-gold-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 22px rgba(168,144,96,.38);
  transform: translateY(-1px);
}

/* ── HERO BASE ────────────────────────────────────────────────────────────── */
.hero-section {
  /* Profundidade 3D: foco de luz atrás do monograma (direita) +
     realce central sutil + vinheta escura nas bordas sobre o verde base */
  background:
    radial-gradient(120% 100% at 78% 38%,
      rgba(196, 174, 132, .20) 0%,
      rgba(46, 80, 64, .10) 34%,
      rgba(26, 51, 40, 0) 60%),
    radial-gradient(140% 120% at 20% 90%,
      rgba(0, 0, 0, .28) 0%,
      rgba(0, 0, 0, 0) 55%),
    linear-gradient(155deg, var(--green-light) 0%, var(--green) 46%, #142a20 100%);
  position: relative;
  overflow: hidden;
}
/* Halo de luz difuso atrás do monograma → sensação de profundidade */
.hero-monogram::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 130%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(228, 214, 186, .16) 0%,
    rgba(228, 214, 186, .06) 34%,
    rgba(228, 214, 186, 0) 68%);
  pointer-events: none;
  z-index: -1;
}
.hero-monogram { position: relative; }
/* círculos decorativos */
.hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(168,144,96,.12);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: 60px; right: 60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(168,144,96,.07);
  pointer-events: none;
}

/* ── HOME IMERSIVA: fundo 3D global (verde → dourado quente no scroll) ─────── */
/* O gradiente vai direto no body (propaga p/ o canvas) com attachment fixo →
   sensação de profundidade fixa enquanto o conteúdo rola por cima.
   O JS (immersive.js) interpola as CSS vars conforme o scroll. */
/* Fundo imersivo: TODAS as cores derivam do tema (painel Aparência).
   O immersive.js interpola essas vars no scroll: verde profundo (topo) →
   creme suave (base), mantendo a profundidade 3D via halo + vinheta.
   --ink acompanha o inverso (claro → escuro) para o texto seguir legível. */
body.home-immersive {
  --depth-top:    var(--green-light);
  --depth-bottom: var(--green);
  --depth-glow:   rgba(168, 144, 96, .18);
  --ink:          var(--cream);
  background-color: var(--green);
  background-image:
    radial-gradient(115% 85% at 80% 14%, var(--depth-glow) 0%, rgba(0,0,0,0) 56%),
    radial-gradient(120% 100% at 10% 100%, rgba(0,0,0,.16) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(178deg, var(--depth-top) 0%, var(--depth-bottom) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* No modo imersivo o hero usa o fundo global (mantém só os círculos decorativos) */
body.home-immersive .hero-section { background: transparent; }

/* ── PÁGINAS INTERNAS IMERSIVAS: mesmo fundo 3D da home ────────────────────── */
/* Usa EXATAMENTE a mesma distribuição de cores da home: o gradiente verde→creme
   da paleta se espalha pela PÁGINA INTEIRA (fixo), não só pelo banner. O JS
   (immersive.js) interpola as vars no scroll — como a página interna é curta, a
   transição verde→creme acontece mais rápido, proporcional ao tamanho menor. */
body.page-immersive {
  --depth-top:    var(--green-light);
  --depth-bottom: var(--green);
  --depth-glow:   rgba(168, 144, 96, .18);
  --ink:          var(--cream);
  background-color: var(--green);
  background-image:
    radial-gradient(115% 85% at 80% 14%, var(--depth-glow) 0%, rgba(0,0,0,0) 56%),
    radial-gradient(120% 100% at 10% 100%, rgba(0,0,0,.16) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(178deg, var(--depth-top) 0%, var(--depth-bottom) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Banner sem caixa opaca: revela o fundo global (só mantém os círculos decorativos).
   Reserva a primeira dobra (min-height) para que o TOPO verde fique apenas sob o
   banner (texto claro), e o conteúdo de leitura só apareça ao rolar — quando o
   gradiente já clareou para o creme. Assim TODAS as páginas (curtas ou longas)
   se comportam como a /sobre: leitura sempre sobre fundo claro. */
body.page-immersive .hero-section {
  background: transparent;
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Com o hero centralizado verticalmente, o padding de topo original deixa de ser
   necessário para empurrar o conteúdo — o flex cuida do alinhamento. */
body.page-immersive .hero-section { padding-top: 5rem; padding-bottom: 3rem; }

/* No mobile a primeira dobra reservada de 54vh deixa muito espaço vazio entre o
   título do banner e o primeiro conteúdo (ex.: a foto na /sobre). Reduzimos a
   dobra e ancoramos o título na base do banner para que o conteúdo suba. */
@media (max-width: 767px) {
  body.page-immersive .hero-section {
    min-height: 40vh;
    justify-content: flex-end;
    padding-top: 6rem;
    padding-bottom: 1.5rem;
  }

  /* No mobile as seções de conteúdo herdam paddings verticais pensados para
     desktop (py-24 = 96px, py-20 = 80px, etc.), criando grandes "deadzones".
     Aqui reduzimos essas medidas globalmente. Os seletores usam `main` para
     ganhar especificidade sobre as utilitárias do Tailwind. Os paddings de
     topo (pt-*) são reduzidos com moderação para ainda liberarem o cabeçalho
     fixo. Os heros das páginas page-immersive já são tratados na regra acima. */
  main .py-24 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
  main .py-20 { padding-top: 2.5rem;  padding-bottom: 2.5rem; }
  main .py-16 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
  main .py-32 { padding-top: 3.5rem;  padding-bottom: 3.5rem; }

  main .pb-28 { padding-bottom: 2.75rem; }
  main .pb-24 { padding-bottom: 2.75rem; }
  main .pb-20 { padding-bottom: 2.5rem; }
  main .pb-16 { padding-bottom: 2.25rem; }

  main .pt-36 { padding-top: 5.5rem; }
  main .pt-32 { padding-top: 5.5rem; }
  main .pt-24 { padding-top: 5rem; }
}

/* Conteúdo transparente para revelar o gradiente da página inteira
   (os cards internos mantêm o próprio fundo). */
body.page-immersive main > section.bg-cream,
body.page-immersive main > section.bg-cream-dark {
  background-color: transparent;
}

/* Conteúdo acima da camada de partículas para que o ícone de perfil (cena
   avatar) possa repousar ATRÁS dele, no fundo 3D. O "RB" do cabeçalho volta
   para cima via z-index dinâmico no JS (applyLayer). */
body.page-immersive main   { position: relative; z-index: 1; }
body.page-immersive footer { position: relative; z-index: 1; }

/* ── TEXTO ADAPTATIVO SOBRE O GRADIENTE ───────────────────────────────────── */
/* Elementos que ficam direto sobre o fundo seguem --ink (claro no topo verde,
   escuro na base creme). Cards/banners com fundo próprio não usam isto. */
body.home-immersive .immersive-ink,
body.page-immersive .immersive-ink { color: var(--ink); }
body.home-immersive .section-title--light,
body.page-immersive .section-title--light { color: var(--ink); }
/* Títulos/subtítulos de leitura das páginas internas também acompanham --ink:
   claros no topo (banner verde) e escuros já na área creme de leitura. Assim,
   se um título "espia" no rodapé da dobra sobre o verde, continua legível — sem
   precisar alongar o header. O <em> dourado mantém o destaque de marca. */
body.page-immersive .section-title  { color: var(--ink); }
body.page-immersive .section-subtitle { color: color-mix(in srgb, var(--ink) 74%, transparent); }
body.home-immersive .btn-outline,
body.page-immersive .btn-outline {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
}
body.home-immersive .btn-outline:hover,
body.page-immersive .btn-outline:hover {
  border-color: color-mix(in srgb, var(--ink) 62%, transparent);
  background: color-mix(in srgb, var(--ink) 7%, transparent);
}

/* ── CANVAS DE PARTÍCULAS FULL-VIEWPORT ───────────────────────────────────── */
/* Camada ambiente fixa: fica atrás do conteúdo, acima do fundo 3D do body. */
#site-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}
body.particles-on #site-particles { opacity: 1; }
/* Conteúdo e rodapé sobem acima das partículas (que ficam em z-index:0) */
body.home-immersive main { position: relative; z-index: 1; }
body.home-immersive footer { position: relative; z-index: 1; }
/* Com as partículas ativas, o SVG estático do hero cede lugar às partículas vivas */
body.particles-on .rb-fallback { opacity: 0; }

/* ── PARTÍCULAS NAS PÁGINAS INTERNAS (não-home) ───────────────────────────── */
/* A nuvem ambiente/figuras repousam no FUNDO 3D, ATRÁS do conteúdo (z-0) — como
   na home. O banner (.hero-section) é transparente no modo page-immersive, então
   as partículas aparecem através dele. `main`/`footer` (z-1) ficam por cima. */
body:not(.home-immersive) #site-particles { z-index: 0; }

/* ── LOGO DA MARCA NA HOME ─────────────────────────────────────────────────── */
/* Imagem original da cliente ("Rb development"), centralizada logo acima da
   legenda ROSANA BRITO na coluna direita do hero. */
.rb-logo-img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  margin: 0 auto 1.5rem;
}

/* Âncora do monograma no banner das páginas internas. É invisível: serve apenas
   para o motor medir onde remontar o "RB". Absoluta (rola com a página), logo o
   "RB" acompanha o banner e sai de cena junto com ele.
   Dimensão ≈ .rb-stage da home (290×188, proporção 320/208) → mesmo tamanho do
   monograma inicial; posicionada à direita e mais baixa para ficar PARALELA ao
   título (como na home), sem colar no canto. */
.rb-header-anchor {
  position: absolute;
  top: 150px;
  right: 8%;
  width: 290px;
  height: 188px;
  pointer-events: none;
  z-index: -1;
}
/* Telas médias: reduz um pouco para não invadir o título mais longo */
@media (max-width: 1100px) {
  .rb-header-anchor { width: 220px; height: 143px; right: 5%; top: 132px; }
}
@media (max-width: 767px) { .rb-header-anchor { display: none; } }

/* Âncora do avatar (Sobre): cobre exatamente o círculo da foto para que as
   partículas montem o ícone de perfil sobre ele ao rolar. */
.rb-avatar-anchor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 767px) { .rb-avatar-anchor { display: none; } }

/* ── MONOGRAMA "RB" EM PARTÍCULAS (hero) ──────────────────────────────────── */
.hero-monogram {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Palco do monograma: proporção fixa; canvas e fallback se sobrepõem */
.rb-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 208;
}
.rb-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .8s ease;
}
.rb-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity .6s ease;
}
/* Quando o JS ativa as partículas: revela o canvas e some com o fallback */
.rb-stage.is-active .rb-canvas { opacity: 1; }
.rb-stage.is-active .rb-fallback { opacity: 0; pointer-events: none; }

/* Legenda estática sob o monograma */
.rb-caption {
  margin-top: 10px;
  text-align: center;
}
.rb-caption-line {
  display: block;
  width: 128px;
  height: 1px;
  margin: 0 auto 16px;
  background: var(--gold);
  opacity: .55;
}
.rb-caption-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 5px;
  color: var(--cream);
}
.rb-caption-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 8px;
}

/* ── VISIBILIDADE DE BLOCOS (olho no painel Aparência) ────────────────────── */
/* Bloco escondido pela admin — some do site e, por não ocupar espaço, encolhe
   a página. A animação de esconder/mostrar é feita na prévia via JS (max-height). */
.rb-vis-off { display: none !important; }

/* Grade de pilares em flex centralizado: quando um pilar é escondido, os
   restantes se recentralizam automaticamente (2 → dupla central, 1 → único centro). */
.rb-pillar-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
}
.rb-pillar-grid > .pillar-card {
  flex: 1 1 300px;
  max-width: 560px;
}
@media (max-width: 767px) {
  .rb-pillar-grid > .pillar-card { flex-basis: 100%; max-width: none; }
}

/* ── PILLAR CARD ──────────────────────────────────────────────────────────── */
.pillar-card {
  background: var(--green);
  padding: 52px 40px 48px;
  position: relative;
  overflow: hidden;
  transition: background .35s ease;
}
.pillar-card:hover { background: var(--green-light); }
.pillar-card::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(168,144,96,.1);
  pointer-events: none;
  transition: transform .5s ease;
}
.pillar-card:hover::before { transform: scale(1.5); }

.pillar-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  color: rgba(168,144,96,.18);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.pillar-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.25;
}
.pillar-subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}
.pillar-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,244,239,.62);
}
.pillar-ref {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(168,144,96,.18);
  font-size: 11px;
  color: rgba(168,144,96,.55);
  font-family: var(--font-heading);
  font-style: italic;
  letter-spacing: .04em;
}

/* ── TOOL ITEM ────────────────────────────────────────────────────────────── */
.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-dim);
}
.tool-item:first-child { border-top: 1px solid var(--gold-dim); }

.tool-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.tool-icon span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}
.tool-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--green);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.tool-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── REF TAGS ─────────────────────────────────────────────────────────────── */
.ref-tag {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: rgba(247,244,239,.5);
  padding: 8px 20px;
  border: 1px solid rgba(168,144,96,.2);
  letter-spacing: .04em;
  transition: all .3s ease;
  cursor: default;
  display: inline-block;
}
.ref-tag:hover {
  color: var(--gold-light);
  border-color: rgba(168,144,96,.5);
  background: rgba(168,144,96,.06);
}

/* ── FORM INPUTS ──────────────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(168,144,96,.3);
  padding: .75rem 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.form-input::placeholder { color: var(--text-muted); font-weight: 300; }
.form-input:focus { border-bottom-color: var(--gold); }

.form-input--box {
  border: 1px solid rgba(168,144,96,.25);
  padding: .75rem 1rem;
  background: transparent;
}
.form-input--box:focus { border-color: var(--gold); }

/* ── FLASH MESSAGES ───────────────────────────────────────────────────────── */
.flash-msg {
  animation: slideIn .3s ease-out, fadeOut .4s 3.6s forwards;
}
@keyframes slideIn {
  from { opacity:0; transform:translateX(40px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeOut { to { opacity:0; pointer-events:none; } }

/* ── SERVICE CARD ─────────────────────────────────────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid rgba(168,144,96,.15);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(26,51,40,.1);
  transform: translateY(-4px);
}
.service-card__img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.25;
}
.service-card__desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.service-card__price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
}

/* ── EVENT CARD ───────────────────────────────────────────────────────────── */
.event-card {
  display: flex;
  border: 1px solid rgba(168,144,96,.18);
  overflow: hidden;
  transition: box-shadow .3s;
  background: #fff;
}
.event-card:hover { box-shadow: 0 6px 32px rgba(26,51,40,.08); }

/* ── STAT BLOCK ───────────────────────────────────────────────────────────── */
.stat-block {
  border-top: 1px solid var(--gold-dim);
  padding-top: 20px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── AOS override — ease-out-expo para transições mais fluidas ────────────── */
[data-aos] {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform, opacity;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CARRINHO — Ícone flutuante circular + Drawer lateral + Animações
══════════════════════════════════════════════════════════════════════════════ */

/* ── Botão flutuante (circular, levitando) ─────────────────────────────────── */
.float-cart-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  border: 1.5px solid rgba(168,144,96,.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 50;
  /* Sombra multi-camada → efeito de levitação */
  box-shadow:
    0 2px  6px  rgba(26,51,40,.25),
    0 8px  20px rgba(26,51,40,.35),
    0 18px 40px rgba(26,51,40,.18);
  transition:
    transform      .25s cubic-bezier(.34,1.56,.64,1),
    box-shadow     .25s ease,
    background     .2s ease;
}
.float-cart-btn:hover {
  transform: scale(1.15) translateY(-3px);
  background: var(--green-light);
  box-shadow:
    0 4px  10px rgba(26,51,40,.3),
    0 14px 32px rgba(26,51,40,.45),
    0 28px 55px rgba(26,51,40,.22);
}
.float-cart-btn:active { transform: scale(1.05) translateY(-1px); }

/* ── Badge de quantidade ───────────────────────────────────────────────────── */
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  border: 2px solid var(--cream);
}

/* Badge vermelho do inbox de ingressos */
.inbox-badge {
  background: #dc2626;
  color: #fff;
}

/* ── Animações do carrinho ─────────────────────────────────────────────────── */
@keyframes cart-icon-bounce {
  0%   { transform: scale(1.15) translateY(-3px); }
  20%  { transform: scale(1.45) translateY(-6px) rotate(-10deg); }
  45%  { transform: scale(0.88) translateY(-1px) rotate(5deg); }
  65%  { transform: scale(1.18) translateY(-3px) rotate(-3deg); }
  80%  { transform: scale(0.97) translateY(-2px) rotate(1deg); }
  100% { transform: scale(1.15) translateY(-3px) rotate(0deg); }
}
@keyframes badge-pop {
  0%   { transform: scale(0.3); opacity: 0; }
  55%  { transform: scale(1.4); }
  75%  { transform: scale(0.9); }
  100% { transform: scale(1);   opacity: 1; }
}
.cart-icon-bounce { animation: cart-icon-bounce .56s cubic-bezier(.36,.07,.19,.97) both; }
.cart-badge-pop   { animation: badge-pop        .32s cubic-bezier(.36,.07,.19,.97) both; }

/* ── Bolinha que voa até o carrinho (criada via JS, animada com WAAPI) ──────── */
.cart-fly-dot {
  width: 46px; height: 46px;
  margin: -23px 0 0 -23px;          /* centraliza no ponto de origem */
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 70%);
  border: 1.5px solid rgba(247,244,239,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  box-shadow: 0 6px 18px rgba(26,51,40,.35), 0 0 0 6px rgba(168,144,96,.12);
}

/* ── Overlay de fundo ──────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,51,40,.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.cart-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Drawer lateral ────────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: #fff;
  border-left: 1px solid rgba(168,144,96,.2);
  box-shadow: -8px 0 40px rgba(26,51,40,.15);
  z-index: 60;
  display: flex; flex-direction: column;
  transform: translate3d(100%,0,0);
  transition: transform .38s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
  backface-visibility: hidden;
}
.cart-drawer--open { transform: translate3d(0,0,0); }

/* ── Botão de fechar ───────────────────────────────────────────────────────── */
.cart-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(26,51,40,.4);
  border: 1px solid rgba(168,144,96,.2);
  transition: color .2s, border-color .2s, background .2s;
}
.cart-close-btn:hover {
  color: var(--green);
  border-color: rgba(168,144,96,.5);
  background: rgba(168,144,96,.06);
}

/* ── Estado vazio ──────────────────────────────────────────────────────────── */
.cart-empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

/* ── Item no drawer ────────────────────────────────────────────────────────── */
.cart-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dark);
  transition: background .18s ease;
}
.cart-item:hover { background: var(--cream); }

.cart-item__img {
  width: 62px; height: 62px; flex-shrink: 0;
  overflow: hidden;
  background: var(--cream-dark);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__img--placeholder {
  display: flex; align-items: center; justify-content: center;
}

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 13px; font-weight: 400; color: var(--green);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.cart-item__price {
  font-size: 11px; font-weight: 300; color: var(--text-muted);
}
.cart-item__qty {
  font-size: 10px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}

.cart-item__actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  flex-shrink: 0;
}
.cart-item__subtotal {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 300; color: var(--green);
}
.cart-remove {
  color: rgba(168,144,96,.5);
  transition: color .18s ease;
}
.cart-remove:hover { color: #ef4444; }

/* ── Rodapé do drawer ──────────────────────────────────────────────────────── */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(168,144,96,.15);
  background: #fff;
}
