:root{
  --brand:#2563eb;
  --brand-dark:#1d4ed8;
  --brand-soft:#eff6ff;
  --ink:#172033;
  --text:#334155;
  --muted:#64748b;
  --line:#e6eaf0;
  --surface:#ffffff;
  --bg:#f7f9fc;
  --success:#16a34a;
  --danger:#dc2626;
  --warning:#d97706;
  --radius:18px;
  --shadow:0 10px 30px rgba(15,23,42,.055);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:15px;
  line-height:1.55;
  font-weight:400;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
}

strong,b{
  font-weight:600;
  color:var(--ink);
}

h1,h2,h3,h4{
  color:var(--ink);
  font-weight:650;
  letter-spacing:-.025em;
  line-height:1.18;
}

h1{
  font-size:clamp(28px,4vw,44px);
  margin:0 0 12px;
}

h2{
  font-size:clamp(23px,3vw,32px);
  margin:0 0 10px;
}

h3{
  font-size:18px;
  margin:0 0 8px;
}

p{
  margin:0 0 12px;
}

.muted,.sub{
  color:var(--muted);
  font-weight:400;
}

.sub{
  font-size:16px;
  line-height:1.75;
}

.top{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.topin{
  max-width:1180px;
  margin:0 auto;
  padding:13px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink);
  font-size:18px;
  font-weight:650;
  letter-spacing:-.02em;
}

.brand img{
  height:36px;
  width:auto;
  object-fit:contain;
  border-radius:10px;
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  color:#475569;
  font-size:14px;
  font-weight:500;
}

.nav a:not(.btn):hover{
  color:var(--brand);
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:32px 18px;
}

.section{
  padding:46px 0;
}

.card,.mini-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card{
  padding:24px;
}

.mini-card{
  padding:20px;
}

.card:hover,.mini-card:hover{
  border-color:#d7deea;
}

.grid{
  display:grid;
  gap:18px;
}

.g2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.g3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.g4{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.title{
  font-size:clamp(32px,5vw,52px);
  line-height:1.04;
  letter-spacing:-.05em;
  font-weight:700;
  margin:0 0 16px;
}

.section-title{
  font-size:clamp(24px,3vw,34px);
  font-weight:650;
  text-align:center;
  margin:0 0 10px;
}

.center{
  text-align:center;
}

.badge,.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  padding:7px 11px;
  font-size:12px;
  line-height:1;
  font-weight:550;
  background:var(--brand-soft);
  color:#1d4ed8;
}

.pill.green{
  background:#ecfdf5;
  color:#047857;
}

.pill.red{
  background:#fef2f2;
  color:#b91c1c;
}

.pill.yellow{
  background:#fffbeb;
  color:#b45309;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid transparent;
  border-radius:13px;
  padding:10px 15px;
  min-height:42px;
  background:var(--brand);
  color:#fff;
  font-size:14px;
  font-weight:550;
  cursor:pointer;
  box-shadow:none;
  transition:.18s ease;
}

.btn:hover{
  background:var(--brand-dark);
  transform:translateY(-1px);
}

.btn.sec{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
}

.btn.sec:hover{
  background:#f8fafc;
  color:var(--ink);
}

.btn.green{
  background:var(--success);
  color:white;
}

.btn.red{
  background:var(--danger);
  color:white;
}

.kpi strong{
  display:block;
  font-size:26px;
  line-height:1.1;
  font-weight:650;
  color:var(--ink);
  margin-bottom:4px;
}

.kpi span{
  color:var(--muted);
  font-size:13px;
  font-weight:400;
}

label{
  display:block;
  margin:12px 0 6px;
  color:#475569;
  font-size:13px;
  font-weight:500;
}

input,textarea,select{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--text);
  padding:11px 12px;
  font-size:14px;
  outline:none;
  transition:.15s ease;
}

input:focus,textarea:focus,select:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 3px rgba(37,99,235,.10);
}

textarea{
  min-height:110px;
  resize:vertical;
}

.msg{
  padding:12px 14px;
  border:1px solid #bfdbfe;
  background:#eff6ff;
  color:#1e40af;
  border-radius:14px;
  font-size:14px;
  font-weight:500;
  margin-bottom:14px;
}

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
}

th,td{
  padding:11px 10px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
  font-size:14px;
}

th{
  color:#64748b;
  background:#f8fafc;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.035em;
  font-weight:600;
}

tr:last-child td{
  border-bottom:0;
}

.footer{
  background:#0f172a;
  color:#cbd5e1;
  margin-top:42px;
}

.footer .wrap{
  padding-top:42px;
  padding-bottom:26px;
}

.footer h3,.footer h4{
  color:#fff;
  font-weight:600;
}

.footer a{
  color:#dbeafe;
}

.footer-bottom{
  border-top:1px solid rgba(226,232,240,.16);
  margin-top:28px;
  padding-top:18px;
  color:#94a3b8;
  font-size:13px;
}

.filters{
  display:grid;
  grid-template-columns:1fr 180px 150px;
  gap:10px;
  margin-bottom:16px;
}

@media(max-width:960px){
  .g2,.g3,.g4,.filters{
    grid-template-columns:1fr;
  }

  .topin{
    align-items:flex-start;
    flex-direction:column;
  }

  .nav{
    gap:10px;
  }

  .wrap{
    padding:22px 14px;
  }

  .section{
    padding:32px 0;
  }

  .card{
    padding:18px;
  }
}


/* Ajustes para páginas com estilo de evento/ingresso */
.evento-clean-list .mini-card,
.evento-clean-list .card{
  border-radius:12px;
  box-shadow:none;
}

.evento-clean-list .mini-card{
  overflow:hidden;
}

.evento-clean-list h3{
  font-size:16px;
}

.evento-clean-list .btn{
  border-radius:8px;
}

.evento-clean-page h1,
.evento-clean-page h2,
.evento-clean-page h3{
  font-weight:600;
}

.evento-clean-page .card,
.evento-clean-page .mini-card{
  box-shadow:none;
  border-radius:12px;
}
