/* ============================================================
   ITAJUBÁ COUNTRY CLUB — Sistema visual
   Títulos: Playfair Display · Textos: Montserrat
   Tema claro (padrão) + escuro · Paleta verde musgo + dourado
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --gold:        #C5A059;
  --gold-soft:   #d8bd86;
  --gold-deep:   #a8854a;
  --green:       #3B5F20;
  --green-musgo: #192E22;
  --blue-icc:    #0E98E0;
  --yellow-icc:  #F5C303;

  /* Tema CLARO (padrão) */
  --bg:        #FDFDFB;
  --bg-alt:    #F3F1EC;
  --surface:   #FFFFFF;
  --surface-2: #F6F6F6;
  --ink:       #192E22;
  --ink-soft:  #47584D;
  --ink-mute:  #6c7a70;
  --line:      rgba(25,46,34,.12);
  --line-soft: rgba(25,46,34,.07);
  --hero-ink:  #FDFDFB;
  --shadow:    0 18px 50px -22px rgba(25,46,34,.35);
  --shadow-sm: 0 8px 24px -14px rgba(25,46,34,.30);
  --ph-a: #e7e3d8;
  --ph-b: #dcd6c6;
  --ph-ink: #8a8064;

  /* Tipografia */
  --f-head: "Playfair Display", Georgia, serif;
  --f-body: "Montserrat", system-ui, sans-serif;

  /* Métricas */
  --nav-h: 86px;
  --r: 14px;
  --r-lg: 22px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="dark"] {
  --bg:        #10180f;
  --bg-alt:    #16241a;
  --surface:   #1a2c20;
  --surface-2: #213829;
  --ink:       #F4F2EA;
  --ink-soft:  #c2cdc2;
  --ink-mute:  #8ea091;
  --line:      rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.06);
  --hero-ink:  #FDFDFB;
  --shadow:    0 24px 60px -22px rgba(0,0,0,.75);
  --shadow-sm: 0 10px 30px -16px rgba(0,0,0,.7);
  --gold:      #d4b06a;
  --gold-soft: #e2c891;
  --ph-a: #1e3225;
  --ph-b: #24402d;
  --ph-ink: #6f8c77;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #fff; }

