/* =====================================================================
   LOKAS MC — Divisão Ipiranga · Design System
   Estética: dark / biker · preto dominante + dourado/prata + acento magenta
   Autor: front-end. Edite as variáveis em :root para ajustar a marca.
   ===================================================================== */

/* ---------- 1. Tokens / Variáveis ---------- */
:root {
  /* Cores base */
  --black:       #0a0a0b;
  --bg:          #0b0b0d;       /* fundo da página */
  --surface:     #141417;       /* cards / superfícies elevadas */
  --surface-2:   #1b1b20;       /* hover / superfícies 2 */
  --line:        rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);

  /* Dourado / prata (realces) */
  --gold:        #c9a24a;
  --gold-2:      #e7c873;       /* brilho */
  --gold-deep:   #8a6b22;
  --gold-grad:   linear-gradient(135deg, #e7c873 0%, #c9a24a 48%, #9c7c2f 100%);
  --silver:      #c7cbd1;

  /* Acento magenta/rosa — usar com PARCIMÔNIA */
  --magenta:     #e6398b;
  --magenta-2:   #ff4f9e;

  /* Texto */
  --text:        #f4f4f5;
  --muted:       #bcbec5;       /* contraste reforçado sobre o fundo */
  --muted-2:     #7e8088;

  /* WhatsApp */
  --wpp:         #25d366;

  /* Tipografia */
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Métricas */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 9px;
  --header-h:  72px;

  --shadow:    0 18px 50px rgba(0, 0, 0, .55);
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 .4em;
  letter-spacing: .01em;
}

/* Tamanhos fluidos */
h1 { font-size: clamp(2.6rem, 6vw, 5rem); text-transform: uppercase; letter-spacing: .02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p  { margin: 0 0 1rem; color: var(--muted); }
p.lead { font-size: 1.18rem; color: #d6d7db; max-width: 60ch; }

strong { color: var(--text); }
::selection { background: var(--magenta); color: #fff; }

/* Acessibilidade: foco visível */
:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: #000; padding: 10px 16px;
  border-radius: 8px; font-weight: 700; z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Utilitários de layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-60 { max-width: 62ch; }

/* Eyebrow / rótulo de seção */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 500; font-size: .82rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: var(--gold-grad);
}
.eyebrow--center::after {
  content: ""; width: 34px; height: 2px; background: var(--gold-grad);
}
.eyebrow--center { justify-content: center; }

/* Texto com brilho dourado (usar só em destaques curtos) */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-2);
}
.magenta-text { color: var(--magenta-2); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .98rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), color .2s var(--ease), border-color .2s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--gold-grad); color: #1a1407;
  box-shadow: 0 8px 26px rgba(201, 162, 74, .28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 162, 74, .45);
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent; color: var(--gold-2);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: #1a1407;
  transform: translateY(-2px);
}

.btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-wpp { background: var(--wpp); color: #06320f; }
.btn-wpp:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Link com seta */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .1em; font-size: .9rem; color: var(--gold-2);
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.link-arrow:hover { color: #fff; }

/* ---------- 5. Header / navegação ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}

/* Marca / logo */
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: radial-gradient(circle at 30% 25%, rgba(201,162,74,.25), transparent 70%);
}
.brand__mark svg { width: 26px; height: 26px; }
/* Logo oficial (arte preta em PNG transparente → invertida para branco no tema dark) */
.logo-img {
  height: 46px; width: auto; display: block;
  filter: invert(1) brightness(1.12) drop-shadow(0 2px 5px rgba(0,0,0,.55));
  transition: transform .35s var(--ease);
}
.brand:hover .logo-img { transform: rotate(-3deg) scale(1.05); }
.site-footer .logo-img { height: 60px; }
.brand__name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.18rem; letter-spacing: .12em; line-height: 1;
  text-transform: uppercase;
}
.brand__name small {
  display: block; font-size: .58rem; letter-spacing: .34em;
  color: var(--gold-2); font-weight: 500; margin-top: 3px;
}

/* Nav desktop */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  font-size: .92rem; color: var(--muted);
  padding: 9px 13px; border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--magenta); transform: scaleX(0);
  transform-origin: left; transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--gold-grad); }
/* O CTA dentro do menu só aparece no mobile (no desktop usamos o do header-actions) */
.nav > .btn { display: none; }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Botão hambúrguer */
.nav-toggle {
  display: none; width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 22px; height: 2px; background: var(--text);
  transform: translate(-50%, -50%); transition: .25s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after  { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
/* Imagem/vídeo de fundo (placeholder) */
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(230,57,139,.12), transparent 55%),
    linear-gradient(180deg, #15151a 0%, #0b0b0d 100%);
  background-size: cover; background-position: center;
}
.hero__media img,
.hero__media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
/* Overlay para legibilidade (contraste reforçado sobre o vídeo) */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,6,8,.95) 0%, rgba(6,6,8,.74) 45%, rgba(6,6,8,.42) 100%),
    linear-gradient(0deg, rgba(6,6,8,.97) 0%, rgba(6,6,8,.08) 55%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding-block: 60px; }
