@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Agnova Brand Colors */
  --brand-green:  #96fb55;
  --brand-purple: #6d50ff;
  --brand-white:  #f7f7f7;
  --brand-black:  #131315;

  /* UI Palette */
  --bg:    #131315;
  --bg2:   #131315;
  --bg3:   #131315;
  --card:  #131315;
  --card2: #131315;
  --border: rgba(247,247,247,0.08);

  /* Accent aliases */
  --green:   #96fb55;
  --green2:  #b5fc82;
  --purple:  #6d50ff;
  --purple2: #6d50ff;
  --gold:    #96fb55;   /* verde é a cor principal */
  --gold2:   #96fb55;
  --accent:  #6d50ff;

  /* Text */
  --text:  #f7f7f7;
  --text2: #d6d6df;
  --text3: #a8a8b5;

  /* Semantic */
  --red:    #ff5f73;
  --radius: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #131315;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(19,19,21,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(247,247,247,0.12);
}

.nav-logo {
  height: 50px;
  display: flex; align-items: center;
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  color: var(--text2); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-login {
  background: var(--brand-purple);
  color: var(--brand-white) !important; padding: 0.55rem 1.4rem;
  border-radius: 8px; font-weight: 800; font-size: 0.85rem !important;
  transition: all 0.3s !important; box-shadow: 0 4px 20px rgba(109,80,255,0.34);
}
.btn-login:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(109,80,255,0.6) !important;
  color: var(--brand-white) !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6.2rem 2rem 3rem;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #131315;
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(19,19,21,0), #131315 82%);
  z-index: 0;
  pointer-events: none;
}

.hero-stamp {
  position: absolute;
  right: clamp(1rem, 5vw, 6rem);
  bottom: 8%;
  width: clamp(92px, 11vw, 150px);
  transform: rotate(8deg);
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-block;
  background: var(--brand-green);
  border: 1px solid var(--brand-green);
  color: var(--brand-black);
  padding: 0.42rem 0.9rem; border-radius: 8px;
  font-size: 0.74rem; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.hero-logo-wrap {
  width: min(680px, 92vw);
  height: auto;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}

.hero-logo {
  width: min(520px, 90vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 52px rgba(0,0,0,0.78));
}

.hero-logo-official {
  width: min(680px, 92vw);
  border-radius: 2px;
  filter: drop-shadow(0 24px 52px rgba(0,0,0,0.78));
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -2px; margin-bottom: 0.3rem;
  background: linear-gradient(135deg, var(--brand-white) 0%, var(--brand-green) 60%, var(--brand-purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.45rem, 3.5vw, 3rem);
  color: var(--brand-white); margin-bottom: 0.8rem; font-weight: 900;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.03rem; color: var(--text2);
  line-height: 1.55; max-width: 620px; margin: 0 auto 1.7rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--brand-purple);
  color: var(--brand-white); padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(109,80,255,0.5);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(109,80,255,0.7); }

.btn-secondary {
  background: transparent; color: var(--text2);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1px solid var(--border); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ===== STATS ROW ===== */
.stats-row {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--brand-green);
}
.stat-label { font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

/* ===== SECTION ===== */
.section { padding: 6rem 2rem; position: relative; }
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 900;
  text-align: center; margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.section-sub { text-align: center; color: inherit; opacity: 0.8; margin-bottom: 3.5rem; font-size: 1.05rem; }

.eventos-section {
  background: #6d50ff;
  color: #f7f7f7;
}
.eventos-section .section-title { color: #f7f7f7; }

#sobre.section {
  background: #f0f0f5;
  color: #131315;
}
#sobre .section-title { color: #131315; }
#sobre .about-text p { color: #343438; }
#sobre .about-card { background: #fff; border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
#sobre .about-card h4 { color: #131315; }
#sobre .about-card p { color: #666; }
#sobre .about-highlight { background: #fff; border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
#sobre .about-highlight p { color: #333; }
#sobre .about-highlight h3 { color: #131315; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1120px; margin: 0 auto; align-items: center;
}
.about-text p { color: var(--text2); line-height: 1.8; margin-bottom: 1rem; font-size: 1.03rem; }
.about-highlight {
  background: var(--brand-white);
  border: 1px solid rgba(247,247,247,0.18); border-radius: var(--radius);
  padding: 1.5rem;
}
.about-highlight h3 { font-family: 'Outfit', sans-serif; color: var(--brand-black); margin-bottom: 0.5rem; text-transform: uppercase; }
.about-highlight p { color: #343438; font-size: 0.95rem; margin: 0; }

.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.brand-card {
  background: var(--brand-white);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(247,247,247,0.18);
}
.brand-card-wide { grid-column: 1 / -1; }
.brand-card img {
  width: min(74%, 330px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.2));
}
.about-card {
  background: #18181b; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.3rem; text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}
.about-card:hover { transform: translateY(-4px); border-color: rgba(150,251,85,0.35); }
.about-card-icon {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; margin-bottom: 0.7rem;
  color: var(--brand-green);
  font-weight: 900;
}
.about-card h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; margin-bottom: 0.3rem; text-transform: uppercase; }
.about-card p { font-size: 0.8rem; color: var(--text3); }

/* ===== SOCIAL ===== */
.social-section {
  background: #f0f0f5;
  color: #131315;
}
.social-section .section-title { color: #131315; }
.social-section .section-sub { color: #444; }
.social-card {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
  color: #131315;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.social-links {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.social-card {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.8rem;
  text-decoration: none; color: var(--text); transition: all 0.3s;
}
.social-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.social-card svg { width: 24px; height: 24px; }
.social-card span { font-weight: 600; font-size: 0.95rem; }

/* ===== FOOTER ===== */
footer {
  text-align: center; padding: 3rem 2rem;
  background: #96fb55;
  color: #131315; font-size: 0.85rem;
}
footer strong { color: #131315; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: #131315;
  padding: 2rem;
}

.login-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 3rem; width: 100%; max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.login-logo {
  text-align: center; margin-bottom: 2rem;
}
.login-logo h1 {
  font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.login-logo p { color: var(--text3); font-size: 0.9rem; margin-top: 0.3rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text2); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem 1rem; color: var(--text);
  font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--purple2); }

.btn-login-submit {
  width: 100%; background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #fff; border: none; border-radius: 10px; padding: 0.9rem;
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  margin-top: 0.5rem;
}
.btn-login-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.6); }

