/* PROCEDIMENTOS — premium */

.proc-hero{
  padding-bottom: 18px;
}
.proc-hero-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}
.proc-hero-cta{white-space:nowrap}

.proc-search{
  margin-top:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 16px 44px rgba(11,10,9,.05);
}
.proc-search-label{
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:10px;
}
.proc-search-row{
  display:flex;
  gap:10px;
}
.proc-search-row input{
  flex:1;
  height:44px;
}
.proc-search-hint{
  margin-top:8px;
  font-size:12px;
  color: rgba(11,10,9,.55);
}

.proc-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.proc-count{
  font-size:13px;
  color: rgba(11,10,9,.70);
}
.proc-count span{
  font-weight:900;
  color: var(--ink);
}

.group-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}

.group-card{
  background: rgba(255,255,255,.80);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 18px 52px rgba(11,10,9,.05);
}

.group-title{
  font-family:"Playfair Display", serif;
  font-weight:600;
  font-size:20px;
  margin-bottom:12px;
}

.proc-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Chip premium */
.proc-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.66);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  color: rgba(11,10,9,.86);
  transition: .18s ease;
  position:relative;
}

.chip-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--bronze), var(--champ));
  box-shadow: 0 10px 20px rgba(168,133,99,.18);
  flex:0 0 8px;
}

.chip-arrow{
  opacity:.65;
  transform: translateX(0);
  transition: .18s ease;
  font-weight:900;
}

.proc-chip:hover{
  border-color: rgba(168,133,99,.60);
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(11,10,9,.08);
}
.proc-chip:hover .chip-arrow{
  opacity:1;
  transform: translateX(2px);
}

/* Empty state */
.proc-empty{
  margin-top:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius:22px;
  padding:18px;
  box-shadow: 0 22px 60px rgba(11,10,9,.06);
  text-align:center;
}
.proc-empty-title{
  font-family:"Playfair Display", serif;
  font-weight:600;
  font-size:20px;
}
.proc-empty-text{
  margin-top:8px;
  color: rgba(11,10,9,.62);
  line-height:1.7;
  margin-bottom:14px;
}

/* Bottom CTA */
.proc-bottom-cta{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(168,133,99,.12), rgba(195,157,119,.10));
  border-radius:22px;
  padding:18px;
}
.proc-bottom-title{
  font-weight:900;
  letter-spacing:.2px;
}
.proc-bottom-text{
  color: rgba(11,10,9,.62);
  margin-top:6px;
  line-height:1.7;
}

/* Mobile */
@media (max-width: 920px){
  .proc-hero-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .proc-hero-cta{width:100%}
  .proc-search-row{flex-direction:column}
  .group-grid{grid-template-columns: 1fr}
  .proc-bottom-cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .proc-bottom-cta .btn{width:100%}
}
