/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e53e3e;
  --red-dark: #c53030;
  --red-light: rgba(229,62,62,0.1);
  --red-border: rgba(229,62,62,0.3);
  --bg-dark: #0d0d0d;
  --bg-darker: #080808;
  --bg-darkest: #060606;
  --bg-card-dark: #111111;
  --bg-card-darker: #151515;
  --border-dark: #1e1e1e;
  --border-mid: #2a2a2a;
  --text-white: #ffffff;
  --text-light: #cdcdcd;
  --text-mid: #cdcdcd;
  --text-muted: #cdcdcd;
  --text-dim: #cdcdcd;
  --text-dimmer: #cdcdcd;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0d0d0d;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
  padding-top: 0; /* controlado inteiramente pelo JS via loadNextEvents */
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── Topbar ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100; /* sempre acima de tudo */
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border-dark);
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.topbar-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.topbar-name {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.topbar-name span {
  display: block;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-nav a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.topbar-nav a:hover { color: var(--text-white); }
.topbar-nav a.active { color: var(--text-white); }

.nav-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.nav-toggle {
  display: none;
  background: none;
  border: 0.5px solid var(--border-mid);
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  font-size: 18px;
}

/* ── Seções ── */
section, .sec { scroll-margin-top: 58px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px;
}

.sec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.sec-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.sec-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 540px;
}

/* ── Hero ── */
.hero {
  background: var(--bg-dark);
  padding-top: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,62,62,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -100px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,62,62,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-light);
  border: 0.5px solid var(--red-border);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero-badge span { color: var(--red); font-size: 12px; font-weight: 500; }
.hero-title {
  color: var(--text-white);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border-mid);
  border-radius: 4px;
  padding: 5px 12px;
  color: var(--text-muted);
  font-size: 12px;
}
.tag i { font-size: 13px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text-mid);
  border: 0.5px solid var(--border-mid);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: #555; color: var(--text-white); }
.hero-logo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-dark); opacity: 0.9; }