.login-error {
  background: rgba(244,63,94,0.1); border: 1px solid rgba(244,63,94,0.3);
  color: var(--red); border-radius: 8px; padding: 0.7rem 1rem;
  font-size: 0.85rem; margin-top: 1rem; display: none; text-align: center;
}

.login-back {
  display: block; text-align: center; margin-top: 1.5rem;
  color: var(--text3); font-size: 0.85rem; text-decoration: none;
  transition: color 0.2s;
}
.login-back:hover { color: var(--text2); }

/* ===== DASHBOARD ===== */
.dash-layout {
  display: flex; min-height: 100vh;
}

.dash-sidebar {
  width: 240px; background: var(--bg2); border-right: 1px solid var(--border);
  padding: 1.5rem; position: fixed; top: 0; bottom: 0; left: 0;
  display: flex; flex-direction: column; z-index: 50;
}

.dash-logo {
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
}
.dash-logo-sub { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; }

.dash-nav { flex: 1; }
.dash-nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0.9rem; border-radius: 10px; cursor: pointer;
  color: var(--text2); font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s; margin-bottom: 0.3rem; border: none;
  background: transparent; width: 100%; text-align: left; font-family: inherit;
}
.dash-nav-item:hover { background: var(--card); color: var(--text); }
.dash-nav-item.active { background: rgba(109,80,255,0.18); color: var(--brand-green); }
.dash-nav-item .icon { font-size: 1.1rem; width: 20px; text-align: center; }

.dash-logout {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0.9rem; border-radius: 10px; cursor: pointer;
  color: var(--text3); font-size: 0.85rem;
  transition: all 0.2s; background: transparent; border: none;
  width: 100%; font-family: inherit;
}
.dash-logout:hover { color: var(--red); }

