/* ========== Servicios (3 columnas + iconitos) ========== */

.services.card, .hotel-desc.card{ padding:0; }
.services.card h2, .hotel-desc h2{
  padding:12px 16px;
  border-bottom:1px solid var(--border, #e5e7eb);
  color: var(--orange, #ff7f00);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  padding:16px;
}

.services-grid > div h4{
  margin:.2rem 0 .4rem;
  color:#1f2937;
  font-size:18px;
  display:flex; align-items:center; gap:8px;
}

/* Iconitos por columna (como en la referencia) */
.services-grid > div:nth-child(1) h4::before{ content:"ⓘ"; color:#0ea5e9; }
.services-grid > div:nth-child(2) h4::before{ content:"🔔"; color:#0ea5e9; }
.services-grid > div:nth-child(3) h4::before{ content:"🚿"; color:#0ea5e9; }
.services-grid > div:nth-child(4) h4::before{ content:"📶"; color:#0ea5e9; }
.services-grid > div:nth-child(5) h4::before{ content:"🅿️"; color:#0ea5e9; }

.services-grid ul{ margin:0; padding-left:18px; }
.services-grid li{ margin:.18rem 0; }

/* “Chip” azul estilo “¡Gratis! …” si querés resaltar algo en Internet */
.services-grid .chip{
  display:inline-block;
  background:#24a0ff;
  color:#fff;
  border-radius:8px;
  padding:8px 10px;
  font-weight:700;
  max-width:480px;
}
.services-grid .chip small{ display:block; font-weight:400; }
