.ude-tarifas .tarifa-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ude-tarifas .tarifa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.ude-tarifas .tarifa-header {
  background: #f9fafb;
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.ude-tarifas .tarifa-titulo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff7b00; /* naranja */
  margin-bottom: .25rem;
}

.ude-tarifas .tarifa-precio {
  font-size: 1.6rem;
  font-weight: 700;
  color: #16a34a; /* verde */
}

.ude-tarifas .tarifa-body {
  flex: 1;
  padding: 1rem;
  font-size: .95rem;
  line-height: 1.5;
}