/* ---------- Tipografia ---------- */
h1,h2,h3,h4 { font-family: var(--f-head); color: var(--ink); line-height: 1.08; font-weight: 600; letter-spacing: -.01em; }
.serif-italic { font-style: italic; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--green { background: var(--green-musgo); }
.section--green, .section--green :is(h1,h2,h3,h4){ color: var(--hero-ink); }
.section--green .eyebrow { color: var(--gold-soft); }

/* Eyebrow + title block */
.eyebrow {
  font-family: var(--f-body);
  font-size: 13px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--center::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
[data-theme="dark"] .eyebrow { color: var(--gold); }
.head { max-width: 720px; margin-bottom: 56px; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 20px 0 18px; }
.head p { font-size: 1.05rem; color: var(--ink-mute); }

/* ---------- Botões ---------- */
.btn {
  --c: var(--gold);
  display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--f-body); font-weight: 600; font-size: 14.5px; letter-spacing: .03em;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn--gold { background: var(--gold); color: #1c150a; box-shadow: 0 14px 30px -12px rgba(197,160,89,.7); }
.btn--gold::before { content:""; position:absolute; inset:0; z-index:-1; background: var(--gold-soft); transform: translateY(100%); transition: transform .45s var(--ease); }
.btn--gold:hover::before { transform: translateY(0); }
.btn--ghost { border: 1px solid currentColor; color: var(--hero-ink); }
.btn--ghost::before { content:""; position:absolute; inset:0; z-index:-1; background: var(--hero-ink); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.btn--ghost:hover { color: var(--green-musgo); }
.btn--ghost:hover::before { transform: scaleX(1); }
.btn--dark { background: var(--green-musgo); color: #fff; }
.btn--dark:hover { box-shadow: var(--shadow); }

/* ---------- Placeholder de imagem ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--ph-a) 0 14px, var(--ph-b) 14px 28px);
  display: grid; place-items: center;
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  font-family: "SFMono-Regular", ui-monospace, "Courier New", monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ph-ink);
  background: var(--bg);
  padding: 7px 13px; border-radius: 100px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
/* Quando o .ph é uma imagem real, ela cobre o contêiner herdando
   o tamanho/aspect-ratio definido em cada contexto (struct, hero, news…). */
img.ph {
  display: block; width: 100%; object-fit: cover;
  background: var(--green-musgo);
}
img.ph::after { content: none; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), height .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; width: min(100% - 44px, 1340px); }
.site-header.scrolled {
  height: 70px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(0,0,0,.5);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 50px; height: auto; transition: width .45s var(--ease); filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)); }
.scrolled .brand img { width: 42px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b { font-family: var(--f-head); font-size: 16px; color: var(--nav-ink, #fff); letter-spacing: .01em; }
.brand-txt span { font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 15px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--nav-ink, #fff);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover { color: var(--gold-soft); }

/* nav ink changes by scroll/theme — over hero it's light */
.site-header { --nav-ink: #FDFDFB; }
.site-header.scrolled { --nav-ink: var(--ink); }
.site-header.scrolled .brand-txt b { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid color-mix(in oklab, var(--nav-ink) 35%, transparent);
  color: var(--nav-ink);
  transition: transform .5s var(--ease), border-color .3s, background .3s;
}
.theme-toggle:hover { transform: rotate(40deg); border-color: var(--gold); color: var(--gold); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

.btn-mini {
  padding: 11px 20px; border-radius: 100px; font-size: 13.5px; font-weight: 600;
  background: var(--gold); color: #1c150a;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-mini:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(197,160,89,.8); }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 24px; height: 2px; background: var(--nav-ink); border-radius: 2px; transition: .35s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--green-musgo);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--f-head); font-size: 30px; color: #fff; padding: 8px; opacity: 0; transform: translateY(18px); }
.mobile-nav.open a { animation: mnav .5s var(--ease) forwards; }
.mobile-nav.open a:nth-child(1){animation-delay:.06s}.mobile-nav.open a:nth-child(2){animation-delay:.12s}
.mobile-nav.open a:nth-child(3){animation-delay:.18s}.mobile-nav.open a:nth-child(4){animation-delay:.24s}
.mobile-nav.open a:nth-child(5){animation-delay:.30s}.mobile-nav.open a:nth-child(6){animation-delay:.36s}
@keyframes mnav { to { opacity: 1; transform: none; } }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-start; overflow: hidden; background: var(--green-musgo); }
.hero__bg { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero__bg .ph { width: 100%; height: 100%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(16,24,15,.92) 0%, rgba(16,24,15,.70) 42%, rgba(16,24,15,.30) 100%),
    linear-gradient(0deg, rgba(16,24,15,.85), transparent 45%);
}
.hero__veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 90% at 80% 10%, rgba(197,160,89,.16), transparent 55%); }
.hero > .wrap { position: relative; z-index: 2; padding-top: calc(var(--nav-h) + 56px); padding-bottom: 150px; }
.hero__inner { max-width: 760px; }
.hero__crest { width: 88px; margin-bottom: 26px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.5)); opacity: 0; animation: heroIn .9s var(--ease) .1s forwards; }
.hero .eyebrow { color: var(--gold-soft); opacity: 0; animation: heroIn .9s var(--ease) .2s forwards; }
.hero h1 {
  color: #fff; font-size: clamp(2.9rem, 7.2vw, 6rem); line-height: 1.02; margin: 22px 0 8px;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; transform: translateY(110%); animation: heroLine 1s var(--ease) forwards; }
.hero h1 .ln:nth-child(1) > span { animation-delay: .30s; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .42s; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { color: rgba(253,253,251,.82); font-size: clamp(1.02rem, 1.7vw, 1.25rem); max-width: 540px; margin: 26px 0 38px; opacity: 0; animation: heroIn .9s var(--ease) .8s forwards; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: heroIn .9s var(--ease) .95s forwards; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes heroLine { to { transform: none; } }

.hero__meta {
  position: absolute; left: 0; right: 0; bottom: 30px; z-index: 2;
  opacity: 0; animation: heroIn .9s var(--ease) 1.1s forwards;
  pointer-events: none; /* não bloquear cliques nos botões do hero */
}
.hero__meta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: clamp(24px, 5vw, 64px); }
.hero__stat b { font-family: var(--f-head); font-size: clamp(1.6rem,3vw,2.3rem); color: #fff; display: block; line-height: 1; }
.hero__stat span { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.scrollcue { display: flex; align-items: center; gap: 12px; color: rgba(253,253,251,.7); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.scrollcue i { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); display: block; position: relative; overflow: hidden; }
.scrollcue i::after { content:""; position:absolute; top:-40px; left:0; width:1px; height:40px; background: var(--gold); animation: cue 2s var(--ease) infinite; }
@keyframes cue { to { top: 40px; } }

/* =====================================================
   SOBRE
   ===================================================== */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about__media { position: relative; }
.about__media .ph { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.about__media .ph.small { position: absolute; width: 52%; aspect-ratio: 1; right: -7%; bottom: -10%; border-radius: var(--r); border: 8px solid var(--bg); }
.about__badge {
  position: absolute; top: 26px; left: -22px; z-index: 3;
  background: var(--gold); color: #1c150a; border-radius: 50%;
  width: 116px; height: 116px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); transform: rotate(-8deg);
}
.about__badge b { font-family: var(--f-head); font-size: 30px; line-height: 1; }
.about__badge span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.about__text p { margin-bottom: 20px; }
.about__text .lead { font-size: 1.25rem; color: var(--ink); font-family: var(--f-head); font-style: italic; line-height: 1.5; }
.about__sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.about__sign .ph { width: 130px; height: 50px; border-radius: 8px; }
.about__sign div b { color: var(--ink); font-family: var(--f-head); display: block; }
.about__sign div span { font-size: 13px; color: var(--ink-mute); }

/* =====================================================
   ESTRUTURA
   ===================================================== */
.struct { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.struct__card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.struct__card .ph { position: absolute; inset: 0; z-index: -2; transition: transform .9s var(--ease); }
.struct__card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(16,24,15,.9) 8%, rgba(16,24,15,.15) 60%, transparent); }
.struct__card:hover .ph { transform: scale(1.07); }
.struct__card-body { padding: 28px; transform: translateY(8px); transition: transform .5s var(--ease); }
.struct__card:hover .struct__card-body { transform: translateY(0); }
.struct__card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 6px; }
.struct__card p { color: rgba(255,255,255,.82); font-size: .95rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .5s var(--ease); }
.struct__card:hover p { max-height: 90px; opacity: 1; }
.struct__card .tag { position: absolute; top: 22px; left: 22px; z-index: 1; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); padding: 6px 14px; border-radius: 100px; font-size: 12px; letter-spacing: .06em; }
.struct__card.span-7 { grid-column: span 7; }
.struct__card.span-5 { grid-column: span 5; }
.struct__card.span-4 { grid-column: span 4; }

/* =====================================================
   ATIVIDADES
   ===================================================== */
.act__filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.act__filter button {
  padding: 10px 20px; border-radius: 100px; font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.act__filter button:hover { border-color: var(--gold); color: var(--ink); }
.act__filter button.active { background: var(--green-musgo); color: #fff; border-color: var(--green-musgo); }
[data-theme="dark"] .act__filter button.active { background: var(--gold); color: #1c150a; border-color: var(--gold); }
.act__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.act__card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r);
  overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
  cursor: pointer;
}
.act__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.act__card .ph { aspect-ratio: 5/4; }
.act__card-body { padding: 20px 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.act__card h3 { font-size: 1.25rem; }
.act__card .arrow { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--gold-deep); flex: none; transition: all .35s var(--ease); }
.act__card:hover .arrow { background: var(--gold); color: #fff; border-color: var(--gold); transform: rotate(-45deg); }
.act__card.is-hidden { display: none; }

/* =====================================================
   VANTAGENS
   ===================================================== */
.adv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.adv__card {
  padding: 40px 34px; border-radius: var(--r-lg); background: var(--surface);
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.adv__card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.adv__card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.adv__card:hover::before { transform: scaleX(1); }
.adv__ico { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in oklab, var(--gold) 16%, var(--surface)); color: var(--gold-deep); margin-bottom: 24px; }
[data-theme="dark"] .adv__ico { color: var(--gold); }
.adv__ico svg { width: 28px; height: 28px; }
.adv__card h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--ink); }
.adv__card p { color: var(--ink-soft); }
/* Cards claros dentro da seção verde: força texto legível (sobrepõe o override de títulos da seção) */
.section--green .adv__card h3 { color: var(--ink); }
.section--green .adv__card p { color: var(--ink-soft); }

/* =====================================================
   SEJA SÓCIO / PLANOS
   ===================================================== */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.plan.featured { background: var(--green-musgo); border-color: var(--green-musgo); }
.plan.featured :is(h3,.plan__price b) { color: #fff; }
.plan.featured .plan__price small, .plan.featured .plan__row span, .plan.featured .plan__row b { color: rgba(255,255,255,.8); }
.plan.featured .plan__type { color: var(--gold-soft); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1c150a; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.plan__type { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.plan h3 { font-size: 1.7rem; margin: 6px 0 18px; }
.plan__price { padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan.featured .plan__price { border-color: rgba(255,255,255,.16); }
.plan__price small { font-size: 12px; color: var(--ink-mute); display: block; letter-spacing: .1em; text-transform: uppercase; }
.plan__price b { font-family: var(--f-head); font-size: 2.1rem; color: var(--ink); display: block; line-height: 1.1; }
.plan__price b span { font-size: 1rem; }
.plan__rows { padding: 18px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan__row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 14px; }
.plan__row span { color: var(--ink-mute); }
.plan__row b { color: var(--ink); font-weight: 600; }
.plan .btn { width: 100%; justify-content: center; margin-top: 8px; }
.plan.featured .btn--dark { background: var(--gold); color: #1c150a; }

.joia-note { margin-top: 34px; text-align: center; font-size: 14px; color: var(--ink-mute); }
.joia-note b { color: var(--ink); }

/* =====================================================
   NOTÍCIAS
   ===================================================== */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news__card { display: flex; flex-direction: column; gap: 16px; cursor: pointer; }
.news__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; }
.news__media .ph { width: 100%; height: 100%; transition: transform .8s var(--ease); }
.news__card:hover .news__media .ph { transform: scale(1.06); }
.news__date { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
[data-theme="dark"] .news__date { color: var(--gold); }
.news__card h3 { font-size: 1.4rem; line-height: 1.25; transition: color .3s; }
.news__card:hover h3 { color: var(--gold-deep); }
[data-theme="dark"] .news__card:hover h3 { color: var(--gold); }
.news__card p { font-size: .95rem; color: var(--ink-mute); }
.news__more { text-align: center; margin-top: 50px; }
#news-extra { display: contents; }
.htmx-indicator { opacity: 0; }
.htmx-request .htmx-indicator { opacity: 1; }
.htmx-request.btn { pointer-events: none; opacity: .7; }

/* =====================================================
   GALERIA
   ===================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; grid-auto-flow: dense; }
.gallery__item { border-radius: var(--r); overflow: hidden; cursor: pointer; position: relative; }
.gallery__item .ph { width: 100%; height: 100%; transition: transform .7s var(--ease); }
.gallery__item::after { content: "＋"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 30px; color: #fff; background: rgba(25,46,34,.45); opacity: 0; transition: opacity .4s var(--ease); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .ph { transform: scale(1.08); }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,12,8,.92); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); padding: 30px; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox .ph { width: min(820px, 92vw); aspect-ratio: 3/2; border-radius: var(--r); transform: scale(.94); transition: transform .45s var(--ease); }
.lightbox.open .ph { transform: scale(1); }
.lightbox #lightbox-img { display: block; width: min(960px, 92vw); max-height: 86vh; object-fit: contain; border-radius: var(--r); box-shadow: var(--shadow); transform: scale(.94); transition: transform .45s var(--ease); }
.lightbox.open #lightbox-img { transform: scale(1); }
.lightbox__close { position: absolute; top: 26px; right: 30px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; transition: .3s; }
.lightbox__close:hover { background: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.testi { position: relative; }
.testi__track { display: flex; gap: 26px; transition: transform .6s var(--ease); }
.testi__card { min-width: 100%; display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; }
.testi__card .ph { width: 150px; height: 150px; border-radius: 50%; flex: none; }
.testi__quote { font-family: var(--f-head); font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.4; color: var(--ink); font-style: italic; }
.testi__author { margin-top: 22px; }
.testi__author b { color: var(--gold-deep); font-style: normal; font-family: var(--f-body); font-size: 15px; letter-spacing: .04em; display: block; }
[data-theme="dark"] .testi__author b { color: var(--gold); }
.testi__author span { font-size: 13px; color: var(--ink-mute); font-style: normal; }
.testi__nav { display: flex; gap: 12px; margin-top: 44px; }
.testi__nav button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); display: grid; place-items: center; transition: all .35s var(--ease); }
.testi__nav button:hover { background: var(--green-musgo); color: #fff; border-color: var(--green-musgo); }
.testi__quote-mark { font-family: var(--f-head); font-size: 90px; line-height: .6; color: var(--gold); opacity: .3; }

/* =====================================================
   LOCALIZAÇÃO
   ===================================================== */
.loc { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.loc__info { background: var(--green-musgo); color: #fff; padding: clamp(38px, 5vw, 64px); }
.loc__info h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 26px; }
.loc__row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.loc__row:last-of-type { border-bottom: none; }
.loc__row svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.loc__row b { color: #fff; display: block; font-family: var(--f-body); font-size: 14px; letter-spacing: .04em; }
.loc__row span { color: rgba(255,255,255,.78); font-size: 14.5px; }
.loc__row a { color: rgba(255,255,255,.78); transition: color .3s; }
.loc__row a:hover { color: var(--gold-soft); }
.loc__map { position: relative; min-height: 380px; }
.loc__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
[data-theme="dark"] .loc__map iframe { filter: grayscale(.4) invert(.9) hue-rotate(180deg) contrast(.9); }

/* =====================================================
   CTA FAIXA
   ===================================================== */
.cta-band { background: var(--green-musgo); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 50% 0%, rgba(197,160,89,.2), transparent 60%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 36px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: #0c130b; color: rgba(255,255,255,.7); padding: 80px 0 30px; }
[data-theme="dark"] .footer { background: #0a100a; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { width: 78px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; max-width: 280px; }
.footer h4 { color: #fff; font-family: var(--f-body); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 22px; }
.footer__col a, .footer__col li { display: block; font-size: 14.5px; padding: 7px 0; transition: color .3s, padding .3s; }
.footer__col a:hover { color: var(--gold-soft); padding-left: 6px; }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: all .35s var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #1c150a; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; font-size: 13px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-soft); }
.footer__credit { color: rgba(255,255,255,.55); }
.footer__credit a { color: var(--gold-soft); font-weight: 600; }
.footer__credit a:hover { color: var(--gold); }
.footer__phones { white-space: nowrap; }
.footer__phones a { display: inline; padding: 0; }

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .1s; } .reveal[data-d="2"]{ transition-delay: .2s; }
.reveal[data-d="3"]{ transition-delay: .3s; } .reveal[data-d="4"]{ transition-delay: .4s; }
.reveal[data-d="5"]{ transition-delay: .5s; }
.reveal-x { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-x.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-x,.reveal-scale { opacity: 1 !important; transform: none !important; }
  .hero__crest,.hero .eyebrow,.hero__sub,.hero__cta,.hero__meta { opacity: 1 !important; animation: none !important; }
  .hero h1 .ln > span { transform: none !important; animation: none !important; }
}

/* Section number watermark */
.sec-num { position: absolute; top: 40px; right: 4%; font-family: var(--f-head); font-size: clamp(5rem, 14vw, 12rem); color: var(--line-soft); line-height: 1; pointer-events: none; z-index: 0; font-style: italic; }

/* =====================================================
   PÁGINAS INTERNAS — HERO MENOR + BREADCRUMB
   ===================================================== */
.page-hero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--green-musgo); padding-bottom: clamp(40px, 7vw, 88px); }
.page-hero__bg { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.page-hero__bg .ph { width: 100%; height: 100%; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(16,24,15,.95) 6%, rgba(16,24,15,.55) 60%, rgba(16,24,15,.65) 100%); }
.page-hero .wrap { position: relative; z-index: 2; padding-top: var(--nav-h); }
.page-hero .eyebrow { color: var(--gold-soft); opacity:0; animation: heroIn .8s var(--ease) .15s forwards; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 6.2vw, 5rem); margin: 18px 0 20px; max-width: 16ch; }
.page-hero h1 .ln { display:block; overflow:hidden; }
.page-hero h1 .ln > span { display:block; transform: translateY(110%); animation: heroLine .9s var(--ease) .3s forwards; }
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero p { color: rgba(253,253,251,.85); max-width: 620px; font-size: clamp(1rem,1.6vw,1.18rem); opacity:0; animation: heroIn .8s var(--ease) .55s forwards; }
.crumb { display: flex; gap: 10px; align-items: center; font-size: 12.5px; letter-spacing: .08em; color: rgba(253,253,251,.7); margin-bottom: 12px; }
.crumb a:hover { color: var(--gold-soft); }
.crumb span { opacity: .5; }

/* =====================================================
   ESSÊNCIA (texto editorial 2 col)
   ===================================================== */
.essence { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px,5vw,80px); align-items: start; }
.essence__big { font-family: var(--f-head); font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.32; color: var(--ink); }
.essence__big .drop { color: var(--gold-deep); }
[data-theme="dark"] .essence__big .drop { color: var(--gold); }
.essence__body p { margin-bottom: 18px; }
.essence__pull { border-left: 3px solid var(--gold); padding-left: 22px; margin: 26px 0; font-family: var(--f-head); font-style: italic; font-size: 1.3rem; color: var(--ink); }

/* =====================================================
   LINHA DO TEMPO
   ===================================================== */
.timeline { position: relative; max-width: 980px; margin: 0 auto; }
.timeline::before { content:""; position:absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: var(--line); }
.timeline__fill { position: absolute; left: 50%; top: 0; width: 2px; transform: translateX(-50%); background: linear-gradient(var(--gold), var(--gold-deep)); height: 0; z-index: 1; }
.tl-item { position: relative; width: 50%; padding: 0 56px 70px; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-dot { position: absolute; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 2px solid var(--gold); z-index: 2; transition: transform .4s var(--ease), background .4s, box-shadow .4s; }
.tl-item:nth-child(odd) .tl-dot { right: -9px; }
.tl-item:nth-child(even) .tl-dot { left: -9px; }
.tl-item.in .tl-dot { background: var(--gold); transform: scale(1.25); box-shadow: 0 0 0 6px color-mix(in oklab, var(--gold) 22%, transparent); }
.tl-year { font-family: var(--f-head); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-deep); line-height: 1; margin-bottom: 12px; }
[data-theme="dark"] .tl-year { color: var(--gold); }
.tl-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.tl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tl-card .ph { aspect-ratio: 16/9; }
.tl-card-body { padding: 24px 26px 28px; text-align: left; }
.tl-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.tl-card p { font-size: .96rem; color: var(--ink-mute); }
@media (max-width: 760px){
  .timeline::before, .timeline__fill { left: 9px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 50px 40px; }
  .tl-item .tl-dot { left: 1px !important; right: auto !important; }
}

/* Pilares / valores */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pillar { text-align: center; padding: 14px; }
.pillar b { font-family: var(--f-head); font-size: clamp(2.2rem,4vw,2.9rem); color: var(--gold-deep); display:block; line-height:1; }
[data-theme="dark"] .pillar b { color: var(--gold); }
.pillar span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
@media (max-width: 760px){ .essence { grid-template-columns: 1fr; } .pillars { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* =====================================================
   ATIVIDADES — CARDS DETALHADOS
   ===================================================== */
.actd { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 24px; }
.actd__card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.actd__card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.actd__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.actd__media .ph { width: 100%; height: 100%; transition: transform .8s var(--ease); }
.actd__card:hover .actd__media .ph { transform: scale(1.07); }
.actd__cat { position: absolute; top: 16px; left: 16px; z-index: 2; }
.actd__body { padding: 24px 26px 28px; }
.actd__body h3 { font-size: 1.45rem; margin-bottom: 8px; }
.actd__body p { font-size: .95rem; color: var(--ink-mute); margin-bottom: 16px; }
.actd__meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--line-soft); padding-top: 16px; }
.actd__meta svg { width: 16px; height: 16px; color: var(--gold-deep); }
[data-theme="dark"] .actd__meta svg { color: var(--gold); }

/* Category pill (shared) */
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .02em; background: color-mix(in oklab, var(--pc) 16%, var(--surface)); color: var(--pc-ink, var(--pc)); border: 1px solid color-mix(in oklab, var(--pc) 35%, transparent); }
.pill::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--pc); }
.cat-agua   { --pc: #0E98E0; --pc-ink: #0a6fa6; }
.cat-forca  { --pc: #EC5B13; --pc-ink: #c2470c; }
.cat-quadra { --pc: #3B5F20; --pc-ink: #2f4d1a; }
.cat-kids   { --pc: #D9A400; --pc-ink: #a87f00; }
[data-theme="dark"] .cat-agua{ --pc-ink:#5cc0f5; } [data-theme="dark"] .cat-forca{ --pc-ink:#ff8a4d; }
[data-theme="dark"] .cat-quadra{ --pc-ink:#8fc46a; } [data-theme="dark"] .cat-kids{ --pc-ink:#f0c84a; }
.cat-esporte  { --pc: #3B5F20; --pc-ink: #2f4d1a; }
.cat-social   { --pc: #C5A059; --pc-ink: #a8854a; }
.cat-estrutura{ --pc: #0E98E0; --pc-ink: #0a6fa6; }
.cat-inst     { --pc: #535353; --pc-ink: #444; }
.cat-lazer    { --pc: #EC5B13; --pc-ink: #c2470c; }
[data-theme="dark"] .cat-social{ --pc-ink:#d8bd86; } [data-theme="dark"] .cat-estrutura{ --pc-ink:#5cc0f5; }
[data-theme="dark"] .cat-inst{ --pc-ink:#b9c2bb; } [data-theme="dark"] .cat-lazer{ --pc-ink:#ff8a4d; } [data-theme="dark"] .cat-esporte{ --pc-ink:#8fc46a; }

/* =====================================================
   GRADE DE HORÁRIOS
   ===================================================== */
.sched { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.sched__bar { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.daytabs { display: inline-flex; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; padding: 5px; gap: 2px; }
.daytabs button { padding: 9px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 600; color: var(--ink-mute); transition: all .3s var(--ease); position: relative; white-space: nowrap; }
.daytabs button:hover { color: var(--ink); }
.daytabs button.active { background: var(--green-musgo); color: #fff; }
[data-theme="dark"] .daytabs button.active { background: var(--gold); color: #1c150a; }
.daytabs button.today::after { content:""; position:absolute; top: 5px; right: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.daytabs button.active.today::after { background: #fff; }
[data-theme="dark"] .daytabs button.active.today::after { background: #1c150a; }

.sched__tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.sched__search { position: relative; }
.sched__search input { padding: 10px 16px 10px 38px; border-radius: 100px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font: inherit; font-size: 13.5px; width: 200px; transition: border-color .3s, box-shadow .3s; }
.sched__search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 22%, transparent); }
.sched__search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--ink-mute); }

.sched__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 26px; border-bottom: 1px solid var(--line-soft); }
.sched__chips button { padding: 8px 15px; border-radius: 100px; font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); color: var(--ink-soft); transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 7px; }
.sched__chips button::before { content:""; width:8px; height:8px; border-radius:50%; background: var(--cc, var(--ink-mute)); }
.sched__chips button[data-c="all"]::before { display:none; }
.sched__chips button:hover { border-color: var(--gold); color: var(--ink); }
.sched__chips button.active { background: var(--green-musgo); color: #fff; border-color: var(--green-musgo); }
[data-theme="dark"] .sched__chips button.active { background: var(--surface-2); border-color: var(--gold); }

/* Tabela */
.sched__table { width: 100%; border-collapse: collapse; }
.sched__table thead th { text-align: left; font-family: var(--f-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; padding: 16px 26px; border-bottom: 1px solid var(--line); background: var(--surface); position: sticky; top: 0; }
.sched__table tbody tr { border-bottom: 1px solid var(--line-soft); transition: background .25s; cursor: default; }
.sched__table tbody tr:hover { background: var(--bg-alt); }
.sched__table td { padding: 16px 26px; font-size: 14.5px; vertical-align: middle; }
.sched__time { font-family: var(--f-head); font-size: 1.1rem; color: var(--ink); white-space: nowrap; }
.sched__time small { display: block; font-family: var(--f-body); font-size: 11px; color: var(--ink-mute); letter-spacing: .04em; }
.sched__name { font-weight: 600; color: var(--ink); }
.sched__name small { display:block; font-weight: 500; color: var(--ink-mute); font-size: 12.5px; }
.sched__cell-muted { color: var(--ink-mute); font-size: 13.5px; }
.sched__bar-accent { width: 4px; padding: 0 !important; background: var(--rc, transparent); }
.sched__empty { text-align: center; padding: 60px 26px; color: var(--ink-mute); }
.sched__empty b { display:block; font-family: var(--f-head); font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.sched__foot { padding: 16px 26px; font-size: 13px; color: var(--ink-mute); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; background: var(--bg-alt); border-top: 1px solid var(--line-soft); }
.sched__count b { color: var(--ink); }

/* Cards mobile da grade */
.sched__card { display: none; }
@media (max-width: 720px){
  .sched__table thead, .sched__table .sched__bar-accent { display: none; }
  .sched__table, .sched__table tbody, .sched__table tr, .sched__table td { display: block; width: 100%; }
  .sched__table tr { padding: 16px 20px; border-bottom: 1px solid var(--line); }
  .sched__table td { padding: 3px 0; }
  .sched__time { font-size: 1rem; }
  .sched__bar { padding: 16px; }
  .sched__chips { padding: 14px 16px; }
  .daytabs { width: 100%; overflow-x: auto; justify-content: flex-start; }
  .sched__search input { width: 100%; }
  .sched__tools { width: 100%; }
}

/* =====================================================
   ESTRUTURA — EXPLORADOR INTERATIVO
   ===================================================== */
.exp { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: stretch; }
.exp__nav { display: flex; flex-direction: column; gap: 6px; }
.exp__btn { text-align: left; padding: 20px 22px; border-radius: var(--r); border: 1px solid transparent; position: relative; transition: all .35s var(--ease); display: flex; align-items: center; gap: 16px; }
.exp__btn:hover { background: var(--surface); }
.exp__btn.active { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.exp__btn::before { content:""; position:absolute; left:0; top:18px; bottom:18px; width:3px; border-radius:3px; background: var(--gold); transform: scaleY(0); transition: transform .35s var(--ease); }
.exp__btn.active::before { transform: scaleY(1); }
.exp__num { font-family: var(--f-head); font-size: 1.1rem; color: var(--gold-deep); width: 34px; flex: none; }
[data-theme="dark"] .exp__num { color: var(--gold); }
.exp__btn h3 { font-size: 1.18rem; margin-bottom: 2px; transition: color .3s; }
.exp__btn p { font-size: 12.5px; color: var(--ink-mute); }
.exp__btn .chev { margin-left: auto; opacity: 0; transform: translateX(-6px); transition: all .35s var(--ease); color: var(--gold-deep); }
.exp__btn.active .chev { opacity: 1; transform: none; }

.exp__stage { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 540px; display: flex; align-items: flex-end; box-shadow: var(--shadow); isolation: isolate; }
.exp__panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease); }
.exp__panel.active { opacity: 1; visibility: visible; }
.exp__panel .ph { position: absolute; inset: 0; z-index: -2; transform: scale(1.06); transition: transform 1.2s var(--ease); }
.exp__panel.active .ph { transform: scale(1); }
.exp__panel::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(16,24,15,.94) 4%, rgba(16,24,15,.35) 55%, rgba(16,24,15,.1)); }
.exp__content { position: relative; padding: clamp(28px,4vw,48px); color: #fff; transform: translateY(20px); opacity: 0; transition: all .6s var(--ease) .12s; }
.exp__panel.active .exp__content { transform: none; opacity: 1; }
.exp__tag { display: inline-block; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); padding: 6px 14px; border-radius: 100px; font-size: 12px; letter-spacing: .08em; margin-bottom: 18px; }
.exp__content h3 { color: #fff; font-size: clamp(1.8rem,3.4vw,2.8rem); margin-bottom: 12px; }
.exp__content p { color: rgba(255,255,255,.85); max-width: 540px; font-size: 1.02rem; }
.exp__feats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.exp__feat { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 9px 14px; border-radius: 100px; }
.exp__feat svg { width: 15px; height: 15px; color: var(--gold-soft); }
@media (max-width: 900px){
  .exp { grid-template-columns: 1fr; }
  .exp__stage { min-height: 440px; order: -1; }
  .exp__btn p { display: none; }
  .exp__btn { padding: 14px 18px; }
}

/* Faixa de números */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.statband .pillar b { font-size: clamp(2.4rem,5vw,3.4rem); }
@media (max-width: 720px){ .statband { grid-template-columns: 1fr 1fr; gap: 34px; } }

/* =====================================================
   NOTÍCIAS — DESTAQUE + ARTIGO
   ===================================================== */
.news-feat { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); margin-bottom: 56px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.news-feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-feat__media { position: relative; min-height: 360px; overflow: hidden; }
.news-feat__media .ph { position: absolute; inset: 0; transition: transform .9s var(--ease); }
.news-feat:hover .news-feat__media .ph { transform: scale(1.05); }
.news-feat__tag { position: absolute; top: 20px; left: 20px; z-index: 2; }
.news-feat__body { padding: clamp(30px,4vw,52px); display: flex; flex-direction: column; justify-content: center; }
.news-feat__body .news__date { margin-bottom: 14px; }
.news-feat__body h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.12; margin-bottom: 16px; }
.news-feat__body p { color: var(--ink-mute); margin-bottom: 26px; }
.news-feat__link { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-deep); font-weight: 600; font-size: 14.5px; }
[data-theme="dark"] .news-feat__link { color: var(--gold); }
.news-feat__link svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.news-feat:hover .news-feat__link svg { transform: translateX(5px); }
@media (max-width: 860px){ .news-feat { grid-template-columns: 1fr; } .news-feat__media { min-height: 240px; } }

.news__filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.news__filter button { padding: 9px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; border: 1px solid var(--line); color: var(--ink-soft); transition: all .3s var(--ease); }
.news__filter button:hover { border-color: var(--gold); color: var(--ink); }
.news__filter button.active { background: var(--green-musgo); color: #fff; border-color: var(--green-musgo); }
[data-theme="dark"] .news__filter button.active { background: var(--gold); color: #1c150a; border-color: var(--gold); }
.news__card.is-hidden { display: none; }
.news__card .pill { align-self: flex-start; }

/* ---------- ARTIGO ÚNICO ---------- */
.post-hero { position: relative; background: var(--green-musgo); padding-top: calc(var(--nav-h) + 72px); padding-bottom: 76px; overflow: hidden; }
.post-hero__bg { position: absolute; inset: -8% 0; z-index: 0; }
.post-hero__bg .ph { width: 100%; height: 100%; }
.post-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(16,24,15,.96), rgba(16,24,15,.62)); }
.post-hero .wrap { position: relative; z-index: 2; max-width: 880px; }
.post-hero .crumb { margin-bottom: 18px; }
.post-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.1; margin: 14px 0 22px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; color: rgba(253,253,251,.82); font-size: 14px; }
.post-meta__item { display: flex; align-items: center; gap: 9px; }
.post-meta__item svg { width: 16px; height: 16px; color: var(--gold-soft); }
.post-meta .ph { width: 38px; height: 38px; border-radius: 50%; }

.post-cover { width: min(100% - 44px, 1000px); margin: -60px auto 0; position: relative; z-index: 5; }
.post-cover .ph { aspect-ratio: 16/8; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 6px solid var(--bg); }

.post { max-width: 760px; margin: 0 auto; }
.post__body { font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); }
.post__body > p { margin-bottom: 24px; }
.post__body h2 { font-size: 1.7rem; margin: 44px 0 16px; }
.post__body h3 { font-size: 1.35rem; margin: 32px 0 12px; }
.post__body .lead { font-size: 1.3rem; font-family: var(--f-head); font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 30px; }
.post__body figure { margin: 36px 0; }
.post__body figure .ph { aspect-ratio: 16/9; border-radius: var(--r); }
.post__body figcaption { text-align: center; font-size: 13px; color: var(--ink-mute); margin-top: 12px; font-style: italic; }
.post__body ul.bullets { margin: 0 0 24px; padding-left: 4px; display: flex; flex-direction: column; gap: 12px; }
.post__body ul.bullets li { display: flex; gap: 12px; align-items: flex-start; }
.post__body ul.bullets li::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 9px; flex: none; }
.post__pull { border-left: 3px solid var(--gold); padding: 6px 0 6px 26px; margin: 34px 0; font-family: var(--f-head); font-style: italic; font-size: 1.45rem; line-height: 1.4; color: var(--ink); }

.post__foot { max-width: 760px; margin: 50px auto 0; padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tags a { font-size: 12.5px; padding: 7px 14px; border-radius: 100px; background: var(--bg-alt); color: var(--ink-soft); border: 1px solid var(--line-soft); transition: all .3s; }
.tags a:hover { border-color: var(--gold); color: var(--ink); }
.share { display: flex; align-items: center; gap: 10px; }
.share span { font-size: 13px; color: var(--ink-mute); }
.share a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink-soft); transition: all .35s var(--ease); }
.share a:hover { background: var(--gold); border-color: var(--gold); color: #1c150a; transform: translateY(-3px); }
.share svg { width: 17px; height: 17px; }

/* =====================================================
   CONTATO
   ===================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,4vw,46px); box-shadow: var(--shadow-sm); }
.contact__form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.contact__form > p { color: var(--ink-mute); font-size: 14.5px; margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field textarea, .field select { width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font: inherit; font-size: 15px; transition: border-color .3s, box-shadow .3s; }
.field textarea { min-height: 120px; resize: vertical; }
.field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 22%, transparent); }
.contact__form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-ok { display: none; align-items: center; gap: 10px; justify-content: center; color: var(--green); font-weight: 600; font-size: 14.5px; padding: 14px; background: color-mix(in oklab, var(--green) 12%, var(--surface)); border-radius: 10px; margin-top: 14px; }
[data-theme="dark"] .form-ok { color: #8fc46a; }
.form-ok.show { display: flex; animation: heroIn .5s var(--ease); }
.form-ok svg { width: 18px; height: 18px; }

.contact__aside { display: flex; flex-direction: column; gap: 14px; }
.cinfo { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--r); border: 1px solid var(--line-soft); background: var(--surface); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.cinfo:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.cinfo__ico { width: 50px; height: 50px; border-radius: 13px; flex: none; display: grid; place-items: center; background: color-mix(in oklab, var(--gold) 15%, var(--surface)); color: var(--gold-deep); }
[data-theme="dark"] .cinfo__ico { color: var(--gold); }
.cinfo__ico svg { width: 23px; height: 23px; }
.cinfo h4 { font-family: var(--f-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.cinfo p, .cinfo a { color: var(--ink); font-size: 15px; line-height: 1.5; }
.cinfo a:hover { color: var(--gold-deep); }
[data-theme="dark"] .cinfo a:hover { color: var(--gold); }

.contact__social { display: flex; gap: 12px; margin-top: 4px; }
.contact__social a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: all .35s var(--ease); }
.contact__social a:hover { background: var(--gold); border-color: var(--gold); color: #1c150a; transform: translateY(-3px); }
.contact__social svg { width: 19px; height: 19px; }
@media (max-width: 860px){ .contact { grid-template-columns: 1fr; } .frow { grid-template-columns: 1fr; } }

/* Mapa full-bleed */
.map-full { position: relative; height: clamp(360px, 50vh, 520px); }
.map-full iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
[data-theme="dark"] .map-full iframe { filter: grayscale(.4) invert(.9) hue-rotate(180deg) contrast(.9); }
.map-full__card { position: absolute; top: 50%; left: clamp(16px, 6vw, 90px); transform: translateY(-50%); background: var(--surface); border-radius: var(--r-lg); padding: 30px 32px; box-shadow: var(--shadow); max-width: 330px; z-index: 2; border: 1px solid var(--line); }
.map-full__card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.map-full__card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
@media (max-width: 600px){ .map-full__card { position: static; transform: none; max-width: none; margin: 16px; } .map-full { height: auto; } .map-full iframe { position: static; height: 320px; } }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; font-family: var(--f-head); font-size: clamp(1.15rem,2vw,1.4rem); color: var(--ink); transition: color .3s; }
.faq__q:hover { color: var(--gold-deep); }
[data-theme="dark"] .faq__q:hover { color: var(--gold); }
.faq__ico { width: 32px; height: 32px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-deep); transition: transform .4s var(--ease), background .3s, color .3s; }
[data-theme="dark"] .faq__ico { color: var(--gold); }
.faq__item.open .faq__ico { transform: rotate(45deg); background: var(--gold); color: #1c150a; border-color: var(--gold); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 4px 24px; color: var(--ink-mute); font-size: 15px; line-height: 1.7; max-width: 680px; }
/* =====================================================
   MODAL LOGIN
   ===================================================== */
.modal { position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.modal.open { opacity: 1; pointer-events: auto; }
.modal__veil { position: absolute; inset: 0; background: rgba(8,12,8,.7); backdrop-filter: blur(6px); }
.modal__card { position: relative; width: min(440px, 100%); background: var(--surface); border-radius: var(--r-lg); padding: 44px 40px; box-shadow: var(--shadow); transform: translateY(20px) scale(.97); transition: transform .45s var(--ease); border: 1px solid var(--line); }
.modal.open .modal__card { transform: none; }
.modal__card img { width: 64px; margin: 0 auto 16px; }
.modal__card h3 { text-align: center; font-size: 1.7rem; margin-bottom: 6px; }
.modal__card > p { text-align: center; font-size: 14px; color: var(--ink-mute); margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--ink); display: block; margin-bottom: 7px; }
.field input { width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font: inherit; font-size: 15px; transition: border-color .3s, box-shadow .3s; }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 25%, transparent); }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-mute); transition: .3s; }
.modal__close:hover { background: var(--bg-alt); color: var(--ink); transform: rotate(90deg); }
.modal__alt { text-align: center; font-size: 13px; color: var(--ink-mute); margin-top: 18px; }
.modal__alt a { color: var(--gold-deep); font-weight: 600; }
[data-theme="dark"] .modal__alt a { color: var(--gold); }

/* Progress bar */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); width: 0; z-index: 120; transition: width .1s linear; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1040px){
  .nav, .nav-actions .btn-mini { display: none; }
  .burger { display: flex; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .struct__card.span-7,.struct__card.span-5,.struct__card.span-4 { grid-column: span 12; }
  .adv, .news { grid-template-columns: 1fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .loc { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 720px){
  body { font-size: 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item.wide { grid-column: span 2; }
  .plans { grid-template-columns: 1fr; }
  .testi__card { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 18px; }
  .footer__top { grid-template-columns: 1fr; }
  .about__badge { width: 92px; height: 92px; left: 0; }

  /* Hero mobile: empilha conteúdo e stats em fluxo (sem sobreposição) */
  .hero { flex-direction: column; }
  .hero > .wrap { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 28px; }
  .hero__meta { position: static; margin-top: auto; }
  .hero__meta .wrap { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 22px; }
  .hero__stats { gap: 22px; width: 100%; }
  .scrollcue { display: none; }
}
