/* ======= INFORMES ======= */
#informesSection{
  background:#f6f7fb;
  min-height:calc(100vh - 120px);
  padding-bottom:40px;
}

.inf-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 16px;
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.inf-header h1{
  margin:0;font-size:22px;font-weight:700;color:#111827;
}
.inf-menuWrap{position:relative;}
.inf-menuWrap .icon-btn{
  width:38px;height:38px;border-radius:12px;
  background:#f3f4f6;border:1px solid #e5e7eb;
}
.inf-menuWrap .icon-btn img{width:20px;height:20px;opacity:.8}
.inf-menu{
  position:absolute;right:0;top:44px;
  background:#fff;border-radius:12px;box-shadow:0 8px 22px rgba(0,0,0,.12);
  display:none;flex-direction:column;min-width:160px;z-index:30;
}
.inf-menu.show{display:flex}
.inf-menu button{
  padding:10px 14px;border:none;background:none;text-align:left;
  font-size:14px;color:#111827;cursor:pointer;
}
.inf-menu button:hover{background:#f3f4f6}

.inf-month-bar{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:10px 14px;background:#f6f7fb;
}
.inf-month-bar .month-arrow{
  width:32px;height:32px;border-radius:50%;border:none;
  background:#e5e7eb;cursor:pointer;font-size:16px;font-weight:700;
}
#inf-monthLabel{
  font-weight:700;font-size:15px;color:#111827;
  background:#fff;border-radius:999px;padding:8px 14px;
  border:1px solid #e5e7eb;
}

.inf-filter-toggle{
  display:flex;justify-content:flex-end;padding:0 14px 8px;
}
.inf-filter-btn{
  padding:8px 12px;border-radius:10px;border:1px solid #d1d5db;
  background:#fff;font-weight:700;color:#1f2937;cursor:pointer;
  box-shadow:0 3px 8px rgba(0,0,0,.08);
}
.inf-filter-area.hidden{display:none;}
.inf-filter-area{padding:0 14px 10px;}

.inf-range-bar{
  display:flex;justify-content:space-between;gap:10px;
  padding:8px 14px 12px;background:#f6f7fb;flex-wrap:wrap;align-items:flex-end;
}
.inf-range-bar .range-fields{display:flex;gap:8px;flex-wrap:wrap;}
.inf-range-bar label{
  display:flex;flex-direction:column;gap:6px;font-size:12px;color:#4b5563;font-weight:700;
}
.inf-range-bar input{
  padding:9px 10px;border-radius:10px;border:1px solid #d1d5db;
  background:#fff;min-width:140px;
}
.inf-range-bar .range-actions{display:flex;gap:8px;}
.inf-range-bar button{
  padding:10px 12px;border:none;border-radius:10px;font-weight:700;cursor:pointer;
  background:#1d4ed8;color:#fff;
}
.inf-range-bar .ghost{
  background:#eef2ff;color:#1f2937;
}

.inf-main{
  padding:0 14px 18px;
}

.inf-summary{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:10px;
}
.inf-card{
  background:#fff;border-radius:14px;padding:12px 14px;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}
.inf-card h2{
  margin:0 0 6px;font-size:13px;color:#6b7280;font-weight:700;text-transform:uppercase;
  letter-spacing:.4px;
}
.inf-card strong{
  display:block;font-size:18px;font-weight:800;color:#111827;margin-bottom:4px;
}
.inf-card p{
  margin:0;font-size:12px;color:#6b7280;
}
.inf-card-estados .inf-estado-pill{
  display:flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:10px;margin-bottom:6px;
  font-size:13px;font-weight:600;
}
.inf-estado-pill .dot{
  width:10px;height:10px;border-radius:50%;
  display:inline-block;
}
.inf-est-pend{background:#fff8e6;color:#b45309}
.inf-est-pend .dot{background:#f59e0b}
.inf-est-proc{background:#e5f0ff;color:#1d4ed8}
.inf-est-proc .dot{background:#3b82f6}
.inf-est-cerr{background:#e7f7ed;color:#15803d}
.inf-est-cerr .dot{background:#22c55e}

.inf-block{
  margin-top:18px;
}
.inf-week-block.hidden{display:none;}
.inf-block-head h2{
  margin:0 0 8px;font-size:14px;color:#1f2937;font-weight:800;
}
.inf-list{
  background:#fff;border-radius:12px;
  box-shadow:0 5px 12px rgba(0,0,0,.05);
  overflow:hidden;
}
.inf-empty{
  padding:14px;font-size:13px;color:#6b7280;
}
.inf-list ul{
  list-style:none;margin:0;padding:0;
}
.inf-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 14px;border-bottom:1px solid #f1f1f1;
}
.inf-row:last-child{border-bottom:none;}
.inf-row-left strong{display:block;font-size:14px;color:#111827}
.inf-row-left small{color:#6b7280;font-size:12px}
.inf-row-right{
  font-weight:800;color:#1d4ed8;font-size:14px;
}

@media (min-width:720px){
  .inf-main{padding:0 20px 24px;}
}