.dash-main {
  margin-left: 240px; flex: 1; padding: 2rem; overflow-x: hidden;
}

.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}
.dash-header h2 {
  font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800;
}
.dash-date { font-size: 0.85rem; color: var(--text3); }

/* KPI Cards */
.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem; margin-bottom: 2rem;
}

.kpi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; position: relative; overflow: hidden;
  transition: transform 0.2s;
}
.kpi-card:hover { transform: translateY(-3px); }
.kpi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.kpi-card.gold::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.kpi-card.purple::before { background: linear-gradient(90deg, var(--purple), var(--purple2)); }
.kpi-card.green::before { background: linear-gradient(90deg, var(--brand-green), var(--green2)); }
.kpi-card.pink::before { background: linear-gradient(90deg, var(--brand-purple), var(--purple2)); }

.kpi-label { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.7rem; }
.kpi-value {
  font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1;
}
.kpi-value.gold { color: var(--gold); }
.kpi-value.purple { color: var(--purple2); }
.kpi-value.green { color: var(--green); }
.kpi-value.pink { color: var(--accent); }
.kpi-sub { font-size: 0.8rem; color: var(--text3); margin-top: 0.4rem; }

/* Charts */
.charts-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 2rem;
}
.chart-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.chart-title {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  margin-bottom: 1.2rem; color: var(--text);
}

/* Events Table */
.table-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem;
}
.table-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border);
}
.table-title { font-family: 'Outfit', sans-serif; font-weight: 700; }

.search-input {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.5rem 1rem; color: var(--text);
  font-size: 0.85rem; font-family: inherit; outline: none;
  transition: border-color 0.2s; width: 220px;
}
.search-input:focus { border-color: var(--purple2); }

.table-scroll {
  overflow-x: auto;
  max-height: calc(100vh - 150px);
}

table { width: 100%; border-collapse: separate; border-spacing: 0; }
thead tr { background: #25252b; }
th {
  position: sticky; top: 0; z-index: 5;
  padding: 0.85rem 1rem; text-align: left;
  font-size: 0.75rem; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.14); font-weight: 700;
  background: #25252b;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.24);
  white-space: nowrap;
}
td {
  padding: 0.9rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem; color: var(--text2);
  white-space: nowrap;
}
tbody tr { transition: background 0.15s; cursor: pointer; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody tr:last-child td { border-bottom: none; }
.td-name { color: var(--text) !important; font-weight: 600; }
.td-money { color: #c9ff9f !important; font-weight: 700; }
.td-green { color: #b7ff86 !important; font-weight: 700; }
.td-red, .td-cost { color: var(--red) !important; font-weight: 700; }

.badge {
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
}
.badge-green { background: rgba(150,251,85,0.15); color: var(--brand-green); }
.badge-gold { background: rgba(150,251,85,0.12); color: var(--brand-green); }
.badge-purple { background: rgba(109,80,255,0.18); color: var(--purple2); }

/* Modal / Event Detail */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; width: 100%; max-width: 720px;
  max-height: 85vh; overflow-y: auto; transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.modal-title { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; }
.modal-date { font-size: 0.85rem; color: var(--text3); margin-top: 0.2rem; }
.modal-close {
  background: var(--card); border: 1px solid var(--border); color: var(--text2);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }

.modal-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.modal-kpi {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem; text-align: center;
}
.modal-kpi-val {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--gold);
}
.modal-kpi-lab { font-size: 0.75rem; color: var(--text3); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.5px; }

.modal-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.breakdown-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1rem;
}
.breakdown-title { font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; font-weight: 600; }
.breakdown-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.85rem;
}
.breakdown-item:last-child { border-bottom: none; }
.breakdown-item span:first-child { color: var(--text2); }
.breakdown-item span:last-child { color: var(--text); font-weight: 600; }

/* View panels */
.view { display: none; }
.view.active { display: block; }

