/* Panel más amplio para esta vista */
.panel{
  width: min(980px, 92vw);
  margin: 32px auto 64px;
  background:#fff;
  border-radius:22px;
  border:6px solid var(--bg-dark-2);
  box-shadow: var(--shadow-strong);
  padding: 22px 22px 26px;
}

/* Header REGRESAR */
.panel-head--back{
  justify-content: flex-start;
}
.btn-back{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* INDEX: dos cajas por fila */
.legal-grid{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:16px;
}

.legal-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.legal-box{
  display:flex;
  align-items:center;
  gap:12px;
  background:#f6fbff;
  border:1px solid #5b6069;
  border-radius:5px;
  padding: 5px;
  color:#0E2A59;
  text-decoration:none;
  font-weight:700;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.legal-box:hover{
  background:#eef4ff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.legal-box img{ 
  width:50px;
  height: auto;
  padding-right: 5px;
  border-right: 1px solid #0E2A59;
}

.legal-box.right{
  justify-content:flex-start;
}
/*
.legal-box.right .badge{
  width:34px; height:34px;
}*/

/* Fila informativa que ocupa toda la fila */
.legal-info{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  gap:10px;
  background:#eef4ff;
  border:1px solid #5b6069;
  padding:5px;
  border-radius:5px;
  font-weight:600;
  text-decoration: none;
  color:#0E2A59;
  font-weight: 700;
}
.legal-info img{ 
  width:50px; 
  height:auto; 
  padding-right:5px;
  border-right: 1px solid #0E2A59;
}

.legal-detail-info {
    padding: 14px;
    width: 90%;
}

.legal-detail-info ul {
    margin-left: 20px;
}
/* Responsive */
@media (max-width: 720px){
  .legal-row{ grid-template-columns: 1fr; }
}

/* DETALLE */
.legal-detail{ margin-top:14px; }

.selected-head{
  display:flex;
  align-items:center;
  gap:12px;
  background:#d7e6ff;
  border:2px solid #bcd0ff;
  border-radius:8px;
  padding:12px 16px;
}
.selected-head img{ width:34px; height:34px; }
.selected-head h2{
  margin:0;
  font-size:18px;
  color:#0E2A59;
  font-weight:800;
}

/* Contenedor grande (vacío por ahora) */
.legal-content{
  margin-top:12px;
  min-height:280px;
  background:#ffffff;
  border:2px solid #e1e9ff;
  border-radius:10px;
}

/* Barra inferior tipo botón */
.footer-bar{
  display:block;
  margin-top:14px;
  width:100%;
  text-align:center;
  background: var(--bg-dark-2);
  color:#fff;
  padding:12px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

/* “panel-head” reutilizado */
.panel-head{
  display:flex;
  align-items:center;
  gap:14px;
  background: var(--bg-dark-2);
  color:#fff;
  border-radius:16px;
  padding:14px 18px;
  box-shadow: var(--shadow-soft);
}