/* casos styles — extracted from tecnocys-v3.html */
/* See tecnocys-v3.html for full CSS reference */
/* ═══════════════════════════════
   Casos section
═══════════════════════════════ */
#casos { background: var(--bg); }
.casos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}
.caso {
  background: var(--bg2); border: 1px solid var(--bdr2);
  border-radius: var(--r); padding: 1.8rem;
  transition: all .3s; display: flex; flex-direction: column; gap: .7rem;
}
.caso:hover {
  border-color: rgba(0,200,255,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.caso-sector {
  display: inline-block; font-family: var(--fm); font-size: .62rem;
  color: var(--c); letter-spacing: .1em; text-transform: uppercase;
  background: rgba(0,200,255,.07); border: 1px solid rgba(0,200,255,.14);
  border-radius: 4px; padding: .18rem .6rem; width: fit-content;
}
.caso h3 { font-family: var(--fh); font-size: 1.15rem; font-weight: 700; line-height: 1.2; }
.caso p  { font-size: .84rem; color: var(--mu); line-height: 1.75; }
.caso-res {
  padding: .65rem .9rem; border-left: 2px solid var(--c);
  background: rgba(0,200,255,.04); border-radius: 0 6px 6px 0;
  font-size: .8rem; color: var(--mu); margin-top: .2rem;
}
.caso-res strong { color: var(--txt); }
@media(max-width:768px) { .casos-grid { grid-template-columns: 1fr; } }