/* Presentation view */
.presentation-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.presentation-eyebrow {
  color: var(--brand-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.presentation-toolbar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}
.presentation-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--brand-green);
  color: var(--brand-black);
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}
.presentation-root {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.presentation-error {
  border: 1px solid rgba(255,95,115,0.35);
  border-radius: 8px;
  color: var(--red);
  padding: 1rem;
}
.deck-slide {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 2rem;
  border: 1px solid rgba(247,247,247,0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(109,80,255,0.12), rgba(19,19,21,0) 26%),
    #131315;
}
.deck-slide::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 100px;
  height: 40px;
  background: url('../assets/logo-nova-oficial.png') center / contain no-repeat;
  opacity: 0.6;
}
.deck-kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.deck-kicker span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
}
.deck-kicker b {
  margin-left: auto;
  color: var(--text3);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}
.deck-slide h4 {
  max-width: 920px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.deck-slide h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--brand-green);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.deck-lead {
  max-width: 760px;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.deck-grid {
  display: grid;
  gap: 1rem;
}
.deck-grid.two { grid-template-columns: repeat(2, 1fr); }
.deck-grid.three { grid-template-columns: repeat(3, 1fr); }
.deck-grid.four { grid-template-columns: repeat(4, 1fr); }
.deck-grid.compact { margin-top: 1rem; }
.deck-grid.summary { align-items: stretch; }
.deck-metric,
.deck-panel,
.deck-note,
.deck-table-wrap {
  background: #18181b;
  border: 1px solid rgba(247,247,247,0.1);
  border-radius: 8px;
}
.deck-metric {
  min-height: 104px;
  padding: 1rem;
}
.deck-metric span {
  display: block;
  color: var(--text3);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.deck-metric strong {
  display: block;
  color: var(--brand-green);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}
.deck-metric small {
  display: block;
  color: var(--text3);
  font-size: 0.75rem;
  margin-top: 0.55rem;
}
.deck-metric.deck-purple strong { color: var(--brand-purple); }
.deck-metric.deck-red strong { color: var(--red); }
.deck-note {
  color: var(--text2);
  line-height: 1.5;
  margin-top: 1rem;
  padding: 1rem;
}
.deck-panel {
  min-height: 210px;
  padding: 1.1rem;
}
.deck-bullets {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.deck-bullets li {
  position: relative;
  color: var(--text2);
  line-height: 1.42;
  padding-left: 1rem;
}
.deck-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
}
.deck-bullets.deck-red li::before { background: var(--red); }
.deck-bullets.deck-purple li::before { background: var(--brand-purple); }
.deck-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}
.deck-table {
  min-width: 720px;
}
.deck-table th {
  position: static;
  box-shadow: none;
}
.deck-table td:first-child {
  color: var(--text);
  font-weight: 800;
}
.deck-chart {
  width: 100%;
  min-height: 260px;
  margin-top: 1rem;
  border: 1px solid rgba(247,247,247,0.1);
  border-radius: 8px;
  background: #18181b;
}
.deck-chart line {
  stroke: rgba(247,247,247,0.12);
  stroke-width: 1;
}
.deck-chart text {
  fill: var(--text3);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}
.deck-chart .chart-purple {
  stroke: var(--brand-purple);
  stroke-width: 3;
}
.deck-chart .chart-red {
  stroke: var(--red);
  stroke-width: 3;
}
.deck-chart .chart-label-purple { fill: var(--brand-purple); }
.deck-chart .chart-label-red { fill: var(--red); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== NAV EVENTOS ===== */
.nav-eventos {
  color: var(--brand-green) !important;
  font-weight: 600 !important;
  position: relative;
}
.nav-eventos::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--brand-green); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-eventos:hover::after { transform: scaleX(1); }

/* ===== EVENTOS SECTION ===== */
.eventos-section {
  position: relative;
  overflow: hidden;
}
.eventos-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(109,80,255,0.10), rgba(19,19,21,0) 28%);
}

.eventos-header { text-align: center; margin-bottom: 3.5rem; position: relative; }

.eventos-tag {
  display: inline-block;
  background: var(--brand-green);
  border: 1px solid var(--brand-green);
  color: var(--brand-black);
  padding: 0.35rem 1rem; border-radius: 8px;
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 1rem;
}