.hero h1 { text-shadow: 0 2px 28px rgba(0,0,0,.6); }
.hero p.lead { text-shadow: 0 1px 14px rgba(0,0,0,.65); color: #ececed; }
.hero h1 { margin-bottom: .25em; }
.hero h1 .gold-text { display: block; }
.hero__tag {
  display: inline-block;
  font-family: var(--font-head); letter-spacing: .22em; text-transform: uppercase;
  font-size: .85rem; color: var(--gold-2);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 8px 18px; margin-bottom: 26px;
}
.hero p.lead { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  transform: translateX(-50%);
  color: var(--muted); font-size: .72rem; letter-spacing: .25em;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: pulseLine 2s var(--ease) infinite; }
@keyframes pulseLine { 0%,100%{opacity:.3; transform:scaleY(.7)} 50%{opacity:1; transform:scaleY(1)} }

/* Slogan assinatura da marca */
.signature {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .04em; line-height: 1.05;
}
.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 60px;
  background:
    radial-gradient(90% 120% at 80% -10%, rgba(201,162,74,.1), transparent 55%),
    linear-gradient(180deg, #131318, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); }

/* Breadcrumb */
.crumbs { font-size: .85rem; color: var(--muted-2); margin-bottom: 14px; letter-spacing: .04em; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { color: var(--gold-2); }

/* ---------- 7. Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.text-center { margin-inline: auto; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: var(--surface-2); }

/* Cartão de valor (filosofia) */
.value-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(201,162,74,.1); border: 1px solid rgba(201,162,74,.25);
  color: var(--gold-2);
}
.value-card .icon svg { width: 28px; height: 28px; }
.value-card h3 { color: var(--text); margin-bottom: .35em; }
.value-card p { margin: 0; font-size: .98rem; }

/* ---------- 8. Sobre (split) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--rev .split__media { order: -1; }
.media-frame {
  position: relative; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); aspect-ratio: 4 / 5;
}
.media-frame.ph { display: grid; place-items: center; text-align: center; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 -90px 80px -50px rgba(0,0,0,.8);
  pointer-events: none;
}

/* Placeholder visual de imagem */
.ph-note {
  color: var(--muted-2); font-size: .82rem; padding: 24px;
  border: 1px dashed var(--line-strong); border-radius: 10px;
  font-family: var(--font-body);
}
.ph-note strong { color: var(--gold-2); display: block; margin-bottom: 6px; font-family: var(--font-head); letter-spacing: .1em; }

/* ---------- 9. Estatísticas / prova social ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.stat { background: var(--bg); padding: 34px 20px; text-align: center; }
.stat__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { color: var(--muted); font-size: .9rem; margin-top: 8px; letter-spacing: .02em; }
.stat__note { color: var(--muted-2); font-size: .72rem; margin-top: 4px; }

/* Depoimentos */
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  position: relative;
}
.quote::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 4.5rem;
  color: var(--gold); opacity: .35; position: absolute; top: 6px; left: 18px; line-height: 1;
}
.quote p { color: #dcdce0; font-style: italic; position: relative; }
.quote__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--gold-2);
  font-family: var(--font-head); font-weight: 600;
}
.quote__author b { font-family: var(--font-head); letter-spacing: .04em; }
.quote__author span { display: block; font-size: .82rem; color: var(--muted-2); }

/* ---------- 10. Faixa de CTA ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(230,57,139,.14), transparent 60%),
    linear-gradient(180deg, #141016, #0c0c0e);
  text-align: center;
}
.cta-band h2 { margin-bottom: .2em; }
.cta-band p { max-width: 56ch; margin-inline: auto; }

/* ---------- 11. Galeria + lightbox ---------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery__item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  position: relative; cursor: pointer; display: block;
}
.gallery__item img { transition: transform .5s var(--ease), opacity .3s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__ph {
  aspect-ratio: 3/4; display: grid; place-items: center;
  color: var(--muted-2); font-size: .8rem; text-align: center; padding: 16px;
  background: repeating-linear-gradient(45deg, #141417, #141417 12px, #16161a 12px, #16161a 24px);
}
.gallery__item:nth-child(3n+2) .gallery__ph { aspect-ratio: 1; }
.gallery__item:nth-child(3n+3) .gallery__ph { aspect-ratio: 4/5; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5,5,6,.94); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.08);
  border: 1px solid var(--line-strong); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #000; }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ---------- 12. Eventos ---------- */
.event {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
  transition: border-color .3s, transform .3s var(--ease);
}
.event:hover { border-color: var(--line-strong); transform: translateX(4px); }
.event__date {
  text-align: center; border-right: 1px solid var(--line); padding-right: 18px;
  font-family: var(--font-head);
}
.event__date .day { font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--gold-2); }
.event__date .mon { text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; color: var(--muted); }
.event__body h3 { margin-bottom: 6px; }
.event__meta { font-size: .9rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 16px; }
.event__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tag {
  display: inline-block; font-family: var(--font-head); letter-spacing: .1em;
  text-transform: uppercase; font-size: .68rem; padding: 4px 10px; border-radius: 999px;
  background: rgba(230,57,139,.14); color: var(--magenta-2); border: 1px solid rgba(230,57,139,.3);
}

