/* ==========================
   Servicios - Bomberos Tulcán
   ========================== */
.servicios-lista .servicio-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(200,16,46,0.08);
  padding-bottom: 1.5rem;
}
.servicios-lista .servicio-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(200,16,46,0.12);
}
.servicio-icono {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.bg-rojo {
  background: var(--rojo-bomberos, #c8102e);
}
.bg-amarillo {
  background: #ffc107;
  color: #222;
}
.bg-gris {
  background: #6c757d;
}
.servicio-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro-bomberos, #111);
}
.servicio-card .card-text {
  font-size: 1rem;
  color: #333;
}
@media (max-width: 767px) {
  .servicio-icono {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}