/* Grid — 3 colunas desktop, 2 tablet, 1 mobile */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Card */
.evento-card {
  background: #18181b;
  border: 1px solid rgba(247,247,247,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.evento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(150,251,85,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(150,251,85,0.08);
}

/* Arte/placeholder */
.evento-art {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  position: relative;
  overflow: hidden;
}
.evento-art::before {
  content: 'Agência Nova';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; opacity: 0.28;
  font-weight: 900;
  transform: rotate(-10deg);
  text-transform: uppercase;
}
.evento-art::after {
  content: '';
  position: absolute; inset: 0;
  background:
    url('../assets/marca-escrita.png') center / 64% auto no-repeat,
    linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
  opacity: 0.92;
}

/* Quando tiver imagem real */
.evento-art img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Info */
.evento-info {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.evento-date {
  font-size: 0.72rem; font-weight: 700;
  color: var(--brand-green); text-transform: uppercase;
  letter-spacing: 1.5px;
}
.evento-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); line-height: 1.2;
  margin: 0.1rem 0;
}
.evento-sub {
  font-size: 0.78rem; color: var(--text3);
  margin-bottom: 0.6rem;
}

/* Botão ingresso */
.evento-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-green);
  color: var(--brand-black) !important;
  font-weight: 800; font-size: 0.82rem;
  padding: 0.6rem 1.2rem; border-radius: 8px;
  text-decoration: none; transition: all 0.25s;
  margin-top: 0.4rem; letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(150,251,85,0.25);
  width: 100%; text-align: center;
}
.evento-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150,251,85,0.45);
  filter: brightness(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0; }
  .charts-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .modal-kpis { grid-template-columns: 1fr 1fr; }
  .modal-breakdown { grid-template-columns: 1fr; }
  .eventos-grid { grid-template-columns: repeat(2, 1fr); }
  .presentation-toolbar { align-items: flex-start; flex-direction: column; }
  .deck-grid.two,
  .deck-grid.three,
  .deck-grid.four { grid-template-columns: 1fr; }
  .deck-slide { min-height: 0; padding: 1.25rem; }
}
@media (max-width: 600px) {
  html, body { max-width: 100vw; overflow-x: hidden; }
  .navbar {
    width: 100%;
    max-width: 100vw;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .nav-logo { width: 126px; height: 42px; flex: 0 0 auto; }
  .nav-logo img { width: 126px; }
  .btn-login { padding: 0.5rem 0.7rem; white-space: nowrap; font-size: 0.78rem !important; }
  .nav-links .hide-mobile { display: none; }
  .nav-links { gap: 0.75rem; margin-left: auto; }
  .hero { padding: 6rem 1rem 3rem; max-width: 100vw; }
  .hero-content { width: 100%; max-width: 100%; }
  .hero-badge {
    display: block;
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    line-height: 1.3;
    font-size: 0.68rem;
  }
  .hero-logo-wrap { width: 100%; }
  .hero-logo { width: min(310px, 100%); }
  .hero-logo-official { width: min(340px, 100%); }
  .hero-sub {
    font-size: 1.5rem;
    line-height: 1.12;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    max-width: 100%;
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: min(100%, 260px);
    justify-content: center;
  }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .hero-stamp {
    right: -34px;
    bottom: 4rem;
    width: 92px;
    opacity: 0.82;
  }
  .section { padding: 4.5rem 1rem; }
  .section-title { font-size: 2.35rem; line-height: 1; }
  .about-visual { grid-template-columns: 1fr; }
  .brand-card-wide { grid-column: auto; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .eventos-grid { grid-template-columns: 1fr; }
  .evento-art { height: 160px; }
}
/* ===== STATS PREMIUM ===== */
.stats-premium {
  background: #131315;
  padding: 8rem 2rem;
}
.stats-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.stats-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: rgba(150,251,85,0.05);
  border-color: var(--brand-green);
  transform: translateY(-5px);
}
.stat-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card-label {
  font-size: 0.85rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.stats-footer-tags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stats-footer-tags span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

/* ===== PARCEIROS SECTION ===== */
.parceiros-section {
  background: #f0f0f5;
  padding: 8rem 2rem;
}
.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.parceiro-item {
  aspect-ratio: 16/9;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  filter: grayscale(1);
  opacity: 0.7;
}
.parceiro-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--brand-green);
font-size: 1.1rem; font-weight: 800;
  color: var(--text); line-height: 1.2;
  margin: 0.1rem 0;
}
.evento-sub {
  font-size: 0.78rem; color: var(--text3);
  margin-bottom: 0.6rem;
}