/* ---------- 13. Formulário ---------- */
.form-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); letter-spacing: .06em;
  text-transform: uppercase; font-size: .82rem; color: var(--silver); margin-bottom: 8px;
}
.field .req { color: var(--magenta-2); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 13px 15px; font-family: inherit; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field .hint { font-size: .8rem; color: var(--muted-2); margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--magenta); }
.field .error-msg { color: var(--magenta-2); font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid .error-msg { display: block; }

.check { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--muted); }
.check input { width: auto; margin-top: 4px; accent-color: var(--gold); }

.form-success {
  display: none; text-align: center; padding: 30px;
  border: 1px solid rgba(37,211,102,.4); background: rgba(37,211,102,.08);
  border-radius: var(--radius); color: #d6f7e0;
}
.form-success.show { display: block; }
.form-success .icon { font-size: 2.4rem; }

/* ---------- 14. FAQ (acordeão) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; padding: 22px 4px; font-family: var(--font-head);
  font-size: 1.12rem; letter-spacing: .02em;
}
.faq__q .plus { color: var(--gold-2); font-size: 1.5rem; transition: transform .3s var(--ease); flex: none; }
.faq__q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 4px 22px; margin: 0; }

/* ---------- 15. Contato ---------- */
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .3s, transform .3s var(--ease);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.contact-card .ic {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: rgba(201,162,74,.1);
  border: 1px solid rgba(201,162,74,.25); color: var(--gold-2);
}
.contact-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.contact-card p { margin: 0; font-size: .95rem; }
.map-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--black); border-top: 1px solid var(--line);
  padding: 64px 0 28px; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer .brand { margin-bottom: 16px; }
.site-footer p { font-size: .95rem; max-width: 38ch; }
.footer-sign {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .04em; color: var(--gold-2); font-size: 1.1rem; margin-top: 10px;
}
.footer-col h4 {
  font-size: .85rem; letter-spacing: .2em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-2); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--muted); transition: .2s var(--ease);
}
.socials a:hover { color: #000; background: var(--gold); transform: translateY(-3px); border-color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: var(--muted-2);
}

/* ---------- 17. Flutuantes (WhatsApp + CTA mobile) ---------- */
.wpp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wpp); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .25s var(--ease);
}
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; }
.wpp-float::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--wpp); opacity: .6; animation: ring 2.2s ease-out infinite;
}
@keyframes ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 89;
  display: none; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,11,.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { width: 100%; }

/* ---------- 18. Animações de entrada ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- 18b. Integrantes em destaque ---------- */
.member-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: center;
  background:
    radial-gradient(120% 75% at 50% 0%, rgba(201,162,74,.16), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, #0d0d10 100%);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.member-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 26px 54px rgba(0,0,0,.55); }
.member-card__img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.55));
  transition: transform .45s var(--ease);
}
.member-card:hover .member-card__img { transform: scale(1.05); }
.member-card__name { padding: 2px 16px 22px; }
.member-card__name b {
  display: block; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .08em; font-size: 1.3rem; color: var(--text);
}
.member-card__name span {
  color: var(--gold-2); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
}
.member-card__name small {
  display: block; color: var(--muted-2); font-size: .7rem;
  letter-spacing: .16em; text-transform: uppercase; margin-top: 4px;
}
.member-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.member-card:hover::after { transform: scaleX(1); }

/* ---------- 18c. Marquee (faixa dinâmica) ---------- */
.marquee {
  overflow: hidden; display: flex;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #121017, #0c0c0e);
  padding: 16px 0;
}
.marquee__track {
  display: flex; flex: none; align-items: center; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); text-transform: uppercase;
  font-size: clamp(1.05rem, 2.3vw, 1.6rem); letter-spacing: .14em;
  color: var(--silver); padding: 0 28px;
}
.marquee span::after { content: "★"; color: var(--gold-2); margin-left: 28px; font-size: .7em; }
.marquee b.alt { color: var(--gold-2); margin-left: .35em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 19. Responsivo ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: block; }

  /* Menu mobile (overlay) */
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    flex-direction: column; justify-content: flex-start; gap: 4px;
    background: rgba(10,10,11,.98); backdrop-filter: blur(16px);
    padding: 26px clamp(18px,5vw,40px);
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a:not(.btn) { width: 100%; font-size: 1.3rem; padding: 16px 6px; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav > .btn { display: inline-flex; width: 100%; margin-top: 18px; }

  .header-actions .btn { display: none; } /* CTA do header some no mobile (vira sticky) */

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .event { grid-template-columns: 70px 1fr; }
  .event__cta { grid-column: 1 / -1; }

  .mobile-cta { display: block; }
  body { padding-bottom: 76px; } /* espaço para o CTA sticky */
  .wpp-float { bottom: 84px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .field--inline { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- 20. Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