/* ── Live strip ── */
.live-strip {
  background: #0a0a0a;
  border-bottom: 0.5px solid var(--border-dark);
}
.live-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ls-label {
  color: var(--text-dimmer);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.ls-sep { width: 0.5px; height: 26px; background: #222; flex-shrink: 0; }
.ls-thumb {
  width: 68px; height: 40px;
  background: #181818;
  border-radius: 4px;
  border: 0.5px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.ls-thumb i { font-size: 22px; color: var(--red); }
.ls-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ls-info { flex: 1; min-width: 0; }
.ls-title { color: #ccc; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ls-sub { color: var(--text-dimmer); font-size: 11px; margin-top: 2px; }
.pill-live {
  background: var(--red-light);
  border: 0.5px solid var(--red-border);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.pill-off {
  background: #161616;
  border: 0.5px solid #222;
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--text-dimmer);
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ls-watch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Serviços ── */
.servicos { background: #0d0d0d; }
.srv-main {
  background: #111;
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.srv-main-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  flex-shrink: 0;
}
.srv-label {
  display: inline-block;
  background: var(--red-light);
  border: 0.5px solid var(--red-border);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 10px;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.srv-main-name { font-size: 17px; font-weight: 500; color: var(--text-white); margin-bottom: 8px; }
.srv-main-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.srv-cats { display: flex; gap: 7px; margin-top: 14px; flex-wrap: wrap; }
.srv-cat {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border-mid);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.srv-sub {
  background: #111;
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: start;
}
.srv-sub-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ic-blue { background: rgba(55,138,221,0.12); color: #378add; }
.srv-sub-name { font-size: 14px; font-weight: 500; color: var(--text-white); margin-bottom: 5px; }
.srv-sub-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── Portfólio ── */
.portfolio { background: var(--bg-darker); }
.portfolio .sec-title { color: var(--text-light); }
.portfolio .sec-sub { color: var(--text-dim); }

.ev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ev-card {
  background: var(--bg-card-dark);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ev-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ic-big { background: var(--red-light); color: var(--red); }
.ic-mid { background: rgba(255,255,255,0.05); color: var(--text-dim); }
.ev-name { font-size: 13px; font-weight: 500; color: #ccc; line-height: 1.35; margin-bottom: 5px; }
.ev-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
}
.pill-both { background: rgba(23,96,165,0.12); color: #378add; border: 0.5px solid rgba(23,96,165,0.2); }
.pill-nr { background: rgba(99,153,34,0.12); color: #639922; border: 0.5px solid rgba(99,153,34,0.2); }
.pill-team { background: rgba(255,255,255,0.04); color: var(--text-dim); border: 0.5px solid #222; }

.ev-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.ev-leg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dimmer);
}
.ev-leg span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
}
.leg-both { background: rgba(23,96,165,0.4); }
.leg-nr { background: rgba(99,153,34,0.4); }
.leg-team { background: rgba(255,255,255,0.08); border: 0.5px solid #333; }

/* ── Agenda ── */
.agenda { background: #0a0a0a; }
.agenda-list { display: flex; flex-direction: column; gap: 8px; }
.ag-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card-dark);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.ag-item:hover { border-color: var(--border-mid); }
.ag-item.is-live { border-color: var(--red-border); }
.ag-date { min-width: 46px; text-align: center; flex-shrink: 0; }
.ag-day { font-size: 22px; font-weight: 500; color: var(--text-white); line-height: 1; }
.ag-mon { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-top: 2px; }
.ag-sep { width: 0.5px; height: 36px; background: var(--border-dark); flex-shrink: 0; }
.ag-info { flex: 1; min-width: 0; }
.ag-name { font-size: 14px; font-weight: 500; color: var(--text-white); }
.ag-det { font-size: 12px; color: var(--text-dim); margin-top: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ag-det i { font-size: 12px; vertical-align: -1px; }
.ag-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ag-time { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.ag-time i { font-size: 13px; }
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red-light);
  border: 0.5px solid var(--red-border);
  border-radius: 4px;
  padding: 4px 9px;
  color: var(--red);
  font-size: 11px;
  font-weight: 500;
}
.badge-hoje {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
}
.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.agenda-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-dim);
  font-size: 14px;
}
.agenda-empty i { font-size: 32px; display: block; margin-bottom: 12px; opacity: 0.3; }
.agenda-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-dim);
  font-size: 14px;
}
.agenda-loading i { font-size: 24px; display: block; margin-bottom: 10px; opacity: 0.4; animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.agenda-error {
  background: rgba(229,62,62,0.08);
  border: 0.5px solid var(--red-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  color: #f87171;
}
.agenda-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agenda-footer-note { font-size: 12px; color: var(--text-dimmer); display: flex; align-items: center; gap: 6px; }
.agenda-footer-note i { font-size: 14px; }
.btn-ver-mais {
  background: none;
  border: 0.5px solid var(--border-dark);
  border-radius: 4px;
  padding: 5px 12px;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ver-mais:hover { border-color: var(--border-mid); color: var(--text-muted); }

/* ── KASP Pro ── */
.kasp-sec { background: #0d0d0d; }
.kasp-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.kasp-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.kasp-logo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.kasp-logo-label { color: var(--text-dimmer); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.kasp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  border: 0.5px solid var(--red-border);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.kasp-badge span { color: var(--red); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.kasp-title { color: var(--text-white); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.kasp-sub { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 16px; max-width: 580px; }
.kasp-meta { display: flex; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.kasp-m { display: flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 13px; }
.kasp-m i { font-size: 15px; }
.yt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.yt-card {
  background: var(--bg-card-darker);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s;
}
.yt-card:hover { border-color: var(--border-mid); }
.yt-thumb { height: 76px; background: #1a1a1a; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-play {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(229,62,62,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-play i { font-size: 12px; color: #fff; margin-left: 2px; }
.yt-info { padding: 10px 12px; }
.yt-ep { color: var(--red); font-size: 10px; font-weight: 500; margin-bottom: 4px; }
.yt-name { color: var(--text-muted); font-size: 12px; line-height: 1.4; }

/* ── Sobre ── */
.sobre { background: var(--bg-darker); }
.sobre .sec-title { color: var(--text-light); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 14px; position: relative; }
.tl-item:not(:last-child) .tl-line {
  position: absolute;
  left: 27px; top: 30px; bottom: 0;
  width: 0.5px;
  background: var(--border-dark);
}
.tl-left { display: flex; flex-direction: column; align-items: center; padding-top: 2px; }
.tl-year { font-size: 11px; font-weight: 500; color: var(--text-dim); white-space: nowrap; }
.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-mid);
  margin-top: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-dot.red { background: var(--red); box-shadow: 0 0 0 3px rgba(229,62,62,0.15); }
.tl-right { padding-bottom: 28px; }
.tl-title { font-size: 13px; font-weight: 500; color: var(--text-light); margin-bottom: 4px; }
.tl-desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

.right-col { display: flex; flex-direction: column; gap: 10px; }
.stats-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px;
}
.stat-n { font-size: 22px; font-weight: 500; color: var(--text-white); }
.stat-l { font-size: 12px; color: var(--text-dim); margin-top: 4px; line-height: 1.4; }

.solo-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(229,62,62,0.06);
  border: 0.5px solid rgba(229,62,62,0.18);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.solo-badge i { font-size: 16px; color: var(--red); margin-top: 1px; flex-shrink: 0; }
.solo-badge p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.solo-badge strong { color: var(--text-light); font-weight: 500; }

.team-block {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.team-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.team-header i { font-size: 16px; color: var(--text-dim); }
.team-header-title { font-size: 13px; font-weight: 500; color: var(--text-light); }
.team-header-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.team-members { display: flex; flex-direction: column; gap: 8px; }
.member {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 13px;
  background: rgba(255,255,255,0.02);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-md);
}
.member-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}
.av-red { background: rgba(229,62,62,0.15); color: var(--red); }
.av-blue { background: rgba(55,138,221,0.12); color: #378add; }
.av-green { background: rgba(99,153,34,0.12); color: #639922; }
.member-name { font-size: 13px; font-weight: 500; color: var(--text-light); }
.member-role { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.member-tags { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.mtag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border-dark);
  color: var(--text-dim);
}

/* ── CTA Band ── */
.cta-band { background: #0a0a0a; border-top: 0.5px solid var(--border-dark); }
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-t { color: var(--text-white); font-size: 18px; font-weight: 500; }
.cta-s { color: var(--text-dimmer); font-size: 13px; margin-top: 5px; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cb:hover { opacity: 0.85; }
.cb-yt { background: var(--red); color: #fff; border: none; }
.cb-ig { background: transparent; color: var(--text-muted); border: 0.5px solid var(--border-mid); }
.cb-wa { background: transparent; color: var(--text-muted); border: 0.5px solid var(--border-mid); }
.cb i { font-size: 16px; }

/* ── Footer ── */
.footer { background: var(--bg-darkest); border-top: 0.5px solid var(--border-dark); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; align-self: start; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-name { color: var(--text-white); font-size: 15px; font-weight: 500; }
.footer-sub { color: var(--text-dim); font-size: 12px; margin-top: 3px; max-width: 200px; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { color: var(--text-muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.footer-col a { color: var(--text-dim); font-size: 13px; transition: color 0.2s; display: flex; align-items: center; gap: 7px; }
.footer-col a:hover { color: var(--text-muted); }
.footer-col a i { font-size: 15px; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 28px;
  border-top: 0.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: #2a2a2a; font-size: 12px; }

/* ── Responsivo ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .topbar-nav {
    display: none;
    position: fixed;
    top: 58px; left: 0; right: 0; /* top atualizado pelo JS */
    background: #0d0d0d;
    border-bottom: 0.5px solid var(--border-dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    align-items: flex-start;
    z-index: 80; /* abaixo do banner de eventos (95) */
  }
  .topbar-nav.open { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
  .hero-title { font-size: 28px; }

  .ev-grid { grid-template-columns: 1fr; }
  .yt-cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .kasp-inner { grid-template-columns: 1fr; }
  .kasp-logo-wrap { flex-direction: row; justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .srv-main { grid-template-columns: 1fr; }

  .ag-item { flex-wrap: wrap; }
  .ls-strip-inner { flex-wrap: wrap; }
}

/* ── Botão flutuante WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
}
.wa-float-tooltip {
  position: absolute;
  right: 62px;
  background: #111;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  border: 0.5px solid #2a2a2a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}

/* ── Banner próximos eventos ── */
.next-events-bar {
  background: #0a0a0a;
  border-bottom: 0.5px solid var(--border-dark);
  position: relative;
  width: 100%;
}
.next-events-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.nev-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-right: 0.5px solid var(--border-dark);
  transition: background 0.2s;
  cursor: default;
}
.nev-item:last-child { border-right: none; }
.nev-item:hover { background: #111; }
.nev-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
  flex-shrink: 0;
}
.nev-day  { font-size: 18px; font-weight: 500; color: var(--red); line-height: 1; }
.nev-mon  { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-top: 1px; }
.nev-sep  { width: 0.5px; height: 28px; background: var(--border-dark); flex-shrink: 0; }
.nev-info { flex: 1; min-width: 0; }
.nev-name { font-size: 12px; font-weight: 500; color: #cdcdcd; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nev-loc  { font-size: 10px; color: var(--text-dim); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nev-time { font-size: 11px; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; gap: 3px; }
.nev-time i { font-size: 11px; }

/* Mobile: só o primeiro evento */
@media (max-width: 768px) {
  .next-events-inner {
    grid-template-columns: 1fr;
  }
  .nev-item:not(:first-child) {
    display: none;
  }
  .nev-item { border-right: none; }
}

/* ── Foto circular membros equipe ── */
.member-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 0.5px solid var(--border-dark);
  flex-shrink: 0;
}

/* ── Solo badge com foto ── */
.solo-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.solo-badge-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--red-border);
  flex-shrink: 0;
}
.solo-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.solo-badge-name {
  font-size: 13px;
  font-weight: 500;
  color: #cdcdcd;
}
.solo-badge-title {
  font-size: 11px;
  color: var(--red);
  margin-bottom: 4px;
}