/* Botão ingresso */
.evento-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-green);
  color: var(--brand-black) !important;
  font-weight: 800; font-size: 0.82rem;
  padding: 0.6rem 1.2rem; border-radius: 8px;
  text-decoration: none; transition: all 0.25s;
  margin-top: 0.4rem; letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(150,251,85,0.25);
  width: 100%; text-align: center;
}
.evento-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150,251,85,0.45);
  filter: brightness(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0; }
  .charts-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .modal-kpis { grid-template-columns: 1fr 1fr; }
  .modal-breakdown { grid-template-columns: 1fr; }
  .eventos-grid { grid-template-columns: repeat(2, 1fr); }
  .presentation-toolbar { align-items: flex-start; flex-direction: column; }
  .deck-grid.two,
  .deck-grid.three,
  .deck-grid.four { grid-template-columns: 1fr; }
  .deck-slide { min-height: 0; padding: 1.25rem; }
}
@media (max-width: 600px) {
  html, body { max-width: 100vw; overflow-x: hidden; }
  .navbar {
    width: 100%;
    max-width: 100vw;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .nav-logo { width: 126px; height: 42px; flex: 0 0 auto; }
  .nav-logo img { width: 126px; }
  .btn-login { padding: 0.5rem 0.7rem; white-space: nowrap; font-size: 0.78rem !important; }
  .nav-links .hide-mobile { display: none; }
  .nav-links { gap: 0.75rem; margin-left: auto; }
  .hero { padding: 6rem 1rem 3rem; max-width: 100vw; }
  .hero-content { width: 100%; max-width: 100%; }
  .hero-badge {
    display: block;
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    line-height: 1.3;
    font-size: 0.68rem;
  }
  .hero-logo-wrap { width: 100%; }
  .hero-logo { width: min(310px, 100%); }
  .hero-logo-official { width: min(340px, 100%); }
  .hero-sub {
    font-size: 1.5rem;
    line-height: 1.12;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    max-width: 100%;
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: min(100%, 260px);
    justify-content: center;
  }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .hero-stamp {
    right: -34px;
    bottom: 4rem;
    width: 92px;
    opacity: 0.82;
  }
  .section { padding: 4.5rem 1rem; }
  .section-title { font-size: 2.35rem; line-height: 1; }
  .about-visual { grid-template-columns: 1fr; }
  .brand-card-wide { grid-column: auto; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .eventos-grid { grid-template-columns: 1fr; }
  .evento-art { height: 160px; }
}

/* ===== STATS PREMIUM ===== */
.stats-premium {
  background: #131315;
  padding: 8rem 2rem;
}
.stats-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.stats-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: rgba(150,251,85,0.05);
  border-color: var(--brand-green);
  transform: translateY(-5px);
}
.stat-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card-label {
  font-size: 0.85rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.stats-footer-tags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stats-footer-tags span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

/* ===== PARCEIROS SECTION ===== */
.parceiros-section {
  background: #0f0f11; /* Tom mais escuro para destaque */
  padding: 8rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.parceiro-item {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  filter: grayscale(1);
  opacity: 0.6;
}
.parceiro-item:hover {
  filter: grayscale(0);
  opacity: 1;
  background: rgba(255,255,255,0.05);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: var(--brand-green);
}
.parceiro-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
  background: #131315;
  padding: 8rem 2rem;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.eco-card {
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--accent);
  transition: width 0.3s ease;
}
.eco-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.eco-card:hover::before {
  width: 100%;
  opacity: 0.05;
}
.eco-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.eco-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.eco-card li {
  font-size: 0.9rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.eco-card li::before {
  content: '•';
  color: var(--accent);
}
