:root{
  --bg:#0b0d10;
  --card:#12161b;
  --card2:#0f1317;
  --text:#eef2f6;
  --muted:#aab4bf;
  --border:#232a33;
  --accent:#d6b25e; /* oro */
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 0%, #141a22, var(--bg));
  color:var(--text);
}

.app{max-width:1050px; margin:0 auto; padding:18px}
.header{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
}

.brand{display:flex; align-items:center; gap:14px; margin-bottom:12px}
.badge{
  width:44px; height:44px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(214,178,94,.12);
  border:1px solid rgba(214,178,94,.35);
  color:var(--accent);
  font-weight:800;
  letter-spacing:.5px;
}
.titles h1{margin:0; font-size:20px}
.titles p{margin:2px 0 0; color:var(--muted); font-size:12px}

.tabs{display:flex; flex-wrap:wrap; gap:8px}
.tab{
  border:1px solid var(--border);
  background:var(--card2);
  color:var(--text);
  padding:9px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  font-size:13px;
}
.tab.active{
  border-color: rgba(214,178,94,.55);
  box-shadow: 0 0 0 2px rgba(214,178,94,.12) inset;
}

.main{margin-top:14px}
.panel{animation:fade .18s ease-out}
.hidden{display:none}

.panelHead{
  display:flex; gap:12px; align-items:baseline; justify-content:space-between;
  margin:10px 2px 8px;
}
.panelHead h2{margin:0; font-size:16px}
.meta{color:var(--muted); font-size:12px; text-align:right}

.card{
  background: rgba(18,22,27,.92);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
}

.table{width:100%; border-collapse:collapse; overflow:hidden}
.table th,.table td{
  border-bottom:1px solid var(--border);
  padding:10px 8px;
  text-align:left;
  font-size:13px;
}
.table th{color:#d9e2ec; font-weight:700}
.table tr:last-child td{border-bottom:none}
.table td.muted{color:var(--muted)}
.table td.center{text-align:center}

.note{
  margin:10px 2px 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
}

.teamGrid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:10px;
  margin-top:10px;
}
.teamCard{
  background: rgba(255,255,255,.02);
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
}
.teamCard h3{
  margin:0 0 8px;
  font-size:14px;
  color:var(--accent);
}
.teamCard ul{margin:0; padding-left:18px; color:var(--text)}
.teamCard li{margin:4px 0; color:var(--muted)}

.pdfPlaceholder{
  border:1px dashed rgba(214,178,94,.45);
  border-radius:14px;
  padding:14px;
  background: rgba(214,178,94,.06);
  color:var(--text);
}

.footer{
  margin-top:14px;
  color:var(--muted);
  font-size:11px;
  text-align:center;
}

@keyframes fade{
  from{opacity:.65; transform: translateY(2px)}
  to{opacity:1; transform: translateY(0)}
}
.pdfWrap{
  width:100%;
  height:75vh;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  background:#000;
}
.pdfWrap iframe{
  width:100%;
  height:100%;
  border:0;
}